/* ==========================================
   NEXUS - Hytale Server Website
   Premium Fantasy Gaming Aesthetic
   ========================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --navy-darkest: #0a0e1a;
    --navy-dark: #0f1628;
    --navy-base: #151d32;
    --navy-light: #1e2844;
    --navy-lighter: #2a3654;
    
    /* Accent Colors */
    --gold-dark: #a67c00;
    --gold-base: #d4a012;
    --gold-light: #f5c542;
    --gold-glow: rgba(212, 160, 18, 0.4);
    
    --teal-dark: #0d7377;
    --teal-base: #14a3a8;
    --teal-light: #3fd4d9;
    --teal-glow: rgba(63, 212, 217, 0.4);
    
    --purple-dark: #5c3d8e;
    --purple-base: #8b5cf6;
    --purple-light: #a78bfa;
    --purple-glow: rgba(139, 92, 246, 0.4);
    
    /* Neutral Colors */
    --white: #ffffff;
    --white-soft: #f0f2f8;
    --gray-100: #e5e7eb;
    --gray-200: #d1d5db;
    --gray-300: #9ca3af;
    --gray-400: #6b7280;
    --gray-500: #4b5563;
    
    /* Status Colors */
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    
    /* Social Colors */
    --discord: #5865F2;
    --youtube: #FF0000;
    --twitter: #000000;
    --tiktok: #00f2ea;
    --instagram: #E4405F;
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Exo 2', sans-serif;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 120px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow-gold: 0 0 30px var(--gold-glow);
    --shadow-glow-teal: 0 0 30px var(--teal-glow);
    --shadow-glow-purple: 0 0 30px var(--purple-glow);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white-soft);
    background-color: var(--navy-darkest);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Particle Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Selection */
::selection {
    background: var(--teal-base);
    color: var(--navy-darkest);
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: linear-gradient(to bottom, rgba(10, 14, 26, 0.95), rgba(10, 14, 26, 0.8));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 160, 18, 0.1);
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 14, 26, 0.98);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition-base);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--teal-glow));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 10px 18px;
    color: var(--gray-200);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: var(--transition-base);
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gold-base);
    transition: var(--transition-base);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-links a.nav-discord {
    background: var(--discord);
    color: var(--white);
    margin-left: 8px;
}

.nav-links a.nav-discord::before {
    display: none;
}

.nav-links a.nav-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.nav-discord-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) saturate(1.1);
    transform: scale(1.05);
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        /* Mysterious central glow */
        radial-gradient(ellipse 60% 40% at 50% 35%, rgba(139, 92, 246, 0.2), transparent 50%),
        /* Teal adventure accent bottom */
        radial-gradient(ellipse 80% 50% at 30% 100%, rgba(63, 212, 217, 0.12), transparent 40%),
        /* Golden warmth top corners */
        radial-gradient(ellipse 40% 40% at 0% 0%, rgba(212, 160, 18, 0.08), transparent 50%),
        radial-gradient(ellipse 40% 40% at 100% 0%, rgba(212, 160, 18, 0.06), transparent 50%),
        /* Purple mystical corners */
        radial-gradient(ellipse 50% 50% at 100% 100%, rgba(139, 92, 246, 0.1), transparent 50%),
        radial-gradient(ellipse 50% 50% at 0% 100%, rgba(63, 212, 217, 0.08), transparent 50%),
        /* Vignette for mystery */
        radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(10, 14, 26, 0.5) 100%),
        /* Base gradient for readability */
        linear-gradient(to bottom, 
            rgba(10, 14, 26, 0.6) 0%,
            rgba(10, 14, 26, 0.3) 25%,
            rgba(10, 14, 26, 0.35) 60%,
            rgba(10, 14, 26, 0.98) 100%
        );
}

/* Magical Floating Elements Container */
.hero-magic-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Glowing Orbs */
.magic-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.7;
}

.orb-1 {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--teal-light), var(--teal-base));
    box-shadow: 0 0 20px var(--teal-light), 0 0 40px var(--teal-base);
    top: 20%;
    left: 15%;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-2 {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, var(--purple-light), var(--purple-base));
    box-shadow: 0 0 15px var(--purple-light), 0 0 30px var(--purple-base);
    top: 35%;
    right: 20%;
    animation: floatOrb 10s ease-in-out infinite 2s;
}

.orb-3 {
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, var(--gold-light), var(--gold-base));
    box-shadow: 0 0 15px var(--gold-light), 0 0 25px var(--gold-base);
    bottom: 30%;
    left: 25%;
    animation: floatOrb 7s ease-in-out infinite 1s;
}

