/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* CULORI PENTRU TEMĂ GOTHIC PURPLE */
    --void-black: #05050A;
    --cosmic-night: #0A0A14;
    --moon-shadow: #10101E;
    --gothic-purple: #2d1b69;
    --deep-purple: #1a1038;
    --moon-purple: #4A0D8C;
    --lunar-violet: #5A17B3;
    --moonlight: #6B21C8;
    --stardust: #7C3AED;
    --crater-gray: #8B5CF6;
    --moon-surface: #9F79F9;
    --moon-glow: #B295FB;
    
    /* CULORI NOI PENTRU HERO */
    --hero-neon-purple: #9d4edd;
    --hero-violet-glow: #7b2cbf;
    --hero-lavender: #c77dff;
    --hero-moon-white: #f0f0ff;
    --hero-stat-color: #ffffff;
    
    /* Gradients */
    --gradient-abyss: linear-gradient(135deg, #05050A 0%, #10101E 40%, #2d1b69 80%);
    --gradient-gothic: linear-gradient(135deg, #0A0A14 0%, #2d1b69 50%, #1a1038 100%);
    --gradient-lunar: linear-gradient(135deg, #2d1b69 0%, #1a1038 40%, #4A0D8C 80%);
    --gradient-midnight: linear-gradient(135deg, #10101E 0%, #2d1b69 60%, #1a1038 100%);
    --gradient-crater: linear-gradient(135deg, #2d1b69 0%, #1a1038 30%, #4A0D8C 70%);
    --gradient-hero: linear-gradient(135deg, #05050A 0%, #1a1038 50%, #2d1b69 100%);
    
    /* Glow Effects */
    --glow-gothic: 0 0 40px rgba(45, 27, 105, 0.8);
    --glow-deep-purple: 0 0 35px rgba(26, 16, 56, 0.7);
    --glow-moon-purple: 0 0 30px rgba(74, 13, 140, 0.6);
    --glow-lunar: 0 0 25px rgba(90, 23, 179, 0.5);
    --glow-crater: 0 0 20px rgba(107, 33, 200, 0.4);
    
    /* Shadows */
    --shadow-abyss: 0 40px 80px rgba(0, 0, 0, 0.95);
    --shadow-gothic: 0 30px 60px rgba(0, 0, 0, 0.9);
    --shadow-lunar: 0 25px 50px rgba(0, 0, 0, 0.85);
    --shadow-crater: 0 20px 40px rgba(0, 0, 0, 0.8);
    --shadow-purple: 0 15px 35px rgba(45, 27, 105, 0.6);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-hero);
    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: -1;
    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(45, 27, 105, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 16, 56, 0.4) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(74, 13, 140, 0.35) 0%, transparent 60%);
    filter: blur(100px);
    animation: moonFloat 30s infinite alternate ease-in-out;
}

.moon-glow {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(45, 27, 105, 0.45) 0%,
        rgba(26, 16, 56, 0.35) 30%,
        transparent 70%);
    filter: blur(80px);
    opacity: 0.35;
    animation: moonPulse 15s infinite alternate;
}

@keyframes moonFloat {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(-100px, 70px) scale(1.3) rotate(2deg); }
}

@keyframes moonPulse {
    0% { opacity: 0.25; transform: scale(0.9); }
    100% { opacity: 0.5; transform: scale(1.6); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    padding: 12px 25px;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(50px) saturate(200%);
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 40px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.95),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        var(--glow-gothic);
    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: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 15px;
    border-radius: 25px;
    background: rgba(45, 27, 105, 0.2);
    border: 1px solid rgba(90, 23, 179, 0.2);
}

.nav-brand:hover {
    transform: scale(1.05);
    background: rgba(45, 27, 105, 0.3);
    border-color: rgba(107, 33, 200, 0.3);
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--moon-glow) 0%, var(--stardust) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(107, 33, 200, 0.4);
}

.moon-dot {
    font-size: 1.6rem;
    color: var(--moonlight);
    animation: moonDotPulse 3s infinite alternate;
    filter: drop-shadow(0 0 10px rgba(107, 33, 200, 0.5));
}

@keyframes moonDotPulse {
    0% { opacity: 0.6; transform: scale(0.9); color: var(--lunar-violet); }
    50% { opacity: 1; transform: scale(1.1); color: var(--moonlight); }
    100% { opacity: 0.7; transform: scale(1); color: var(--stardust); }
}

/* NAV MENU */
.nav-menu {
    display: flex;
    gap: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--crater-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.link-text {
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.nav-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--moonlight), transparent);
    transition: width 0.3s 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);
    font-weight: 700;
}

