/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* DARK MOON GOTHIC PURPLE PALETTE */
    --void-black: #0A0A0F;
    --cosmic-night: #121220;
    --moon-shadow: #1A1A2E;
    --deep-purple: #4A0D8C;       /* Purple închis gothic */
    --moon-purple: #5D21D6;       /* Purple mediu */
    --lunar-violet: #7C3AED;      /* Purple luminos */
    --moonlight: #8B5CF6;         /* Purple deschis */
    --stardust: #A78BFA;          /* Purple foarte deschis */
    --crater-gray: #C4B5FD;       /* Gri cu reflex purple */
    --moon-surface: #DDD6FE;      /* Culoare suprafață lună */
    --moon-glow: #EDE9FE;         /* Strălucire lună */
    
    /* Gradients - mai închise, mai goth */
    --gradient-void: linear-gradient(135deg, #0A0A0F 0%, #1A1A2E 50%, #2D1B69 100%);
    --gradient-lunar: linear-gradient(135deg, #4A0D8C 0%, #5D21D6 50%, #7C3AED 100%);
    --gradient-crater: linear-gradient(135deg, #1A1A2E 0%, #2D1B69 50%, #4A0D8C 100%);
    
    /* Glow Effects - mai subtile */
    --glow-deep-purple: 0 0 40px rgba(74, 13, 140, 0.6);
    --glow-moon-purple: 0 0 35px rgba(93, 33, 214, 0.5);
    --glow-lunar: 0 0 30px rgba(124, 58, 237, 0.4);
    --glow-crater: 0 0 25px rgba(139, 92, 246, 0.3);
    
    /* Shadows - mai profunde */
    --shadow-abyss: 0 35px 70px rgba(0, 0, 0, 0.95);
    --shadow-lunar: 0 25px 50px rgba(0, 0, 0, 0.85);
    --shadow-crater: 0 20px 45px rgba(0, 0, 0, 0.75);
    --shadow-purple: 0 15px 40px rgba(74, 13, 140, 0.5);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-void);
    color: var(--moon-glow);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
}

/* ===== MOON BACKGROUND ===== */
.moon-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    overflow: hidden;
}

#stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.moon-surface {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 13, 140, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(93, 33, 214, 0.2) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    filter: blur(120px);
    animation: moonFloat 50s infinite alternate ease-in-out;
}

.moon-glow {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(74, 13, 140, 0.3) 0%,
        rgba(93, 33, 214, 0.2) 30%,
        transparent 70%);
    filter: blur(100px);
    opacity: 0.4;
    animation: moonPulse 20s infinite alternate;
}

@keyframes moonFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-70px, 50px) scale(1.2); }
}

@keyframes moonPulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.4); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    padding: 16px 30px;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.96);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(74, 13, 140, 0.5);
    border-radius: 45px;
    box-shadow: 
        var(--shadow-lunar),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        var(--glow-deep-purple);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BRAND LOGO */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.brand-text {
    font-size: 1.7rem;
    font-weight: 800;
    background: var(--gradient-lunar);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-shadow: 0 0 25px rgba(74, 13, 140, 0.5);
}

.moon-dot {
    font-size: 1.8rem;
    color: var(--moonlight);
    animation: moonDotPulse 3s infinite alternate;
    filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.5));
}

@keyframes moonDotPulse {
    0% { 
        opacity: 0.7; 
        transform: scale(0.95);
        color: var(--moonlight);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2);
        color: var(--stardust);
    }
    100% { 
        opacity: 0.8; 
        transform: scale(1);
        color: var(--moonlight);
    }
}

/* NAV MENU */
.nav-menu {
    display: flex;
    gap: 35px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--crater-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.link-text {
    position: relative;
    z-index: 2;
}

.nav-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-lunar);
    border-radius: 2px;
    transition: width 0.4s ease;
    box-shadow: var(--glow-lunar);
}

.nav-link:hover {
    color: var(--moon-glow);
}

.nav-link:hover .nav-glow {
    width: 100%;
}

.nav-link.active {
    color: var(--moon-glow);
}