/* Magic Crystals */
.magic-crystal {
    position: absolute;
    width: 4px;
    height: 16px;
    background: linear-gradient(to bottom, rgba(63, 212, 217, 0.8), rgba(63, 212, 217, 0.2));
    clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
    opacity: 0.6;
}

.crystal-1 {
    top: 25%;
    right: 12%;
    transform: rotate(15deg);
    animation: crystalGlow 4s ease-in-out infinite;
}

.crystal-2 {
    bottom: 35%;
    left: 10%;
    transform: rotate(-10deg);
    animation: crystalGlow 5s ease-in-out infinite 1.5s;
}

/* Fireflies / Sparkles */
.firefly {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--gold-light), 0 0 12px var(--gold-base);
}

.firefly-1 {
    top: 15%;
    left: 30%;
    animation: fireflyFloat 12s ease-in-out infinite, fireflyGlow 3s ease-in-out infinite;
}

.firefly-2 {
    top: 45%;
    right: 25%;
    animation: fireflyFloat 15s ease-in-out infinite 2s, fireflyGlow 4s ease-in-out infinite 1s;
}

.firefly-3 {
    bottom: 40%;
    left: 40%;
    animation: fireflyFloat 10s ease-in-out infinite 4s, fireflyGlow 3.5s ease-in-out infinite 0.5s;
}

.firefly-4 {
    top: 30%;
    left: 60%;
    animation: fireflyFloat 14s ease-in-out infinite 1s, fireflyGlow 2.5s ease-in-out infinite 2s;
}

.firefly-5 {
    bottom: 25%;
    right: 35%;
    animation: fireflyFloat 11s ease-in-out infinite 3s, fireflyGlow 4s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translate(15px, -20px) scale(1.1);
        opacity: 0.9;
    }
    50% {
        transform: translate(-10px, -30px) scale(0.9);
        opacity: 0.6;
    }
    75% {
        transform: translate(20px, -15px) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes crystalGlow {
    0%, 100% {
        opacity: 0.4;
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.3);
    }
}

@keyframes fireflyFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    20% {
        transform: translate(30px, -40px);
    }
    40% {
        transform: translate(-20px, -60px);
    }
    60% {
        transform: translate(40px, -30px);
    }
    80% {
        transform: translate(-30px, -50px);
    }
}

@keyframes fireflyGlow {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 4px var(--gold-light), 0 0 8px var(--gold-base);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 10px var(--gold-light), 0 0 20px var(--gold-base);
    }
}

/* Floating Runes */
.floating-rune {
    position: absolute;
    font-size: 24px;
    color: rgba(139, 92, 246, 0.4);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    animation: runeFloat 15s ease-in-out infinite;
}

.rune-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.rune-2 {
    top: 25%;
    right: 10%;
    animation-delay: 3s;
    color: rgba(63, 212, 217, 0.4);
    text-shadow: 0 0 20px rgba(63, 212, 217, 0.6);
}

.rune-3 {
    bottom: 30%;
    left: 12%;
    animation-delay: 6s;
    color: rgba(212, 160, 18, 0.3);
    text-shadow: 0 0 20px rgba(212, 160, 18, 0.5);
}

.rune-4 {
    bottom: 25%;
    right: 8%;
    animation-delay: 9s;
}

@keyframes runeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-25px) rotate(3deg);
        opacity: 0.6;
    }
}

/* Mysterious Mist */
.mist {
    position: absolute;
    width: 100%;
    height: 200px;
    pointer-events: none;
    opacity: 0.4;
}

.mist-1 {
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, 
        rgba(10, 14, 26, 0.9) 0%,
        rgba(63, 212, 217, 0.05) 30%,
        transparent 100%
    );
    animation: mistDrift 20s ease-in-out infinite;
}

.mist-2 {
    bottom: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(10, 14, 26, 0.8) 0%,
        rgba(139, 92, 246, 0.03) 40%,
        transparent 100%
    );
    animation: mistDrift 25s ease-in-out infinite reverse;
}