.nav-link.active .nav-glow {
    width: 100%;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* NAV ACTIONS */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LANG SWITCH */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(32, 32, 64, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(90, 23, 179, 0.3);
    border-radius: 18px;
    padding: 2px;
    transition: all 0.3s ease;
    min-width: 70px;
    justify-content: center;
    height: 32px;
    overflow: hidden;
}

.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: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 28px;
    text-align: center;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn.active {
    color: var(--moon-glow);
    background: rgba(90, 23, 179, 0.4);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 2px 8px rgba(90, 23, 179, 0.4);
}

.lang-btn:hover:not(.active) {
    color: var(--moon-glow);
    background: rgba(90, 23, 179, 0.2);
}

.lang-separator {
    color: var(--crater-gray);
    font-weight: 400;
    opacity: 0.3;
    font-size: 10px;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(90, 23, 179, 0.2);
    color: var(--moon-glow);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 33, 200, 0.3);
    backdrop-filter: blur(20px);
    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(90, 23, 179, 0.3);
    transform: translateY(-2px);
    border-color: var(--lunar-violet);
    box-shadow: var(--glow-moon-purple);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Spatiu pentru navbar */
}

.cosmic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.purple-nebula {
    width: 600px;
    height: 600px;
    background: var(--hero-neon-purple);
    top: -200px;
    right: -200px;
    animation: nebula-float 30s infinite alternate ease-in-out;
}

.dark-nebula {
    width: 800px;
    height: 800px;
    background: var(--deep-purple);
    bottom: -400px;
    left: -400px;
    animation: nebula-float 40s infinite alternate-reverse ease-in-out;
}

.star-field {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, #fff, transparent),
        radial-gradient(1px 1px at 90px 40px, #ddd, transparent),
        radial-gradient(1px 1px at 130px 80px, #fff, transparent),
        radial-gradient(3px 3px at 160px 120px, var(--hero-lavender), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: stars-twinkle 4s infinite alternate;
}

.hero-section .moon-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.2) 0%, transparent 70%);
    top: 10%;
    right: 15%;
    filter: blur(40px);
    animation: moon-pulse 8s infinite alternate;
}

@keyframes nebula-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 100px) scale(1.1); }
}

@keyframes stars-twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    width: 100%;
    gap: 6rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

/* BADGE */
.gothic-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, rgba(45, 27, 105, 0.8), rgba(157, 78, 221, 0.8));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 125, 255, 0.3);
    animation: badge-pulse 2s infinite;
}

.gothic-ornament {
    font-size: 1rem;
    color: var(--hero-lavender);
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(157, 78, 221, 0.3); }
    50% { box-shadow: 0 0 20px rgba(157, 78, 221, 0.6); }
}

/* TITLURI */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.title-line {
    display: block;
    font-size: 2.5rem;
    color: #aaa;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.title-highlight {
    background: linear-gradient(90deg, var(--hero-lavender), var(--hero-neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 3rem;
    max-width: 500px;
}

/* BUTOANE */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.round-btn {
    border-radius: 50px !important;
}

.primary-btn {
    background: linear-gradient(90deg, var(--hero-neon-purple), var(--hero-violet-glow));
    color: white;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.5);
    background: linear-gradient(90deg, var(--hero-violet-glow), var(--hero-neon-purple));
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--hero-neon-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.3);
}

/* STATISTICI */
.stats-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 500px;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--hero-stat-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: #b0b0d0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* GRAFICA ORBITALĂ */
.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.orbital-system {
    position: relative;
    width: 450px;
    height: 450px;
}

/* INELE */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border: 1px solid rgba(157, 78, 221, 0.3);
    border-radius: 50%;
    animation: ring-rotate 25s linear infinite;
}

.secondary-ring {
    width: 420px;
    height: 420px;
    border-style: dotted;
    border-width: 1px;
    opacity: 0.5;
    animation: ring-rotate-reverse 35s linear infinite;
}

/* CENTRUL */
.central-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-core {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--hero-lavender) 0%, var(--hero-neon-purple) 70%, var(--hero-violet-glow) 100%);
    border-radius: 50%;
    animation: core-pulse 3s infinite alternate;
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px var(--hero-neon-purple);
}

.orb-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 4s infinite alternate;
}

/* SATELIȚI */
.satellite {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.main-satellite {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--hero-neon-purple), var(--hero-lavender));
    font-size: 1.5rem;
    animation: orbit-main 8s linear infinite;
    border: 2px solid white;
}

.secondary-satellite {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b9d, #ff8e53);
    font-size: 1.2rem;
    animation: orbit-secondary 12s linear infinite;
    animation-delay: 1s;
}

.tertiary-satellite {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    font-size: 1rem;
    animation: orbit-tertiary 15s linear infinite;
    animation-delay: 2s;
}

/* ORBE FLOTANTE */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-orb .inner-glow {
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--hero-lavender) 0%, transparent 70%);
    animation: inner-pulse 2s infinite alternate;
}

.orb1 { 
    width: 50px;
    height: 50px;
    top: 15%; 
    right: 25%;
    animation-delay: 0s;
}

.orb2 { 
    width: 40px;
    height: 40px;
    bottom: 20%; 
    right: 10%;
    animation-delay: 2s;
}

.orb3 { 
    width: 45px;
    height: 45px;
    bottom: 10%; 
    left: 20%;
    animation-delay: 4s;
}

/* STELE ORBITALE */
.orbital-star {
    position: absolute;
    color: var(--hero-moon-white);
    font-size: 1.5rem;
    animation: star-twinkle 3s infinite alternate;
    text-shadow: 0 0 10px var(--hero-lavender);
}

