/* ═══════════════════════════════════════════════
   PROJECT ZENITH — Premium Design System v2.0
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Core Palette */
    --gold-100: #FFF8E1;
    --gold-200: #FFE082;
    --gold-300: #FFD54F;
    --gold-400: #FFCA28;
    --gold-500: #FFD700;
    --gold-600: #FFC107;
    --gold-700: #D4A017;
    --gold-800: #B8860B;

    /* Surfaces */
    --bg-deepest: #0a0a0f;
    --bg-deep: #0e0e16;
    --bg-card: rgba(15, 15, 25, 0.65);
    --bg-card-hover: rgba(20, 20, 35, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-border: rgba(255, 215, 0, 0.08);

    /* Text */
    --text-primary: #f0ece4;
    --text-secondary: #a8a2a2;
    --text-muted: #6b6565;

    /* Accents */
    --primary-color: #FFD700;
    --accent-glow: rgba(255, 215, 0, 0.25);
    --accent-glow-strong: rgba(255, 215, 0, 0.5);
    --discord-color: #5865F2;
    --discord-glow: rgba(88, 101, 242, 0.35);
    --danger: #ff453a;

    /* Spacing */
    --section-gap: 80px;
    --card-radius: 20px;
    --card-padding: 40px;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: 0.4s var(--ease-out-expo);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-deepest);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Background ─── */
.background-overlay {
    position: fixed;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(88, 101, 242, 0.03) 0%, transparent 50%),
        linear-gradient(
            to bottom,
            rgba(10, 10, 15, 0.45),
            rgba(10, 10, 15, 0.65) 40%,
            rgba(10, 10, 15, 0.9)
        ),
        url('./assets/zenith_bg.png');
    background-size: cover, cover, cover, cover;
    background-position: center;
    z-index: -1;
}

/* Floating ambient particles */
.background-overlay::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 10% 20%, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(2px 2px at 30% 50%, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(2px 2px at 60% 30%, rgba(255, 215, 0, 0.15), transparent),
        radial-gradient(2px 2px at 80% 70%, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(2px 2px at 50% 80%, rgba(255, 215, 0, 0.15), transparent),
        radial-gradient(2px 2px at 90% 10%, rgba(255, 215, 0, 0.25), transparent),
        radial-gradient(1.5px 1.5px at 15% 75%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1.5px 1.5px at 70% 45%, rgba(255, 255, 255, 0.1), transparent);
    animation: particleDrift 25s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes particleDrift {
    0% { transform: translateY(0) translateX(0); opacity: 1; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 0.7; }
    100% { transform: translateY(-40px) translateX(-10px); opacity: 1; }
}

/* ─── Typography ─── */
h1, h2, h3, .logo {
    font-family: 'Cinzel', serif;
    color: var(--gold-500);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-smooth);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deepest);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold-700), var(--gold-800));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-500);
}

/* ═══════════════════════════════════════════════
   HEADER & NAV
   ═══════════════════════════════════════════════ */
header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 24px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.6), transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.logo-img {
    height: 55px;
    width: auto;
    transition: all 0.4s var(--ease-spring);
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.logo-img:hover {
    transform: scale(1.12) rotate(3deg);
    filter: brightness(1.3) drop-shadow(0 0 16px rgba(255, 215, 0, 0.6));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-700));
    transition: width 0.3s var(--ease-out-expo);
}

nav a:hover {
    color: var(--gold-400);
    text-shadow: 0 0 12px var(--accent-glow);
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    border: 1px solid var(--gold-700);
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--gold-500);
    background: rgba(255, 215, 0, 0.05);
    transition: all var(--transition-smooth);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
    color: var(--bg-deepest);
    border-color: var(--gold-500);
    box-shadow: 0 4px 20px var(--accent-glow);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-200), var(--gold-500), var(--gold-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Glow layer behind the text */
.hero h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--gold-500);
    filter: blur(30px);
    opacity: 0.4;
    animation: heroShimmer 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

@keyframes heroShimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-stats {
    font-size: 1.15rem;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #5865F2, #4752c4);
    color: white;
    padding: 16px 44px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 6px 25px var(--discord-glow);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px var(--discord-glow), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #6b76f7, #5865F2);
}

.discord-btn:active {
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════ */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

/* ─── Glass Sections ─── */
.glass-section {
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--card-radius);
    padding: 60px var(--card-padding);
    margin-bottom: var(--section-gap);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

/* Top glow accent line */
.glass-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    opacity: 0.5;
}