.nav-link.active .nav-glow {
    width: 100%;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* NAV ACTIONS - BUTOANE RO/EN MAI MICI */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LANG SWITCH - MODIFICAT PENTRU MAI MIC */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 1px;
    background: rgba(42, 40, 80, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(93, 33, 214, 0.4);
    border-radius: 20px;
    padding: 3px 5px;
    transition: all 0.3s ease;
    min-width: 75px;
    justify-content: center;
    height: 36px;
}

.lang-switch:hover {
    border-color: var(--lunar-violet);
    box-shadow: var(--glow-moon-purple);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--crater-gray);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn.active {
    color: var(--moon-glow);
    background: rgba(93, 33, 214, 0.4);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 3px 10px rgba(93, 33, 214, 0.4);
}

.lang-btn:hover:not(.active) {
    color: var(--moon-glow);
    background: rgba(93, 33, 214, 0.3);
}

.lang-separator {
    color: var(--crater-gray);
    font-weight: 500;
    opacity: 0.5;
    font-size: 11px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(93, 33, 214, 0.25);
    color: var(--moon-glow);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(124, 58, 237, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent);
    transition: left 0.6s;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    background: rgba(93, 33, 214, 0.35);
    transform: translateY(-2px);
    border-color: var(--lunar-violet);
    box-shadow: var(--glow-moon-purple);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    margin-top: 70px;
}

.hero-badge {
    margin-bottom: 35px;
}

.badge-text {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(93, 33, 214, 0.2);
    color: var(--moon-surface);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border-radius: 32px;
    border: 1px solid rgba(124, 58, 237, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 12px 35px rgba(0, 0, 0, 0.5),
        var(--glow-moon-purple);
    animation: badgeFloat 5s infinite alternate;
    position: relative;
    overflow: hidden;
}

.badge-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.7s;
}

.badge-text:hover::before {
    left: 100%;
}

@keyframes badgeFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(0.5deg); }
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 35px;
    background: linear-gradient(135deg, 
        var(--moon-surface) 0%, 
        var(--stardust) 30%,
        var(--lunar-violet) 70%,
        var(--moon-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2.5px;
    text-shadow: 
        0 0 80px rgba(93, 33, 214, 0.4),
        0 0 120px rgba(74, 13, 140, 0.3);
    animation: titleGlow 5s infinite alternate;
}

@keyframes titleGlow {
    0% { 
        text-shadow: 
            0 0 80px rgba(93, 33, 214, 0.4),
            0 0 120px rgba(74, 13, 140, 0.3);
    }
    100% { 
        text-shadow: 
            0 0 100px rgba(93, 33, 214, 0.6),
            0 0 150px rgba(74, 13, 140, 0.4);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--moon-surface);
    margin-bottom: 55px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.9;
    text-shadow: 0 0 15px rgba(93, 33, 214, 0.3);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 20px 55px;
    background: rgba(93, 33, 214, 0.3);
    color: var(--moon-glow);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 45px;
    transition: all 0.5s ease;
    border: 1px solid rgba(124, 58, 237, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 
        var(--shadow-purple),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.8s ease;
}

.hero-cta:hover {
    background: rgba(93, 33, 214, 0.4);
    transform: translateY(-6px) scale(1.05);
    border-color: var(--lunar-violet);
    box-shadow: 
        0 30px 65px rgba(0, 0, 0, 0.7),
        var(--glow-moon-purple);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta svg {
    transition: transform 0.4s ease;
}

.hero-cta:hover svg {
    transform: translateX(10px) scale(1.15);
}

/* ANIMATED ARROW - REPOZITIONAT */
.hero-scroll {
    position: absolute;
    bottom: -10 0px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-arrow {
    width: 32px;
    height: 32px;
    border-right: 3px solid var(--lunar-violet);
    border-bottom: 3px solid var(--lunar-violet);
    transform: rotate(45deg);
    animation: arrowBounce 2.5s infinite;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
    filter: drop-shadow(0 0 8px var(--stardust));
}

.scroll-line {
    width: 2px;
    height: 70px;
    background: linear-gradient(to bottom, 
        var(--lunar-violet), 
        var(--moonlight), 
        var(--stardust),
        transparent);
    border-radius: 2px;
    animation: scrollLine 2.5s infinite;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-12px) rotate(45deg); }
    60% { transform: translateY(-6px) rotate(45deg); }
}

@keyframes scrollLine {
    0%, 100% { 
        height: 70px;
        opacity: 0.6;
        box-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
    }
    50% { 
        height: 90px;
        opacity: 1;
        box-shadow: 0 0 30px rgba(124, 58, 237, 0.8);
    }
}

/* ===== DESPRE COMUNITATE ===== */
.about {
    padding: 180px 40px;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(124, 58, 237, 0.5), 
        rgba(139, 92, 246, 0.5),
        rgba(124, 58, 237, 0.5),
        transparent);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 110px;
    align-items: start;
}

/* LEFT - YEARS & TITLE */
.about-left {
    position: sticky;
    top: 170px;
    padding-top: 55px;
}

.years-section {
    margin-bottom: 70px;
    position: relative;
}

.years-label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--moon-surface);
    margin-bottom: 22px;
    opacity: 0.9;
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.3);
}