.star1 { 
    top: 30%; 
    left: 15%;
    animation-delay: 0s;
}
.star2 { 
    top: 60%; 
    right: 20%;
    animation-delay: 1s;
}
.star3 { 
    bottom: 30%; 
    left: 25%;
    animation-delay: 2s;
}

/* MOUSE WHEEL */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.mouse-wheel {
    width: 34px;
    height: 55px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    position: relative;
    transition: border-color 0.3s;
}

.mouse-wheel:hover {
    border-color: var(--hero-neon-purple);
}

.wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

.scroll-text {
    color: #aaa;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ANIMAȚII */
@keyframes ring-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ring-rotate-reverse {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes orbit-main {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(175px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(175px) rotate(-360deg); }
}

@keyframes orbit-secondary {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(210px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg) translateX(210px) rotate(360deg); }
}

@keyframes orbit-tertiary {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(140px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(140px) rotate(-360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes glow-pulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.3); }
}

@keyframes core-pulse {
    0% { box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px var(--hero-neon-purple); }
    100% { box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.8), 0 0 50px var(--hero-lavender); }
}

@keyframes inner-pulse {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 0.8; transform: scale(1.2); }
}

@keyframes star-twinkle {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}

/* ===== DESPRE COMUNITATE ===== */
.about {
    padding: 180px 40px;
    position: relative;
    background: var(--gradient-gothic);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 33, 200, 0.5), rgba(139, 92, 246, 0.5), rgba(107, 33, 200, 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(90, 23, 179, 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(90, 23, 179, 0.4);
    animation: yearPulse 4s infinite alternate;
}

.year-secondary {
    color: var(--stardust);
    opacity: 0.2;
    text-shadow: 0 0 25px rgba(90, 23, 179, 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(107, 33, 200, 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(90, 23, 179, 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(90, 23, 179, 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(90, 23, 179, 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(90, 23, 179, 0.15);
}

.content-image {
    margin: 35px 0;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-abyss);
    border: 1px solid rgba(107, 33, 200, 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, 20, 0.85) 100%);
    pointer-events: none;
}

.image-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    background: rgba(90, 23, 179, 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(90, 23, 179, 0.5), 0 0 25px rgba(107, 33, 200, 0.4);
    animation: badgePulse 2.5s infinite alternate;
    border: 1px solid rgba(196, 181, 253, 0.35);
    backdrop-filter: blur(10px);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 22px 60px;
    background: rgba(90, 23, 179, 0.25);
    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(107, 33, 200, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    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.15), transparent);
    transition: left 0.8s ease;
}

.cta-button:hover {
    background: rgba(90, 23, 179, 0.35);
    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: var(--gradient-crater);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 33, 200, 0.5), rgba(139, 92, 246, 0.5), rgba(107, 33, 200, 0.5), transparent);
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 95px;
    align-items: center;
}

.mission-left {
    position: relative;
}

.mission-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-gothic);
    border: 1px solid rgba(107, 33, 200, 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(16, 16, 30, 0.85) 100%);
    pointer-events: none;
}

.mission-label {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(32, 32, 64, 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(107, 33, 200, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

.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(90, 23, 179, 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(107, 33, 200, 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(90, 23, 179, 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(107, 33, 200, 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(90, 23, 179, 0.25);
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.point {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 18px;
    background: rgba(32, 32, 64, 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(90, 23, 179, 0.15), transparent);
    transition: left 0.6s ease;
}

.point:hover::before {
    left: 100%;
}

.point:hover {
    border-color: rgba(107, 33, 200, 0.5);
    background: rgba(32, 32, 64, 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;
}

.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(90, 23, 179, 0.25);
}

.point-content p {
    font-size: 1.08rem;
    color: var(--crater-gray);
    line-height: 1.65;
    text-shadow: 0 0 8px rgba(90, 23, 179, 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(107, 33, 200, 0.35);
    text-shadow: 0 0 12px rgba(90, 23, 179, 0.25);
}

.mission-cta {
    margin-top: 25px;
}

.mission-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 20px 52px;
    background: rgba(90, 23, 179, 0.25);
    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(107, 33, 200, 0.4);
    backdrop-filter: blur(15px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    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.15), transparent);
    transition: left 0.8s ease;
}

.mission-button:hover {
    background: rgba(90, 23, 179, 0.35);
    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: var(--gradient-gothic);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 33, 200, 0.5), rgba(139, 92, 246, 0.5), rgba(107, 33, 200, 0.5), transparent);
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 95px;
    align-items: center;
}

.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(90, 23, 179, 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(107, 33, 200, 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(90, 23, 179, 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(107, 33, 200, 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(90, 23, 179, 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(32, 32, 64, 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(90, 23, 179, 0.15), transparent);
    transition: left 0.6s ease;
}

.why-point:hover::before {
    left: 100%;
}

.why-point:hover {
    border-color: rgba(107, 33, 200, 0.5);
    background: rgba(32, 32, 64, 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(90, 23, 179, 0.25);
}

.why-point-content p {
    font-size: 1.08rem;
    color: var(--crater-gray);
    line-height: 1.65;
    text-shadow: 0 0 8px rgba(90, 23, 179, 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(107, 33, 200, 0.35);
    text-shadow: 0 0 12px rgba(90, 23, 179, 0.25);
}

.why-choose-right {
    position: relative;
}

.why-choose-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-gothic);
    border: 1px solid rgba(107, 33, 200, 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(16, 16, 30, 0.85) 100%);
    pointer-events: none;
}

.cs3-label {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(32, 32, 64, 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(107, 33, 200, 0.5);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

/* ===== JOCURI ===== */

/* ===== JOCURI CU LOGO-URI ===== */
.games {
    padding: 120px 40px;
    position: relative;
    background: var(--gradient-midnight);
}

.games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 33, 200, 0.5), rgba(139, 92, 246, 0.5), rgba(107, 33, 200, 0.5), transparent);
}

.games-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.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(90, 23, 179, 0.4);
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lunar-violet), transparent);
    border-radius: 3px;
}

.section-sub {
    font-size: 1.25rem;
    color: var(--crater-gray);
    margin-bottom: 35px;
    opacity: 0.9;
    text-shadow: 0 0 12px rgba(90, 23, 179, 0.25);
}

/* GRID FLEXIBIL */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

@media (min-width: 1400px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .games {
        padding: 80px 20px;
    }
}

/* CARD-URI DE JOC */
.game-card {
    background: rgba(32, 32, 64, 0.25);
    border: 1px solid rgba(107, 33, 200, 0.35);
    border-radius: 28px;
    padding: 40px 30px;
    transition: all 0.5s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(90, 23, 179, 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(32, 32, 64, 0.35);
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.7), var(--glow-moon-purple);
}

/* ICONIȚĂ CU LOGO */
.game-icon {
    width: 90px;
    height: 90px;
    background: rgba(90, 23, 179, 0.2);
    border: 1px solid rgba(107, 33, 200, 0.4);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    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);
}

/* LOGO-URI */
.game-logo {
    width: 70%;
    height: 70%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: all 0.4s ease;
}

.game-card:hover .game-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5)) brightness(1.2);
}