h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 50px;
    position: relative;
    display: block;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-700), var(--gold-400), var(--gold-700));
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ─── Grid Container ─── */
.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* ─── Cards ─── */
.card {
    background: var(--bg-glass);
    padding: 35px 30px;
    border-radius: var(--card-radius);
    text-align: center;
    transition: all 0.5s var(--ease-spring);
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    flex: 1 1 280px;
    max-width: 420px;
}

/* Animated gradient border on hover */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--card-radius);
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 215, 0, 0.15);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.08);
}

.card:hover::before {
    opacity: 1;
}

.card:hover::after {
    opacity: 1;
}

.card i {
    font-size: 3rem;
    color: var(--gold-500);
    margin-bottom: 22px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
    transition: all 0.4s var(--ease-spring);
}

.card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.6));
}

.card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   ALLIANCE CARDS
   ═══════════════════════════════════════════════ */
.alliance-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(12, 12, 20, 0.7);
    justify-content: space-between;
}

.alliance-card h3 {
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding-bottom: 20px;
    margin-bottom: 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.15);
}

.leader-info,
.plan-info {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    flex-grow: 1;
}

.leader-info h4,
.plan-info h4 {
    color: var(--gold-400);
    margin-bottom: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
}

.leader-info h4::before,
.plan-info h4::before {
    content: '◆';
    font-size: 0.6rem;
    color: var(--gold-500);
}

.small-btn {
    text-align: center;
    margin-top: auto;
    display: block;
    width: 100%;
    align-self: center;
    background: rgba(255, 215, 0, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--gold-500);
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all var(--transition-smooth);
}

.small-btn:hover {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
    color: var(--bg-deepest);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* ═══════════════════════════════════════════════
   LIST SECTION
   ═══════════════════════════════════════════════ */
.list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    background: var(--bg-glass);
    padding: 35px 25px;
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s var(--ease-spring);
}

.list-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.03);
    border-color: rgba(255, 215, 0, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.list-item i {
    font-size: 2.8rem;
    color: var(--gold-500);
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.25));
    transition: all 0.3s ease;
}

.list-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.5));
}

.list-item h3 {
    font-size: 1.15rem;
    letter-spacing: 1px;
}

.list-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════ */
.contact-section {
    text-align: center;
}

.discord-link {
    font-size: 1.5rem;
    color: var(--discord-color);
    display: inline-block;
    margin-bottom: 30px;
}

.contacts-list ul {
    list-style: none;
    margin-top: 20px;
}

.contacts-list li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.discord-link-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
}

/* Discord DM Buttons */
.discord-dm-btn {
    background: rgba(88, 101, 242, 0.08) !important;
    border: 1px solid rgba(88, 101, 242, 0.3) !important;
    color: #fff !important;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    transition: all var(--transition-smooth);
    font-weight: 500;
}

.discord-dm-btn:hover {
    background: rgba(88, 101, 242, 0.2) !important;
    border-color: var(--discord-color) !important;
    box-shadow: 0 4px 20px var(--discord-glow);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95), rgba(10, 10, 15, 0.7));
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 215, 0, 0.06);
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.small-text {
    font-size: 0.75rem;
    opacity: 0.4;
    margin-top: 10px;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s var(--ease-out-expo) forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s var(--ease-out-expo);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   HERO BUTTONS
   ═══════════════════════════════════════════════ */
.cta-button.big {
    display: inline-block;
    padding: 16px 44px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-500);
    background: rgba(255, 215, 0, 0.04);
    border: 1.5px solid var(--gold-700);
    border-radius: 50px;
    margin-right: 20px;
    transition: all var(--transition-smooth);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.cta-button.big:hover {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
    color: var(--bg-deepest);
    box-shadow: 0 6px 30px var(--accent-glow);
    transform: translateY(-2px);
    border-color: var(--gold-500);
}

/* ═══════════════════════════════════════════════
   KINGDOM LEADERSHIP
   ═══════════════════════════════════════════════ */
.kingdom-card {
    background: rgba(10, 10, 18, 0.85);
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    align-items: flex-start;
}

.kingdom-card h3 {
    width: 100%;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.kingdom-card h3 i {
    font-size: 1.8rem;
    color: var(--gold-500);
    margin-bottom: 0;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.leadership-list-item {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.04) 0%, transparent 100%);
    border-left: 3px solid var(--gold-700);
    padding: 20px;
    margin-bottom: 12px;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.leadership-list-item:hover {
    transform: translateX(8px);
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    border-left-color: var(--gold-500);
}

.leadership-role {
    color: var(--gold-400);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 4px;
    font-family: 'Cinzel', serif;
}

.leadership-names {
    color: var(--text-primary);
    font-size: 1.05rem;
}

.kings-special {
    text-align: center;
    padding: 40px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--card-radius);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.08);
}