@keyframes mistDrift {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(30px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: heroEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroEnter {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mysterious Rune Circle */
.rune-circle {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    pointer-events: none;
    z-index: 1;
}

.rune-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.ring-outer {
    inset: 0;
    border-color: rgba(139, 92, 246, 0.15);
    animation: runeRotate 60s linear infinite;
}

.ring-outer::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px dashed rgba(63, 212, 217, 0.2);
}

.ring-outer::after {
    content: '✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 25px;
    color: rgba(212, 160, 18, 0.25);
    animation: runeRotate 90s linear infinite reverse;
}

.ring-inner {
    inset: 60px;
    border-color: rgba(63, 212, 217, 0.1);
    animation: runeRotate 45s linear infinite reverse;
}

.ring-inner::before {
    content: '';
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.rune-symbols {
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 100% 50%, rgba(63, 212, 217, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 50% 100%, rgba(212, 160, 18, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 0% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 20%);
    animation: runeGlow 4s ease-in-out infinite;
}

@keyframes runeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes runeGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: linear-gradient(135deg, rgba(212, 160, 18, 0.12), rgba(255, 170, 80, 0.08));
    border: 1px solid rgba(212, 160, 18, 0.25);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 20px;
    box-shadow: 
        0 2px 20px rgba(212, 160, 18, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    order: 2;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-base));
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-base);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--gold-base);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 20px var(--gold-light);
    }
}

.hero-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: 
        drop-shadow(0 0 30px rgba(139, 92, 246, 0.5))
        drop-shadow(0 0 60px rgba(63, 212, 217, 0.3));
    animation: logoGlow 4s ease-in-out infinite, logoFloat 6s ease-in-out infinite;
    order: 1;
}

@keyframes logoGlow {
    0%, 100% {
        filter: 
            drop-shadow(0 0 30px rgba(139, 92, 246, 0.5))
            drop-shadow(0 0 60px rgba(63, 212, 217, 0.3));
    }
    50% {
        filter: 
            drop-shadow(0 0 50px rgba(139, 92, 246, 0.6))
            drop-shadow(0 0 100px rgba(63, 212, 217, 0.4));
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 600;
    background: linear-gradient(135deg, #ffd700, #ffaa40, #ffd700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    animation: shimmer 4s ease-in-out infinite;
    order: 3;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: 16px;
    color: var(--gray-200);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
    order: 4;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    order: 5;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, #14b8a6, #0d9488, #0891b2);
    background-size: 200% auto;
    color: var(--white);
    box-shadow: 
        0 4px 20px rgba(20, 184, 166, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-position: right center;
    box-shadow: 
        0 8px 30px rgba(20, 184, 166, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary.btn-glow {
    animation: btnGlowPulse 3s ease-in-out infinite;
}

@keyframes btnGlowPulse {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(20, 184, 166, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 4px 40px rgba(20, 184, 166, 0.6),
            0 0 60px rgba(20, 184, 166, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 9px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 160, 18, 0), rgba(212, 160, 18, 0.3), rgba(212, 160, 18, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: rgba(212, 160, 18, 0.08);
    border-color: rgba(212, 160, 18, 0.4);
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 160, 18, 0.15);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-discord {
    background: var(--discord);
    color: var(--white);
    padding: 18px 36px;
    font-size: 16px;
}

.btn-discord svg {
    width: 22px;
    height: 22px;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5);
}

/* Server Status */
.server-status {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 13px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    order: 6;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 1px;
}

.status-indicator.online {
    color: var(--success);
}

.status-indicator.offline {
    color: var(--error);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s ease-in-out infinite;
}

.status-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
}

.status-players {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
}

.status-players svg {
    width: 18px;
    height: 18px;
}


/* ==========================================
   Discord Section
   ========================================== */
.discord-section {
    padding: 80px 0;
    position: relative;
}

.discord-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(88, 101, 242, 0.05));
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.discord-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--discord), var(--purple-base));
}

.discord-content {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.discord-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--discord);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.discord-icon svg {
    width: 44px;
    height: 44px;
    color: var(--white);
}

.discord-text h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.discord-text p {
    color: var(--gray-300);
    max-width: 500px;
    margin-bottom: 16px;
}

.discord-stats {
    display: flex;
    gap: 32px;
}

.discord-stats .stat {
    display: flex;
    flex-direction: column;
}

.discord-stats .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.discord-stats .stat-label {
    font-size: 12px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header.light {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 160, 18, 0.1);
    border: 1px solid rgba(212, 160, 18, 0.3);
    border-radius: 4px;
    color: var(--gold-base);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
}

/* ==========================================
   Features Section
   ========================================== */
.features-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--navy-darkest), var(--navy-dark));
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-base), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--teal-glow), transparent 60%);
    opacity: 0;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(63, 212, 217, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 0.3;
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(63, 212, 217, 0.2), rgba(63, 212, 217, 0.05));
    border: 1px solid rgba(63, 212, 217, 0.3);
    border-radius: 16px;
    transition: var(--transition-base);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--teal-light);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-teal);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-300);
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================================
   Cosmetics Section
   ========================================== */