/* Textul din iconiță - ascuns când avem logo */
.game-icon.has-logo .icon-text {
    display: none;
}

/* Pentru iconițele fără logo (dacă vrei să păstrezi unele) */
.game-icon:not(.has-logo) .icon-text {
    font-size: 2rem;
    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(90, 23, 179, 0.3);
    position: relative;
    z-index: 2;
}

/* CONTENT */
.game-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--moon-surface);
    text-shadow: 0 0 15px rgba(90, 23, 179, 0.25);
}

.game-content p {
    font-size: 1.05rem;
    color: var(--crater-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    text-shadow: 0 0 8px rgba(90, 23, 179, 0.15);
}

/* STATS */
.game-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.stat {
    font-size: 0.85rem;
    color: var(--moon-surface);
    background: rgba(90, 23, 179, 0.15);
    padding: 6px 14px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(107, 33, 200, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.stat:hover {
    background: rgba(90, 23, 179, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(90, 23, 179, 0.25);
}

/* Animatie de încărcare pentru logo-uri */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.game-logo {
    animation: logoFadeIn 0.6s ease-out;
}
/* ===== JOCURI ===== */
.games {
    padding: 120px 40px;
    position: relative;
    background: var(--gradient-midnight);
}

.games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 33, 200, 0.5), rgba(139, 92, 246, 0.5), rgba(107, 33, 200, 0.5), transparent);
}

.games-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.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(90, 23, 179, 0.4);
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lunar-violet), transparent);
    border-radius: 3px;
}

.section-sub {
    font-size: 1.25rem;
    color: var(--crater-gray);
    margin-bottom: 35px;
    opacity: 0.9;
    text-shadow: 0 0 12px rgba(90, 23, 179, 0.25);
}

/* GRID FLEXIBIL */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

@media (min-width: 1400px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .games {
        padding: 80px 20px;
    }
}

/* CARD-URI DE JOC */
.game-card {
    background: rgba(32, 32, 64, 0.25);
    border: 1px solid rgba(107, 33, 200, 0.35);
    border-radius: 28px;
    padding: 40px 30px;
    transition: all 0.5s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(90, 23, 179, 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(32, 32, 64, 0.35);
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.7), var(--glow-moon-purple);
}

/* ICONIȚĂ CU LOGO */
.game-icon {
    width: 90px;
    height: 90px;
    background: rgba(90, 23, 179, 0.2);
    border: 1px solid rgba(107, 33, 200, 0.4);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    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);
}

/* LOGO-URI */
.game-logo {
    width: 70%;
    height: 70%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: all 0.4s ease;
}

.game-card:hover .game-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5)) brightness(1.2);
}

/* Textul din iconiță - ascuns când avem logo */
.game-icon.has-logo .icon-text {
    display: none;
}

/* Pentru iconițele fără logo (dacă vrei să păstrezi unele) */
.game-icon:not(.has-logo) .icon-text {
    font-size: 2rem;
    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(90, 23, 179, 0.3);
    position: relative;
    z-index: 2;
}

/* CONTENT */
.game-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--moon-surface);
    text-shadow: 0 0 15px rgba(90, 23, 179, 0.25);
}

