.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video, .hero-fallback-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-fallback-mobile{
        display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6), rgba(123, 44, 191, 0.3));
    z-index: 2;
}

.hero-video{
    filter: brightness(0.3);
}

.hero-fallback-mobile{
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title .word {
    display: block;
}

.hero-title .word:first-child {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    animation: bounce 2s infinite;
    z-index: 4;
}

.hero-scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: var(--accent-orange);
}

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

@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    .hero-fallback-mobile{
        display: block;
    }

    .hero-video{
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-scroll-indicator {
        display: none;
    }
}