.kings-names {
    font-size: 1.8rem;
    font-family: 'Cinzel', serif;
    color: var(--gold-400);
    margin-bottom: 15px;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

/* ═══════════════════════════════════════════════
   CUSTOM DISCORD WIDGET
   ═══════════════════════════════════════════════ */
.custom-discord-widget {
    background: linear-gradient(145deg, rgba(15, 15, 25, 0.9), rgba(10, 10, 18, 0.95));
    border: 1px solid rgba(88, 101, 242, 0.3);
    padding: 0;
    max-width: 350px;
    margin: 30px auto;
    border-radius: var(--card-radius);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.custom-discord-widget:hover {
    border-color: rgba(88, 101, 242, 0.6);
    box-shadow: 0 15px 50px rgba(88, 101, 242, 0.15);
}

.cdw-header {
    background: #5865F2;
    color: #fff;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cdw-logo {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
}

.cdw-content {
    padding: 25px 20px;
}

.cdw-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: #23a559;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #23a559;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(35, 165, 89, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(35, 165, 89, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(35, 165, 89, 0); }
}
/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE OVERRIDE
   ═══════════════════════════════════════════════ */

/* Desktop defaults overriden by mobile */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    /* ─── Typography & Spacing ─── */
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 50px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 8vw, 3rem) !important;
        letter-spacing: 3px !important;
        line-height: 1.2;
        margin-bottom: 20px !important;
    }

    .subtitle {
        font-size: 1rem !important;
        padding: 0 15px;
        margin-bottom: 25px !important;
    }

    .hero-stats {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }

    h2 {
        font-size: 1.8rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 35px !important;
    }

    /* ─── Navigation & Hamburger ─── */
    nav {
        padding: 15px 20px !important;
        position: fixed !important;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        background: rgba(10, 10, 15, 0.85) !important;
        border-bottom: 1px solid rgba(255, 215, 0, 0.05) !important;
        width: 100%;
        top: 0;
        z-index: 999;
    }

    .logo-img {
        height: 40px !important;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 22px;
        cursor: pointer;
        z-index: 1000;
    }

    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
        border-radius: 3px;
        transition: all 0.4s var(--ease-spring);
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    }

    /* Hamburger Animation Flow */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
        background: var(--danger);
        box-shadow: 0 0 8px rgba(255, 69, 58, 0.5);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
        background: var(--danger);
        box-shadow: 0 0 8px rgba(255, 69, 58, 0.5);
    }

    /* Responsive Menu State */
    nav ul {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s var(--ease-out-expo);
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        gap: 0 !important;
    }

    nav ul.active {
        max-height: 400px;
        padding: 20px 0 30px;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
    }

    nav ul.active li {
        opacity: 1;
        transform: translateY(0);
    }

    nav ul.active li:nth-child(1) { transition-delay: 0.1s; }
    nav ul.active li:nth-child(2) { transition-delay: 0.15s; }
    nav ul.active li:nth-child(3) { transition-delay: 0.2s; }
    nav ul.active li:nth-child(4) { transition-delay: 0.25s; }

    nav a {
        display: block;
        padding: 16px 20px !important;
        font-size: 1.15rem !important;
        letter-spacing: 2px;
    }
    
    nav ul li a.cta-button {
        display: inline-block;
        padding: 10px 30px !important;
        margin-top: 10px;
        width: auto !important;
    }

    /* ─── Layout Formatting ─── */
    main {
        padding: 40px 15px !important;
    }

    .glass-section {
        padding: 30px 15px !important;
        border-radius: 12px !important;
        margin-bottom: 40px !important;
    }

    .grid-container {
        gap: 15px !important;
    }

    .card {
        padding: 25px 15px !important;
        border-radius: 12px !important;
        max-width: 100%;
    }

    .card i {
        font-size: 2.2rem !important;
        margin-bottom: 12px !important;
    }

    .card h3 {
        font-size: 1.1rem !important;
    }

    .card p {
        font-size: 0.9rem !important;
    }

    .list-item {
        padding: 20px 15px !important;
        flex-direction: column;
        text-align: center;
    }
    
    .list-item i {
        font-size: 2rem !important;
    }

    /* ─── Action Elements ─── */
    .discord-btn, .cta-button.big {
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        width: 100%;
        margin: 8px 0 !important;
        display: flex !important;
        justify-content: center;
        box-sizing: border-box;
    }

    .contact-links {
        display: flex;
        flex-direction: column;
        padding: 0 10px;
    }

    .discord-dm-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    /* Typography Overrides for info pages etc */
    p {
        font-size: 0.95rem;
    }
    
    .info-nav-card {
        width: 100%;
        margin-bottom: 15px;
    }
}