.game-content p {
    font-size: 1.05rem;
    color: var(--crater-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    text-shadow: 0 0 8px rgba(90, 23, 179, 0.15);
}

/* STATS */
.game-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.stat {
    font-size: 0.85rem;
    color: var(--moon-surface);
    background: rgba(90, 23, 179, 0.15);
    padding: 6px 14px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(107, 33, 200, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.stat:hover {
    background: rgba(90, 23, 179, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(90, 23, 179, 0.25);
}

/* ===== BADGE-URI CU ANIMAȚII ȘI FLOAT ===== */
.game-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 20;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 65px;
    justify-content: center;
    
    /* FLOAT ANIMAȚIE CARE MERGE */
    animation: badgeFloat 3s ease-in-out infinite;
}

/* Structura badge-ului */
.badge-icon {
    font-size: 0.9rem;
    display: inline-block;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* ANIMAȚIA DE FLOAT PRINCIPALĂ */
@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Badge Moon (purple theme) */
.moon-badge {
    background: rgba(139, 92, 246, 0.2);
    color: #C4B5FD;
    border-color: rgba(139, 92, 246, 0.3);
    animation: badgeFloat 3.5s ease-in-out infinite, moonGlow 4s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
                    0 0 15px rgba(139, 92, 246, 0.4);
    }
}

/* Badge Star (gold theme) */
.star-badge {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.25);
    animation: badgeFloat 3s ease-in-out infinite, starTwinkle 2s ease-in-out infinite;
    animation-delay: 0.2s;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
        filter: brightness(1.2);
    }
}

/* Badge Purple */
.purple-badge {
    background: rgba(168, 85, 247, 0.2);
    color: #D8B4FE;
    border-color: rgba(168, 85, 247, 0.3);
    animation: badgeFloat 3.2s ease-in-out infinite, purplePulse 3s ease-in-out infinite;
    animation-delay: 0.4s;
}

@keyframes purplePulse {
    0%, 100% {
        background: rgba(168, 85, 247, 0.2);
    }
    50% {
        background: rgba(168, 85, 247, 0.3);
    }
}

/* Badge Fire (red/orange) */
.fire-badge {
    background: rgba(255, 65, 108, 0.15);
    color: #FF9A9E;
    border-color: rgba(255, 65, 108, 0.25);
    animation: badgeFloat 2.8s ease-in-out infinite, fireFlicker 1.5s ease-in-out infinite;
    animation-delay: 0.6s;
}

@keyframes fireFlicker {
    0%, 100% {
        background: rgba(255, 65, 108, 0.15);
    }
    33% {
        background: rgba(255, 85, 85, 0.2);
    }
    66% {
        background: rgba(255, 120, 80, 0.18);
    }
}

/* Badge Rocket (blue) */
.rocket-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #93C5FD;
    border-color: rgba(59, 130, 246, 0.25);
    animation: rocketFloat 2s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

/* Badge Gamepad (green) */
.gamepad-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #86EFAC;
    border-color: rgba(34, 197, 94, 0.25);
    animation: badgeFloat 3.3s ease-in-out infinite, gamepadVibrate 2s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes gamepadVibrate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(1deg);
    }
    75% {
        transform: rotate(-1deg);
    }
}

/* Badge Planet (teal) */
.planet-badge {
    background: rgba(20, 184, 166, 0.15);
    color: #5EEAD4;
    border-color: rgba(20, 184, 166, 0.25);
    animation: planetFloat 4s ease-in-out infinite, planetGlow 5s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes planetFloat {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    33% {
        transform: translateY(-8px) rotate(120deg);
    }
    66% {
        transform: translateY(-4px) rotate(240deg);
    }
}

@keyframes planetGlow {
    0%, 100% {
        border-color: rgba(20, 184, 166, 0.25);
    }
    50% {
        border-color: rgba(20, 184, 166, 0.5);
    }
}

/* Badge Shield (indigo) */
.shield-badge {
    background: rgba(99, 102, 241, 0.15);
    color: #A5B4FC;
    border-color: rgba(99, 102, 241, 0.25);
    animation: badgeFloat 3.1s ease-in-out infinite, shieldPulse 3s ease-in-out infinite;
    animation-delay: 1.2s;
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* Badge Sword (pink) */
.sword-badge {
    background: rgba(236, 72, 153, 0.15);
    color: #F9A8D4;
    border-color: rgba(236, 72, 153, 0.25);
    animation: badgeFloat 2.9s ease-in-out infinite, swordSwing 2s ease-in-out infinite;
    animation-delay: 1.4s;
}

@keyframes swordSwing {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Badge Gun (orange) */
.gun-badge {
    background: rgba(249, 115, 22, 0.15);
    color: #FDBA74;
    border-color: rgba(249, 115, 22, 0.25);
    animation: badgeFloat 3.4s ease-in-out infinite;
    animation-delay: 1.6s;
}

/* Badge Detective (yellow) */
.detective-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #FDE68A;
    border-color: rgba(245, 158, 11, 0.25);
    animation: badgeFloat 3.2s ease-in-out infinite;
    animation-delay: 1.8s;
}

/* Badge Target (red) */
.target-badge {
    background: rgba(239, 68, 68, 0.15);
    color: #FCA5A5;
    border-color: rgba(239, 68, 68, 0.25);
    animation: badgeFloat 3s ease-in-out infinite;
    animation-delay: 2s;
}

/* Hover effects pentru badge-uri */
.game-card:hover .game-badge {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25),
                0 0 15px currentColor;
    z-index: 25;
}

/* Responsive pentru badge-uri */
@media (max-width: 768px) {
    .game-badge {
        top: 15px;
        right: 15px;
        padding: 5px 10px;
        font-size: 0.7rem;
        min-width: 60px;
        animation: mobileFloat 4s ease-in-out infinite;
    }
    
    .badge-icon {
        font-size: 0.8rem;
    }
    
    .badge-text {
        font-size: 0.65rem;
    }
    
    @keyframes mobileFloat {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-5px);
        }
    }
    
    /* Animations mai lente pe mobil */
    .moon-badge,
    .star-badge,
    .purple-badge,
    .fire-badge,
    .planet-badge {
        animation-duration: 4s;
    }
}