.years-display {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.years-display::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        var(--lunar-violet), 
        var(--moonlight),
        transparent);
}

.year {
    font-size: 5.2rem;
    font-weight: 800;
    line-height: 0.9;
    font-feature-settings: "tnum";
    letter-spacing: -2.5px;
}

.year-main {
    background: linear-gradient(135deg, var(--moon-surface) 0%, var(--lunar-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(93, 33, 214, 0.4);
    animation: yearPulse 4s infinite alternate;
}

@keyframes yearPulse {
    0% { opacity: 0.9; }
    100% { opacity: 1; }
}

.year-secondary {
    color: var(--stardust);
    opacity: 0.2;
    text-shadow: 0 0 25px rgba(93, 33, 214, 0.2);
}

.section-divider {
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--lunar-violet), 
        var(--moonlight),
        var(--lunar-violet),
        transparent);
    margin: 45px 0;
    border-radius: 1px;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

.section-header {
    margin-top: 35px;
}

.section-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--moon-surface);
    margin-bottom: 18px;
    opacity: 0.9;
    text-shadow: 0 0 15px rgba(93, 33, 214, 0.3);
}

.section-tagline {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--moon-glow);
    margin-top: 8px;
    background: linear-gradient(135deg, var(--moon-surface) 0%, var(--lunar-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(93, 33, 214, 0.4);
}

/* RIGHT - CONTENT & IMAGE */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.text-lead {
    font-size: 1.45rem;
    line-height: 1.75;
    color: var(--moon-surface);
    font-weight: 500;
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.25);
    padding-left: 18px;
    border-left: 3px solid var(--lunar-violet);
}

.text-detail {
    font-size: 1.18rem;
    line-height: 1.75;
    color: var(--crater-gray);
    opacity: 0.9;
    font-weight: 400;
    text-shadow: 0 0 8px rgba(93, 33, 214, 0.15);
}

/* IMAGE STYLES */
.content-image {
    margin: 35px 0;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-abyss);
    border: 1px solid rgba(124, 58, 237, 0.4);
    transition: transform 0.5s ease;
}

.content-image:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 45px 90px rgba(0, 0, 0, 0.9),
        var(--glow-moon-purple);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s ease;
}

.content-image:hover .game-image {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 40%, 
        rgba(10, 10, 15, 0.85) 100%);
    pointer-events: none;
}

.image-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    background: rgba(93, 33, 214, 0.95);
    color: var(--moon-glow);
    padding: 13px 28px;
    border-radius: 28px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 
        0 12px 35px rgba(93, 33, 214, 0.5),
        0 0 25px rgba(124, 58, 237, 0.4);
    animation: badgePulse 2.5s infinite alternate;
    border: 1px solid rgba(221, 214, 254, 0.35);
    backdrop-filter: blur(10px);
}

@keyframes badgePulse {
    0% { 
        box-shadow: 0 12px 35px rgba(93, 33, 214, 0.5), 0 0 25px rgba(124, 58, 237, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 18px 45px rgba(93, 33, 214, 0.7), 0 0 35px rgba(124, 58, 237, 0.6);
        transform: scale(1.06);
    }
    100% { 
        box-shadow: 0 12px 35px rgba(93, 33, 214, 0.5), 0 0 25px rgba(124, 58, 237, 0.4);
        transform: scale(1);
    }
}

/* CTA BUTTON */
.content-cta {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 22px 60px;
    background: rgba(93, 33, 214, 0.3);
    color: var(--moon-glow);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 45px;
    transition: all 0.5s ease;
    border: 1px solid rgba(124, 58, 237, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 22px 55px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.18), 
        transparent);
    transition: left 0.8s ease;
}

