body {
    margin:0;
    background:#0b0f1a url('../images/background.jpeg') center center / cover fixed no-repeat;
    color:#000000; /* yellowish-white */
    font-family:'Segoe UI', sans-serif;
}

/* Background Canvas */
#bgCanvas {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-2;
    opacity:0;
}

/* Hero */
.hero {
    padding:60px;
    text-align:center;
    background:rgba(11,15,26,0.38);
    border-radius:0 0 24px 24px;
}

/* Polymer Banner */
.polymer-banner {
    margin: 20px auto;
    padding: 25px;
    width: 80%;
    text-align: center;
    border-radius: 15px;
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(0,255,255,0.3);
    box-shadow: 0 0 20px rgba(0,255,255,0.2);
}

.polymer-banner h2 {
    color:#000000;
    margin-bottom:10px;
}

.polymer-banner p {
    color:#000000;
}

/* Grid Layout */
.menu-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    padding:40px;
}

/* Cards */
.card {
    background:rgba(31,41,55,0.78);
    border-radius:20px;
    padding:25px;
    cursor:pointer;
    transition:0.3s;
    text-align:center;
    color:#000000;
}

.card h3,
.card h5 {
    color:#000000;
}

.card:hover {
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 0 25px rgba(0,255,255,.3);
}

/* Highlight cards */
.highlight {
    border:1px solid rgba(0,255,255,0.3);
    background:rgba(15,23,42,0.82);
}

/* Footer */
.footer {
    text-align:center;
    padding:20px;
    opacity:.6;
}

/* Loader */
#loader {
    position:fixed;
    width:100%;
    height:100%;
    background:#0b0f1a url('../images/background.jpeg') center center / cover fixed no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#000000;
    z-index:9999;
    font-size:22px;
}

/* Module Pages */
body.p-5 {
    max-width:900px;
    margin:auto;
}

body.p-5 h1 {
    color:#000000;
    margin-bottom:20px;
}

body.p-5 p {
    color:#000000;
    line-height:1.6;
}

body.p-5 li {
    color:#000000;
    margin-bottom:8px;
}

/* Links */
a {
    color:#000000;
    text-decoration:none;
}

a:hover {
    text-decoration:underline;
}

/* Force all visible text to black without changing tab layout/content */
body, h1, h2, h3, h4, h5, h6, p, li, a, .card, .card h3, .card h5, .polymer-banner h2, .polymer-banner p, .footer, #loader {
    color:#000000 !important;
}