@media (max-width: 480px) {
    .game-badge {
        top: 12px;
        right: 12px;
        padding: 4px 8px;
        font-size: 0.65rem;
        min-width: 55px;
        gap: 3px;
    }
}

/* Pentru dispozitive care preferă animații reduse */
@media (prefers-reduced-motion: reduce) {
    .game-badge {
        animation: none !important;
    }
}
/* ASTA MERGE 100% - BAGĂ ÎN CSS */
.game-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 20;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 65px;
    justify-content: center;
    
    /* LINIA ASTEA FACE FLOAT */
    animation: floatEffect 3s ease-in-out infinite !important;
}

/* ANIMAȚIA CARE FACE FLOAT */
@keyframes floatEffect {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
/* ===== JOIN SECTION ===== */
.join {
    padding: 200px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-abyss);
}

.join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 33, 200, 0.5), rgba(139, 92, 246, 0.5), rgba(107, 33, 200, 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(90, 23, 179, 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(107, 33, 200, 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;
}

.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(90, 23, 179, 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(90, 23, 179, 0.25);
}

.join-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 22px 65px;
    background: rgba(90, 23, 179, 0.25);
    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(107, 33, 200, 0.4);
    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.12);
    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.18), transparent);
    transition: left 0.8s ease;
}

.join-button:hover {
    background: rgba(90, 23, 179, 0.35);
    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(90, 23, 179, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    padding: 110px 40px 60px;
    background: var(--gradient-gothic);
    border-top: 1px solid rgba(107, 33, 200, 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(107, 33, 200, 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(90, 23, 179, 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(90, 23, 179, 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(90, 23, 179, 0.25);
}

.footer-copyright {
    font-size: 0.98rem;
    color: var(--crater-gray);
    opacity: 0.7;
    text-shadow: 0 0 8px rgba(90, 23, 179, 0.15);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 45px;
    border-top: 1px solid rgba(107, 33, 200, 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(90, 23, 179, 0.15);
}

.bottom-year {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--moon-surface);
    opacity: 0.8;
    text-shadow: 0 0 12px rgba(90, 23, 179, 0.25);
}

/* ===== ANIMAȚII SUPLIMENTARE ===== */
@keyframes yearPulse {
    0% { opacity: 0.9; }
    100% { opacity: 1; }
}

@keyframes badgePulse {
    0% { box-shadow: 0 12px 35px rgba(90, 23, 179, 0.5), 0 0 25px rgba(107, 33, 200, 0.4); transform: scale(1); }
    50% { box-shadow: 0 18px 45px rgba(90, 23, 179, 0.7), 0 0 35px rgba(107, 33, 200, 0.6); transform: scale(1.06); }
    100% { box-shadow: 0 12px 35px rgba(90, 23, 179, 0.5), 0 0 25px rgba(107, 33, 200, 0.4); transform: scale(1); }
}

@keyframes iconFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

@keyframes joinBadgeFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-18px) rotate(1.5deg); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-highlight {
        font-size: 3.8rem;
    }
    
    .stats-container {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@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%;
    }
    
    .container {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-container {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .hero-graphic {
        height: 400px;
    }
    
    .orbital-system {
        width: 350px;
        height: 350px;
    }
    
    .orbit-ring {
        width: 280px;
        height: 280px;
    }
    
    .secondary-ring {
        width: 330px;
        height: 330px;
    }
    
    .about-container,
    .mission-container,
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 85px;
    }
    
    .about-left {
        position: relative;
        top: 0;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 250px;
        justify-content: center;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
        padding-top: 2rem;
    }
    
    .stat-item:not(:last-child)::after {
        display: block;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100px;
        height: 1px;
        margin: 1rem auto;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .section-tagline,
    .mission-title,
    .why-choose-title {
        font-size: 2rem;
    }
    
    .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;
    }
}

/* INC and the Moon Gaming Community */

/* ============================================
   IANN ABOUT SECTION
   ============================================ */
/* ============================================
   IANN ABOUT - REVISED VERSION
   ============================================ */

.iann-about {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 100%);
  color: #ffffff;
  padding: 80px 20px;
  font-family: 'Segoe UI', 'Inter', system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Centered Header */
.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.header-content {
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.15), 
    rgba(217, 70, 239, 0.15));
  color: #a78bfa;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.section-tag::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.6s;
}

.section-tag:hover::before {
  left: 100%;
}

.about-header h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: #f8fafc;
  margin-bottom: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.header-line {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.line-dot {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    #8b5cf6, 
    transparent);
  position: relative;
}

.line-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #d946ef;
  border-radius: 50%;
}

/* Content layout */
.about-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

/* Text section */
.about-text {
  flex: 1;
  max-width: 580px;
}

/* Intro section */
.intro-section {
  margin-bottom: 30px;
}

.greeting-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.wave-icon {
  font-size: 20px;
  animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

.greeting {
  font-size: 16px;
  color: #c4b5fd;
  margin: 0;
  font-weight: 500;
  letter-spacing: 1px;
}

.name {
  font-size: 38px;
  font-weight: 800;
  color: #f8fafc;
  margin: 0;
  line-height: 1.1;
}

.name-highlight {
  color: #8b5cf6;
  position: relative;
  display: inline-block;
}

.name-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, transparent);
  border-radius: 2px;
}