.cta-button:hover {
    background: rgba(93, 33, 214, 0.4);
    transform: translateY(-6px) scale(1.05);
    border-color: var(--lunar-violet);
    box-shadow: 
        0 32px 75px rgba(0, 0, 0, 0.7),
        var(--glow-moon-purple);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button svg {
    transition: transform 0.4s ease;
}

.cta-button:hover svg {
    transform: translateX(10px) scale(1.15);
}

/* ===== MISIUNEA NOASTRĂ ===== */
.mission {
    padding: 180px 40px;
    background: rgba(26, 26, 46, 0.4);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(124, 58, 237, 0.5), 
        rgba(139, 92, 246, 0.5),
        rgba(124, 58, 237, 0.5),
        transparent);
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 95px;
    align-items: center;
}

/* LEFT - IMAGE */
.mission-left {
    position: relative;
}

.mission-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-abyss);
    border: 1px solid rgba(124, 58, 237, 0.4);
    transition: transform 0.5s ease;
}

.mission-image:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 45px 90px rgba(0, 0, 0, 0.9),
        var(--glow-moon-purple);
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.mission-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s ease;
}

.mission-image:hover .mission-img {
    transform: scale(1.08);
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 50%, 
        rgba(26, 26, 46, 0.85) 100%);
    pointer-events: none;
}

.mission-label {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(42, 40, 90, 0.9);
    color: var(--moon-surface);
    padding: 11px 23px;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(124, 58, 237, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

/* RIGHT - CONTENT */
.mission-right {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.mission-header {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mission-badge {
    display: inline-block;
    padding: 11px 28px;
    background: rgba(93, 33, 214, 0.22);
    color: var(--moon-surface);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 28px;
    border: 1px solid rgba(124, 58, 237, 0.4);
    backdrop-filter: blur(15px);
    width: fit-content;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.5);
}

.mission-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--moon-surface) 0%, var(--lunar-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 55px rgba(93, 33, 214, 0.4);
}

.mission-divider {
    width: 75px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--lunar-violet), 
        var(--moonlight),
        var(--lunar-violet),
        transparent);
    border-radius: 1px;
    margin: 12px 0;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.mission-text {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.mission-lead {
    font-size: 1.35rem;
    line-height: 1.75;
    color: var(--moon-surface);
    font-weight: 500;
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.25);
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.point {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 18px;
    background: rgba(42, 40, 90, 0.25);
    border-radius: 18px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.point::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(93, 33, 214, 0.15), 
        transparent);
    transition: left 0.6s ease;
}

.point:hover::before {
    left: 100%;
}

.point:hover {
    border-color: rgba(124, 58, 237, 0.5);
    background: rgba(42, 40, 90, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

.point-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    color: var(--moon-surface);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
    animation: iconFloat 3s infinite alternate;
}

@keyframes iconFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.point-content {
    flex: 1;
}

.point-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--moon-surface);
    margin-bottom: 9px;
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.25);
}

.point-content p {
    font-size: 1.08rem;
    color: var(--crater-gray);
    line-height: 1.65;
    text-shadow: 0 0 8px rgba(93, 33, 214, 0.15);
}

.mission-conclusion {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--moon-surface);
    font-weight: 500;
    font-style: italic;
    padding-top: 18px;
    border-top: 1px solid rgba(124, 58, 237, 0.35);
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.25);
}

/* MISSION CTA */
.mission-cta {
    margin-top: 25px;
}

.mission-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 20px 52px;
    background: rgba(93, 33, 214, 0.3);
    color: var(--moon-glow);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 45px;
    transition: all 0.5s ease;
    border: 1px solid rgba(124, 58, 237, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 18px 48px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.mission-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.18), 
        transparent);
    transition: left 0.8s ease;
}

.mission-button:hover {
    background: rgba(93, 33, 214, 0.4);
    transform: translateY(-6px) scale(1.05);
    border-color: var(--lunar-violet);
    box-shadow: 
        0 30px 75px rgba(0, 0, 0, 0.7),
        var(--glow-moon-purple);
}