.cosmetics-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--navy-dark), var(--navy-base));
    position: relative;
    overflow: hidden;
}

.cosmetics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-base), transparent);
}

.cosmetics-showcase {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* Plushies Grid - Clean, no boxes */
.plushies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.plushie-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: var(--transition-base);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.plushie-img:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.3));
}

/* Special Variants */
.special-variants {
    text-align: center;
}

.variants-header {
    margin-bottom: 48px;
}

.variants-header h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.variants-header p {
    color: var(--gray-400);
    font-size: 17px;
}

/* Variants in a single row */
.variants-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.variant-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-base);
}

.variant-item img {
    width: 180px;
    height: auto;
    border-radius: 12px;
    transition: var(--transition-base);
}

.variant-item.golden img {
    filter: drop-shadow(0 8px 25px rgba(212, 160, 18, 0.4));
}

.variant-item.smoke img {
    filter: drop-shadow(0 8px 25px rgba(139, 92, 246, 0.4));
}

.variant-item:hover {
    transform: translateY(-10px);
}

.variant-item.golden:hover img {
    filter: drop-shadow(0 15px 40px rgba(212, 160, 18, 0.6));
}

.variant-item.smoke:hover img {
    filter: drop-shadow(0 15px 40px rgba(139, 92, 246, 0.6));
}

.variant-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    z-index: 2;
}

.variant-badge.golden {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-base));
    color: var(--navy-darkest);
    box-shadow: 0 4px 15px rgba(212, 160, 18, 0.5);
}

.variant-badge.smoke {
    background: linear-gradient(135deg, var(--purple-light), var(--teal-base));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5);
}

/* Cosmetics CTA */
.cosmetics-cta {
    text-align: center;
    padding: 32px;
    max-width: 500px;
    margin: 0 auto;
}

.cosmetics-cta p {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 20px;
}

/* Responsive Cosmetics */
@media (max-width: 900px) {
    .plushies-grid {
        gap: 20px;
    }

    .variant-item img {
        width: 150px;
    }

    .variants-row {
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .plushies-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .variants-row {
        gap: 20px;
    }

    .variant-item img {
        width: 120px;
    }

    .variants-header h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .plushies-grid {
        gap: 8px;
    }

    .variant-item img {
        width: 100px;
    }

    .variant-badge {
        font-size: 8px;
        padding: 4px 10px;
    }
}

/* ==========================================
   Social Section
   ========================================== */
.social-section {
    padding: var(--section-padding) 0;
    background: var(--navy-dark);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.social-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px 32px;
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: var(--transition-base);
}

.social-card.youtube .social-bg {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), transparent);
}

.social-card.twitter .social-bg {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), transparent);
}

.social-card.tiktok .social-bg {
    background: linear-gradient(135deg, rgba(0, 242, 234, 0.2), transparent);
}

.social-card.instagram .social-bg {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.2), rgba(131, 58, 180, 0.2));
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.social-card:hover .social-bg {
    opacity: 1;
}

.social-content {
    position: relative;
    z-index: 1;
}

.social-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.social-card.youtube .social-icon { color: var(--youtube); }
.social-card.twitter .social-icon { color: var(--white); }
.social-card.tiktok .social-icon { color: var(--tiktok); }
.social-card.instagram .social-icon { color: var(--instagram); }

.social-card:hover .social-icon {
    transform: scale(1.15);
}

.social-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.social-card p {
    color: var(--gray-300);
    font-size: 14px;
    margin-bottom: 20px;
}

.social-cta {
    display: inline-flex;
    align-items: center;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
}

.social-card:hover .social-cta {
    color: var(--gold-base);
}

/* ==========================================
   Jobs Section
   ========================================== */
.jobs-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--navy-dark), var(--navy-base));
}

.jobs-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.job-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
}