/* Description section */
.description-section {
  margin-bottom: 40px;
}

.text-block {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.text-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(139, 92, 246, 0.1);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.text-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0;
  flex: 1;
}

.text-block strong {
  color: #c4b5fd;
  font-weight: 600;
}

/* QUOTE BOX - MAI MIC */
.quote-box {
    background: rgba(139, 92, 246, 0.08);
    border-left: 3px solid #8b5cf6;
    padding: 10px 12px; /* Reduced padding */
    margin: 12px 0; /* Reduced margin */
    border-radius: 15px; /* Rounded border radius */
    position: relative;
    overflow: hidden;
    max-width: 1000px; /* Reduced max-width */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Added shadow */
}

.quote-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(139, 92, 246, 0.05) 50%, 
    transparent 70%);
  animation: shine 4s infinite linear;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.quote-decoration {
  margin-bottom: 5px;
}

.quote-mark {
  font-size: 20px;
  color: #8b5cf6;
  opacity: 0.5;
  font-family: Georgia, serif;
  line-height: 1;
  display: inline-block;
  margin-right: 5px;
}

.quote {
  font-size: 15px;
  font-style: italic;
  color: #c4b5fd;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  position: relative;
}

/* Action buttons */
.action-buttons {
  display: flex;
  gap: 18px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.action-btn {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.action-btn::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.6s;
}

.action-btn:hover::before {
  left: 100%;
}

.btn-icon {
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.action-btn:hover .btn-arrow {
  opacity: 1;
  transform: translateX(0);
}

.primary-action {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.secondary-action {
  background: rgba(30, 41, 59, 0.7);
  color: #c4b5fd;
  border-color: #8b5cf6;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.secondary-action:hover {
  background: rgba(139, 92, 246, 0.1);
  color: #f5f3ff;
  transform: translateY(-3px);
  border-color: #c4b5fd;
}

/* Photo section */
.about-photo {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.photo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.circle-photo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #1e1b4b;
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(139, 92, 246, 0.2);
  position: relative;
}

.photo-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
  filter: blur(12px);
  opacity: 0.3;
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { opacity: 0.2; }
  100% { opacity: 0.4; }
}

.circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-badge {
  background: linear-gradient(135deg, 
    rgba(30, 27, 75, 0.95), 
    rgba(15, 10, 41, 0.98));
  padding: 12px 25px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.photo-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.08), 
    transparent);
  animation: shineMove 4s ease-in-out infinite;
}

@keyframes shineMove {
  0% { left: -100%; }
  100% { left: 100%; }
}