.mission-button:hover::before {
    left: 100%;
}

.mission-button svg {
    transition: transform 0.4s ease;
}

.mission-button:hover svg {
    transform: translateX(10px) scale(1.15);
}

/* ===== DE CE SĂ NE ALEGI? ===== */
.why-choose {
    padding: 180px 40px;
    background: rgba(26, 26, 46, 0.5);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(124, 58, 237, 0.5), 
        rgba(139, 92, 246, 0.5),
        rgba(124, 58, 237, 0.5),
        transparent);
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 95px;
    align-items: center;
}

/* LEFT - CONTENT */
.why-choose-left {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.why-choose-header {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-choose-badge {
    display: inline-block;
    padding: 11px 28px;
    background: rgba(93, 33, 214, 0.22);
    color: var(--moon-surface);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 28px;
    border: 1px solid rgba(124, 58, 237, 0.4);
    backdrop-filter: blur(15px);
    width: fit-content;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.5);
}

.why-choose-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--moon-surface) 0%, var(--lunar-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 55px rgba(93, 33, 214, 0.4);
}

.why-choose-divider {
    width: 75px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--lunar-violet), 
        var(--moonlight),
        var(--lunar-violet),
        transparent);
    border-radius: 1px;
    margin: 12px 0;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.why-choose-text {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.why-choose-lead {
    font-size: 1.35rem;
    line-height: 1.75;
    color: var(--moon-surface);
    font-weight: 500;
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.25);
}

.why-choose-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-point {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 18px;
    background: rgba(42, 40, 90, 0.25);
    border-radius: 18px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(93, 33, 214, 0.15), 
        transparent);
    transition: left 0.6s ease;
}

.why-point:hover::before {
    left: 100%;
}

.why-point:hover {
    border-color: rgba(124, 58, 237, 0.5);
    background: rgba(42, 40, 90, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

.why-point-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    color: var(--moon-surface);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.4));
}

.why-point-content {
    flex: 1;
}

.why-point-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--moon-surface);
    margin-bottom: 9px;
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.25);
}

.why-point-content p {
    font-size: 1.08rem;
    color: var(--crater-gray);
    line-height: 1.65;
    text-shadow: 0 0 8px rgba(93, 33, 214, 0.15);
}

.why-choose-conclusion {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--moon-surface);
    font-weight: 500;
    font-style: italic;
    padding-top: 18px;
    border-top: 1px solid rgba(124, 58, 237, 0.35);
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.25);
}

/* RIGHT - IMAGE (CS3) */
.why-choose-right {
    position: relative;
}

.why-choose-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-abyss);
    border: 1px solid rgba(124, 58, 237, 0.4);
    transition: transform 0.5s ease;
}

.why-choose-image:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 45px 90px rgba(0, 0, 0, 0.9),
        var(--glow-moon-purple);
}

.cs3-frame {
    position: relative;
    overflow: hidden;
}

.cs3-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s ease;
}

.why-choose-image:hover .cs3-img {
    transform: scale(1.08);
}

.cs3-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        transparent 50%, 
        rgba(26, 26, 46, 0.85) 100%);
    pointer-events: none;
}

.cs3-label {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(42, 40, 90, 0.9);
    color: var(--moon-surface);
    padding: 11px 23px;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(124, 58, 237, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

/* ===== JOCURI ===== */
.games {
    padding: 180px 40px;
    position: relative;
}

.games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(124, 58, 237, 0.5), 
        rgba(139, 92, 246, 0.5),
        rgba(124, 58, 237, 0.5),
        transparent);
}

.games-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 90px;
}

.section-heading {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--moon-surface) 0%, var(--lunar-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 70px rgba(93, 33, 214, 0.4);
}

.section-sub {
    font-size: 1.25rem;
    color: var(--crater-gray);
    margin-bottom: 35px;
    opacity: 0.9;
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.25);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.game-card {
    background: rgba(42, 40, 90, 0.25);
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: 28px;
    padding: 48px 38px;
    transition: all 0.5s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(93, 33, 214, 0.15), 
        transparent);
    transition: left 0.8s ease;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-12px) scale(1.04);
    border-color: var(--lunar-violet);
    background: rgba(42, 40, 90, 0.35);
    box-shadow: 
        0 35px 75px rgba(0, 0, 0, 0.7),
        var(--glow-moon-purple);
}

