/* ==========
   Global
   ========== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top, #1b1633 0%, #050510 55%, #020208 100%);
    color: #e4e4ff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
}

/* Let links inherit our neon style */
a {
    color: inherit;
}

/* ==========
   Navbar
   ========== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 7vw;
    background: rgba(5, 5, 20, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(159, 107, 255, 0.25);
    box-shadow: 0 0 25px rgba(159, 107, 255, 0.2);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #bf9dff;
    text-shadow: 0 0 12px rgba(191, 157, 255, 0.9);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.98rem;
    padding: 6px 10px;
    border-radius: 999px;
    transition: 0.2s ease;
    color: #d7d7ff;
    opacity: 0.9;
}

.nav-links a:hover {
    background: rgba(159, 107, 255, 0.18);
    box-shadow: 0 0 12px rgba(159, 107, 255, 0.6);
    opacity: 1;
}

/* Active link (optional: add class="active" on current page link) */
.nav-links a.active {
    background: rgba(159, 107, 255, 0.35);
    box-shadow: 0 0 18px rgba(159, 107, 255, 0.9);
}

/* ==========
   Hero section (Home page)
   ========== */

.hero {
    padding: 120px 10vw 80px;
    text-align: center;
}

.hero h2 {
    font-size: clamp(2.3rem, 4vw, 3rem);
    margin-bottom: 12px;
    color: #e9ddff;
    text-shadow: 0 0 18px rgba(172, 134, 255, 0.8);
}

.hero p {
    font-size: 1.05rem;
    color: #b7b7ff;
    max-width: 480px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.cta {
    display: inline-block;
    margin-top: 8px;
    padding: 11px 26px;
    background: linear-gradient(135deg, #7b44ff, #ff4fd4);
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(123, 68, 255, 0.8);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 26px rgba(191, 100, 255, 0.95);
    filter: brightness(1.05);
}

/* ==========
   Generic content layout (Staff, Roles, Community)
   ========== */

.content {
    padding: 60px 10vw 50px;
}

.content h2 {
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    margin-bottom: 10px;
    color: #e9ddff;
}

.content > p {
    color: #b9b9ff;
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 26px;
}

/* ==========
   Card grid (Staff page)
   ========== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 22px;
}

.card {
    background: radial-gradient(circle at top, #241d45 0%, #0e0c1e 55%, #070711 100%);
    border-radius: 18px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(159, 107, 255, 0.35);
    box-shadow: 0 0 20px rgba(12, 7, 32, 0.9);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 26px rgba(159, 107, 255, 0.7);
    border-color: rgba(255, 160, 255, 0.6);
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #f1e3ff;
}

.card p {
    color: #c2c2ff;
    font-size: 0.96rem;
}

/* ==========
   Roles list (Roles page)
   ========== */

.roles-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.roles-list li {
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(26, 20, 50, 0.9);
    border: 1px solid rgba(116, 87, 206, 0.6);
    box-shadow: 0 0 10px rgba(22, 15, 58, 0.9);
    font-size: 0.98rem;
}

.roles-list strong {
    color: #f3e4ff;
}

/* ==========
   Community page lists
   ========== */

.content h3 {
    font-size: 1.25rem;
    margin: 25px 0 8px;
    color: #f0e0ff;
}

.content ul {
    list-style: disc;
    padding-left: 1.3rem;
}

.content ul li {
    margin-bottom: 6px;
    color: #c4c4ff;
    line-height: 1.6;
}

/* ==========
   Footer (optional – add <footer class="footer">…</footer>)
   ========== */

.footer {
    margin-top: 40px;
    padding: 18px 10vw 24px;
    border-top: 1px solid rgba(70, 60, 130, 0.7);
    font-size: 0.85rem;
    color: #9696d9;
    text-align: center;
    background: #050515;
}

/* ==========
   Responsive tweaks
   ========== */

@media (max-width: 768px) {
    .navbar {
        padding: 12px 5vw;
    }

    .nav-links {
        gap: 0.6rem;
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .content {
        padding: 40px 7vw 40px;
    }

    .hero {
        padding: 90px 7vw 60px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        justify-content: center;
    }

    .hero h2 {
        font-size: 2rem;
    }
}

.card {
    position: relative;
    text-align: left;       /* or center if you prefer */
    padding: 1.5rem;
    border-radius: 18px;
}