.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #020005;
}

.hero-bg {
    position: absolute;
    inset: 0;

    background-image: url("/assets/images/hero-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2, 0, 5, 0.96) 0%,
            rgba(2, 0, 5, 0.70) 38%,
            rgba(2, 0, 5, 0.25) 70%,
            rgba(2, 0, 5, 0.48) 100%
        ),
        linear-gradient(
            0deg,
            rgba(2, 0, 5, 0.96) 0%,
            transparent 38%
        );
}

.hero-content {
    position: relative;

    width: min(1400px, 92%);

    margin: 0 auto;
    padding-top: 76px;

    z-index: 2;
}

.hero h1 {
    margin: 0 0 22px;

    font-family: "Rajdhani", sans-serif;

    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 700;

    line-height: 0.78;
    letter-spacing: -5px;
}

.hero h1 span {
    display: block;
}

.hero h1 .fds1 {
    color: #ffffff;
}

.hero h1 .universe {
    color: #9d00ff;

    text-shadow:
        0 0 20px rgba(157, 0, 255, 0.8),
        0 0 50px rgba(157, 0, 255, 0.4);
}

.hero h2 {
    max-width: 780px;

    margin: 0 0 22px;

    color: #ffffff;

    font-family: "Rajdhani", sans-serif;

    font-size: clamp(2rem, 4vw, 4.5rem);
    font-weight: 700;

    line-height: 0.95;
}

.hero h2 span {
    color: #9d00ff;
}

.hero p {
    max-width: 680px;

    margin: 0 0 32px;

    color: #aaa4b7;

    font-family: "Montserrat", sans-serif;

    font-size: 0.95rem;

    line-height: 1.8;
}

.hero-actions {
    display: flex;

    gap: 14px;

    margin-bottom: 42px;
}

.btn {
    min-width: 180px;

    padding: 15px 24px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    font-family: "Rajdhani", sans-serif;

    font-size: 0.9rem;
    font-weight: 700;

    letter-spacing: 1px;

    text-decoration: none;

    border: 1px solid transparent;

    transition: 0.25s ease;
}

.btn-primary {
    color: #ffffff;

    background: #9d00ff;

    box-shadow:
        0 0 25px rgba(157, 0, 255, 0.35);
}

.btn-primary:hover {
    background: #b73cff;

    box-shadow:
        0 0 35px rgba(157, 0, 255, 0.65);
}

.btn-outline {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.03);

    border-color: rgba(255, 255, 255, 0.22);
}

.btn-outline:hover {
    border-color: #9d00ff;

    background: rgba(157, 0, 255, 0.12);
}

.streaming-title {
    margin-bottom: 12px;

    color: #716a7c;

    font-family: "Montserrat", sans-serif;

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 2px;
}

.streaming-list {
    display: flex;

    gap: 24px;
}

.streaming-list a {
    color: #ffffff;

    font-family: "Rajdhani", sans-serif;

    font-size: 0.9rem;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.25s ease;
}

.streaming-list a span {
    color: #9d00ff;
}

.streaming-list a:hover {
    color: #9d00ff;
}

@media (max-width: 700px) {

    .hero {
        min-height: 900px;
    }

    .hero-content {
        padding-top: 110px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-actions,
    .streaming-list {
        flex-direction: column;
    }

    .hero-actions {
        max-width: 100%;
    }

    .btn {
        width: 100%;
    }

}