.job-category:hover {
    border-color: rgba(212, 160, 18, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-header {
    padding: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.category-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.category-icon svg {
    width: 26px;
    height: 26px;
}

.category-icon.arte {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--purple-light);
}

.category-icon.programacion {
    background: linear-gradient(135deg, rgba(63, 212, 217, 0.2), rgba(63, 212, 217, 0.05));
    border: 1px solid rgba(63, 212, 217, 0.3);
    color: var(--teal-light);
}

.category-icon.admin {
    background: linear-gradient(135deg, rgba(212, 160, 18, 0.2), rgba(212, 160, 18, 0.05));
    border: 1px solid rgba(212, 160, 18, 0.3);
    color: var(--gold-light);
}

.category-icon.moderacion {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.category-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    flex: 1;
}

.positions-count {
    font-size: 12px;
    color: var(--gray-400);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
}

.jobs-list {
    padding: 8px;
}

.job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 8px;
    transition: var(--transition-base);
}

.job-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.job-title {
    color: var(--gray-200);
    font-size: 15px;
}

.job-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.jobs-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.jobs-cta p {
    color: var(--gray-300);
    margin-bottom: 20px;
}

/* Jobs Recruitment Card */
.jobs-recruitment {
    max-width: 800px;
    margin: 0 auto;
}

.recruitment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(63, 212, 217, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.recruitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-base), var(--teal-base));
}

.recruitment-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    margin-bottom: 24px;
}

.recruitment-icon svg {
    width: 40px;
    height: 40px;
    color: var(--purple-light);
}

.recruitment-content h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.recruitment-content p {
    color: var(--gray-300);
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 24px;
}

.recruitment-highlights {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.recruitment-highlights li {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-200);
    font-size: 14px;
}

/* ==========================================
   Benefits Section
   ========================================== */
.benefits-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.15), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(63, 212, 217, 0.1), transparent 50%),
        linear-gradient(135deg, var(--navy-base), var(--navy-dark));
    z-index: -1;
}

.benefits-intro {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 160, 18, 0.2);
    border-radius: 16px;
    position: relative;
}

.benefits-intro::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-family: var(--font-display);
    font-size: 120px;
    color: rgba(212, 160, 18, 0.1);
    line-height: 1;
}

.benefits-intro h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.benefits-intro p {
    font-size: 17px;
    color: var(--gray-200);
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.benefit-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateX(8px);
    border-color: rgba(63, 212, 217, 0.3);
    background: rgba(63, 212, 217, 0.03);
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--teal-base), var(--teal-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--gray-300);
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================================
   News Section
   ========================================== */
.news-section {
    padding: var(--section-padding) 0;
    background: var(--navy-dark);
}

.news-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.news-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-base), transparent);
}

.news-item {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    position: relative;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 52px;
    top: 40px;
    width: 18px;
    height: 18px;
    background: var(--navy-dark);
    border: 3px solid var(--gold-base);
    border-radius: 50%;
    z-index: 1;
}

.news-date {
    width: 80px;
    flex-shrink: 0;
    text-align: center;
    padding-top: 8px;
}

.news-date .date-day {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
}

.news-date .date-month {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.news-content {
    flex: 1;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: var(--transition-base);
}

.news-content:hover {
    border-color: rgba(212, 160, 18, 0.3);
    background: rgba(212, 160, 18, 0.02);
}

.news-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(63, 212, 217, 0.1);
    border: 1px solid rgba(63, 212, 217, 0.3);
    border-radius: 4px;
    color: var(--teal-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.news-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.news-content p {
    color: var(--gray-300);
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--navy-darkest);
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.1), transparent 70%);
    pointer-events: none;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-base), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray-300);
    transition: var(--transition-base);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-social a:hover {
    background: var(--teal-base);
    border-color: var(--teal-base);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 11px;
    color: var(--gray-500);
    opacity: 0.7;
}

/* ==========================================
   Toast Notification
   ========================================== */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
    z-index: 2000;
    opacity: 0;
    transition: var(--transition-base);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast svg {
    width: 20px;
    height: 20px;
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}


/* Reveal Animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        flex-direction: column;
        align-items: stretch;
        padding: 100px 24px 32px;
        background: var(--navy-darkest);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(100%);
        transition: var(--transition-base);
        gap: 4px;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        padding: 16px;
        text-align: center;
    }
    
    .nav-links a.nav-discord {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .hero-logo {
        max-width: 400px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .server-status {
        flex-direction: column;
        gap: 12px;
    }
    
    .status-divider {
        width: 40px;
        height: 1px;
    }
    
    .discord-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    
    .discord-content {
        flex-direction: column;
    }
    
    .discord-stats {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .news-timeline::before {
        left: 30px;
    }
    
    .news-item::before {
        left: 22px;
    }
    
    .news-date {
        width: 50px;
    }
    
    .news-date .date-day {
        font-size: 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 8px 16px;
    }
    
    .hero-logo {
        max-width: 320px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid,
    .social-grid,
    .jobs-categories {
        grid-template-columns: 1fr;
    }
    
    .job-category {
        min-width: 0;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero-logo {
        animation: none;
    }
}