.badge-icon {
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.badge-text {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.badge-title {
  font-size: 15px;
  font-weight: 800;
  color: #f5f3ff;
  line-height: 1.2;
}

.badge-subtitle {
  font-size: 12px;
  color: #c4b5fd;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1200px) {
  .about-content {
    gap: 40px;
  }
  
  .circle-photo {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 50px;
  }
  
  .about-text {
    max-width: 700px;
    text-align: center;
  }
  
  .text-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  
  .action-buttons {
    justify-content: center;
  }
  
  .greeting-line {
    justify-content: center;
  }
  
  .quote-box {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .iann-about {
    padding: 60px 20px;
  }
  
  .about-header h1 {
    font-size: 32px;
  }
  
  .name {
    font-size: 34px;
  }
  
  .circle-photo {
    width: 280px;
    height: 280px;
  }
  
  .quote-box {
    padding: 16px 20px;
    margin: 20px 0;
  }
  
  .quote {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .about-header h1 {
    font-size: 28px;
  }
  
  .name {
    font-size: 30px;
  }
  
  .text-block p {
    font-size: 14px;
  }
  
  .quote {
    font-size: 14px;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .action-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 12px 24px;
  }
  
  .circle-photo {
    width: 260px;
    height: 260px;
    border-width: 8px;
  }
  
  .photo-badge {
    padding: 10px 20px;
  }
  
  .badge-title {
    font-size: 14px;
  }
  
  .badge-subtitle {
    font-size: 11px;
  }
}








/* ============================================
   IANN TEAM SECTION
   ============================================ */

.iann-team {
  background: linear-gradient(135deg, #0f0a29 0%, #1a0a3a 100%);
  color: #ffffff;
  padding: 100px 40px;
  font-family: 'Segoe UI', 'Inter', system-ui, sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.iann-team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #8b5cf6 25%, 
    #d946ef 50%, 
    #8b5cf6 75%, 
    transparent 100%);
}

.team-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.team-header-section {
  text-align: center;
  margin-bottom: 70px;
}

.team-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(217, 70, 239, 0.2));
  color: #c4b5fd;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.team-main-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  color: transparent;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, #f5f3ff, #c4b5fd, #d946ef);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.team-subtitle-text {
  font-size: 19px;
  color: #a78bfa;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.team-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.team-member-card {
  background: linear-gradient(145deg, rgba(30, 27, 75, 0.8), rgba(15, 10, 41, 0.9));
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(15px);
}

.team-member-card:hover {
  transform: translateY(-12px);
  border-color: #8b5cf6;
  box-shadow: 
    0 30px 60px rgba(139, 92, 246, 0.35),
    0 0 120px rgba(139, 92, 246, 0.15);
}

.team-member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #8b5cf6, #d946ef, #8b5cf6);
  border-radius: 24px 24px 0 0;
  z-index: 2;
}

.member-photo-container {
  position: relative;
  padding: 30px 30px 0;
}

.member-image-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(139, 92, 246, 0.3);
  box-shadow: 
    0 15px 35px rgba(139, 92, 246, 0.25),
    inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-member-card:hover .member-photo {
  transform: scale(1.08);
}

/* .member-status {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #1e1b4b;
} */

.member-status.online {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.member-status.busy {
  background: #f59e0b;
  box-shadow: 0 0 10px #f59e0b;
}

.member-role-badge {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1e1b4b, #0f0a29);
  padding: 12px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #8b5cf6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.role-icon {
  font-size: 18px;
}

.role-text {
  font-size: 14px;
  font-weight: 700;
  color: #c4b5fd;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-info {
  padding: 50px 30px 30px;
  text-align: center;
}

.member-name {
  font-size: 28px;
  font-weight: 800;
  color: #f5f3ff;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.member-bio {
  font-size: 16px;
  color: #ddd6fe;
  line-height: 1.7;
  margin-bottom: 25px;
  min-height: 80px;
}

.member-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 25px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 900;
  color: #c4b5fd;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
}

.stat-label {
  font-size: 13px;
  color: #a78bfa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.member-skills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.skill-pill {
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.skill-pill:hover {
  background: rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.team-join-cta {
  background: linear-gradient(135deg, 
    rgba(30, 27, 75, 0.7), 
    rgba(15, 10, 41, 0.9));
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  border: 2px dashed rgba(139, 92, 246, 0.4);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.team-join-cta::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(139, 92, 246, 0.1) 50%, 
    transparent 70%);
  z-index: -1;
  border-radius: inherit;
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 900;
  color: #f5f3ff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
}

.cta-text {
  font-size: 18px;
  color: #c4b5fd;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  padding: 18px 45px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
  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.2), 
    transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.7);
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.cta-button i {
  font-size: 20px;
}

/* RESPONSIVE FOR TEAM */
@media (max-width: 1200px) {
  .team-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .team-members-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .team-main-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .iann-team {
    padding: 70px 15px;
  }
  
  .team-main-title {
    font-size: 34px;
  }
  
  .team-subtitle-text {
    font-size: 17px;
  }
  
  .member-image-wrapper {
    width: 160px;
    height: 160px;
  }
  
  .cta-title {
    font-size: 30px;
  }
  
  .team-join-cta {
    padding: 50px 25px;
  }
}

@media (max-width: 480px) {
  .team-main-title {
    font-size: 28px;
  }
  
  .team-label {
    padding: 10px 25px;
    font-size: 14px;
  }
  
  .member-info {
    padding: 50px 20px 30px;
  }
  
  .member-name {
    font-size: 24px;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
  
  .member-stats {
    gap: 20px;
  }
}

/* ===== ASCUNDERE NAVBAR PE MOBIL ===== */
@media (max-width: 768px) {
    .navbar {
        display: none !important;
    }
    
    .hero-section {
        padding-top: 40px; /* Reduce spațiul de sus când navbar-ul e ascuns */
    }
}

/* ===== FIX COMPLET PENTRU TELEFON - VERSIUNE FINALĂ ===== */

/* 1. SCROLL - BLOCHERE ORIZONTALĂ, PERMITE VERTICALĂ */
@media (max-width: 768px) {
    html {
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
        overflow-y: auto;
        width: 100%;
        position: relative;
    }
}

/* 2. NAVBAR MAI MIC */
@media (max-width: 768px) {
    .navbar {
        width: 96%;
        padding: 10px 20px;
        top: 15px;
        border-radius: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-section {
        padding-top: 80px;
    }
}

/* 3. CONTAINERE - SĂ NU DEPĂȘEASCĂ ECRANUL */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* GATA - NU ADAUGA MAI MULT COD DECÂT ACESTA */