.game-icon {
    width: 88px;
    height: 88px;
    background: rgba(93, 33, 214, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.game-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.08) 0%,
        transparent 70%);
    transform: rotate(45deg);
}

.icon-text {
    font-size: 2.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--moon-surface) 0%, var(--lunar-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(93, 33, 214, 0.3);
}

.game-content h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--moon-surface);
    text-shadow: 0 0 15px rgba(93, 33, 214, 0.25);
}

.game-content p {
    font-size: 1.1rem;
    color: var(--crater-gray);
    line-height: 1.65;
    margin-bottom: 22px;
    text-shadow: 0 0 8px rgba(93, 33, 214, 0.15);
}

.game-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.stat {
    font-size: 0.88rem;
    color: var(--moon-surface);
    background: rgba(93, 33, 214, 0.15);
    padding: 7px 16px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(124, 58, 237, 0.35);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(93, 33, 214, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(93, 33, 214, 0.25);
}

/* ===== STATISTICI - IMPROVED ===== */
.stats {
    padding: 160px 40px;
    background: rgba(26, 26, 46, 0.6);
    position: relative;
}

.stats-container {
    max-width: 1300px;
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 80px;
}

.stats-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--moon-surface);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    text-shadow: 0 0 20px rgba(93, 33, 214, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}

.stat-card {
    text-align: center;
    padding: 48px 35px;
    background: rgba(42, 40, 90, 0.25);
    border-radius: 28px;
    border: 1px solid rgba(124, 58, 237, 0.35);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(93, 33, 214, 0.15), 
        transparent);
    transition: left 0.8s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    border-color: var(--lunar-violet);
    transform: translateY(-8px) scale(1.05);
    background: rgba(42, 40, 90, 0.35);
    box-shadow: 
        0 28px 65px rgba(0, 0, 0, 0.6),
        var(--glow-moon-purple);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
    background: linear-gradient(135deg, var(--moon-surface) 0%, var(--lunar-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(93, 33, 214, 0.4);
}

.stat-label {
    font-size: 1.05rem;
    color: var(--crater-gray);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.2);
}

/* ===== JOIN SECTION ===== */
.join {
    padding: 200px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(124, 58, 237, 0.5), 
        rgba(139, 92, 246, 0.5),
        rgba(124, 58, 237, 0.5),
        transparent);
}

.join-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.join-content {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.join-badge {
    display: inline-block;
    padding: 13px 32px;
    background: rgba(93, 33, 214, 0.22);
    color: var(--moon-surface);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    border-radius: 32px;
    border: 1px solid rgba(124, 58, 237, 0.4);
    backdrop-filter: blur(15px);
    width: fit-content;
    margin: 0 auto;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 12px 45px rgba(0, 0, 0, 0.6),
        var(--glow-moon-purple);
    animation: joinBadgeFloat 6s infinite alternate;
}

@keyframes joinBadgeFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-18px) rotate(1.5deg); }
}

.join h2 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 28px;
    background: linear-gradient(135deg, var(--moon-surface) 0%, var(--lunar-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 0 90px rgba(93, 33, 214, 0.5);
}

.join p {
    font-size: 1.35rem;
    color: var(--moon-surface);
    margin-bottom: 45px;
    opacity: 0.95;
    line-height: 1.75;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 15px rgba(93, 33, 214, 0.25);
}

.join-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 22px 65px;
    background: rgba(93, 33, 214, 0.3);
    color: var(--moon-glow);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 45px;
    transition: all 0.5s ease;
    border: 1px solid rgba(124, 58, 237, 0.5);
    backdrop-filter: blur(15px);
    margin: 0 auto;
    box-shadow: 
        0 22px 65px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.join-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.22), 
        transparent);
    transition: left 0.8s ease;
}

.join-button:hover {
    background: rgba(93, 33, 214, 0.4);
    transform: translateY(-8px) scale(1.08);
    border-color: var(--lunar-violet);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.8),
        var(--glow-moon-purple);
}

.join-button:hover::before {
    left: 100%;
}

.join-button svg {
    transition: transform 0.4s ease;
}

