/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(131, 56, 236, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(58, 134, 255, 0.1) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: heroGradientMove 15s ease-in-out infinite;
}

@keyframes heroGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.3) 0%, rgba(10, 10, 15, 0.7) 70%, var(--bg-primary) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    padding-top: 60px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-pink);
    padding: 8px 20px;
    border: 1px solid rgba(255, 0, 110, 0.3);
    border-radius: 30px;
    background: rgba(255, 0, 110, 0.08);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease 0.5s both;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-title-line {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 8px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-title-vi {
    display: block;
    font-size: clamp(5rem, 15vw, 12rem);
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 40px rgba(255, 0, 110, 0.4));
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(255, 0, 110, 0.4)); }
    50% { filter: drop-shadow(0 0 60px rgba(131, 56, 236, 0.6)); }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 12px;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-cyan);
    letter-spacing: 2px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 1s both;
}

/* Countdown */
.countdown-container {
    margin: 40px 0;
    animation: fadeInUp 1s ease 1.1s both;
}

.countdown-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 24px;
    min-width: 100px;
    text-align: center;
    transition: var(--transition-smooth);
}

.countdown-item:hover {
    border-color: var(--accent-pink);
    box-shadow: var(--glow-pink);
    transform: translateY(-2px);
}

.countdown-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.countdown-unit {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}

.countdown-message {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-pink);
    margin-top: 20px;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 1s ease 1.3s both;
}

/* Mouse Indicator */
.hero-mouse-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 1.5s both;
    z-index: 3;
}

.mouse-wheel {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-pink);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.hero-mouse-indicator span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