.join-button:hover svg {
    transform: translateX(12px) scale(1.2);
}

.join-note {
    font-size: 0.95rem;
    color: var(--crater-gray);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 25px;
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    padding: 110px 40px 60px;
    background: rgba(26, 26, 46, 0.9);
    border-top: 1px solid rgba(124, 58, 237, 0.5);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.25), 
        rgba(124, 58, 237, 0.5),
        rgba(255, 255, 255, 0.25),
        transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-logo {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--moon-surface) 0%, var(--lunar-violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    text-shadow: 0 0 45px rgba(93, 33, 214, 0.4);
}

.footer-motto {
    font-size: 1.05rem;
    color: var(--crater-gray);
    font-weight: 600;
    letter-spacing: 0.12em;
    opacity: 0.8;
    max-width: 320px;
    text-shadow: 0 0 8px rgba(93, 33, 214, 0.15);
}

.footer-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-links {
    display: flex;
    gap: 32px;
    margin-bottom: 22px;
    justify-content: flex-end;
}

.footer-link {
    color: var(--crater-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-lunar);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--moon-glow);
    text-shadow: 0 0 12px var(--moon-surface);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-discord {
    color: var(--moon-surface);
    font-family: monospace;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.25);
}

.footer-copyright {
    font-size: 0.98rem;
    color: var(--crater-gray);
    opacity: 0.7;
    text-shadow: 0 0 8px rgba(93, 33, 214, 0.15);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 45px;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-text {
    font-size: 0.98rem;
    color: var(--crater-gray);
    opacity: 0.7;
    text-shadow: 0 0 8px rgba(93, 33, 214, 0.15);
}

.bottom-year {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--moon-surface);
    opacity: 0.8;
    text-shadow: 0 0 12px rgba(93, 33, 214, 0.25);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .navbar {
        width: 95%;
        padding: 14px 25px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .about-container,
    .mission-container,
    .why-choose-container {
        gap: 80px;
    }
    
    .hero-title {
        font-size: 5.2rem;
    }
    
    .section-tagline,
    .mission-title,
    .why-choose-title {
        font-size: 2.3rem;
    }
    
    .games-grid,
    .stats-grid {
        gap: 38px;
    }
    
    .join h2 {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        gap: 18px;
        padding: 22px;
        border-radius: 35px;
        top: 22px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 22px;
        width: 100%;
    }
    
    .nav-brand {
        order: 1;
    }
    
    .nav-menu {
        position: static;
        transform: none;
        order: 2;
        justify-content: center;
        width: 100%;
        gap: 22px;
        flex-wrap: wrap;
    }
    
    .nav-actions {
        order: 3;
        justify-content: center;
        width: 100%;
    }
    
    .about-container,
    .mission-container,
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 85px;
    }
    
    .about-left {
        position: relative;
        top: 0;
    }
    
    .games-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 4.2rem;
    }
    
    .section-heading {
        font-size: 3rem;
    }
    
    .mission-title,
    .why-choose-title {
        font-size: 2.8rem;
    }
    
    .join h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero {
        padding: 150px 25px 0;
    }
    
    .about,
    .mission,
    .why-choose,
    .games,
    .stats,
    .join {
        padding: 150px 25px;
    }
    
    .games-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .section-tagline {
        font-size: 2rem;
    }
    
    .mission-title,
    .why-choose-title {
        font-size: 2.3rem;
    }
    
    .section-heading {
        font-size: 2.6rem;
    }
    
    .nav-menu {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.98rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 45px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .join h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 18px;
        top: 18px;
        width: calc(100% - 36px);
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-tagline,
    .mission-title,
    .why-choose-title {
        font-size: 1.8rem;
    }
    
    .text-lead,
    .mission-lead,
    .why-choose-lead {
        font-size: 1.2rem;
    }
    
    .text-detail {
        font-size: 1.05rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .cta-button,
    .mission-button,
    .join-button {
        padding: 18px 40px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .game-card {
        padding: 38px 28px;
    }
    
    .stat-number {
        font-size: 3.2rem;
    }
    
    .join h2 {
        font-size: 2rem;
    }
    
    .join p {
        font-size: 1.2rem;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 18px;
    }
    
    .lang-switch {
        width: 100%;
        justify-content: center;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}