* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #080808;
    color: #fff;
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden;
}

.topbar {
    width: 100%;
    height: 72px;
    padding: 0 48px;
    position: fixed;
    top: 0;
    z-index: 99;
    background: rgba(8,8,8,.72);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo {
    font-size: 30px;
    font-weight: 950;
    margin-right: 42px;
}

.logo span {
    color: #ff003c;
}

.topbar nav {
    display: flex;
    gap: 26px;
}

.topbar nav a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.btn-assinar {
    margin-left: auto;
    background: #ffd500;
    color: #000;
    padding: 13px 25px;
    border-radius: 10px;
    font-weight: 900;
    text-decoration: none;
}

.hero {
    height: 660px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: 1s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, #080808 0%, rgba(8,8,8,.83) 32%, rgba(8,8,8,.18) 100%),
        linear-gradient(to top, #080808 0%, transparent 50%);
}

.hero-content {
    position: absolute;
    left: 6%;
    bottom: 105px;
    max-width: 640px;
    z-index: 3;
}

.tag {
    display: inline-block;
    background: #ff003c;
    padding: 9px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: clamp(48px, 7vw, 88px);
    line-height: .92;
    margin-bottom: 12px;
}

.hero-content h3 {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 26px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 900;
}

.btn-primary {
    background: #ff003c;
    color: #fff;
    box-shadow: 0 20px 45px rgba(255,0,60,.35);
}

.btn-secondary {
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
}

.hero-dots {
    position: absolute;
    bottom: 34px;
    left: 6%;
    display: flex;
    gap: 9px;
    z-index: 5;
}

.hero-dots button {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 10px;
    background: rgba(255,255,255,.35);
}

.hero-dots button.active {
    background: #ff003c;
}

.premium-banner {
    margin: -45px 48px 35px;
    position: relative;
    z-index: 20;
    background: linear-gradient(135deg, #24134d, #10102d, #300014);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    padding: 28px 34px;
    display: flex;
    align-items: center;
    box-shadow: 0 25px 70px rgba(0,0,0,.5);
}

.premium-banner span {
    color: #ffd500;
    font-weight: 900;
}

.premium-banner h2 {
    margin-top: 8px;
    font-size: 24px;
}

.premium-banner a {
    margin-left: auto;
    background: #ffd500;
    color: #000;
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
}

.content {
    padding: 0 48px 70px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.section-head h2,
.title {
    font-size: 27px;
    margin: 30px 0 18px;
}

.arrows button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.video-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 25px;
}

.video-carousel::-webkit-scrollbar,
.catalog-row::-webkit-scrollbar {
    height: 8px;
}

.video-carousel::-webkit-scrollbar-thumb,
.catalog-row::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 20px;
}

.video-card {
    min-width: 360px;
    height: 205px;
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: .3s;
    border: 1px solid rgba(255,255,255,.08);
}

.video-card:hover {
    transform: scale(1.05);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.9), transparent 60%);
}

.video-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
}

.video-info h3 {
    font-size: 19px;
}

.video-info p {
    color: #ccc;
    font-size: 13px;
    margin-top: 4px;
}

.catalog-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 10px 0 28px;
}

.poster-card {
    min-width: 210px;
    height: 315px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: #151515;
    transition: .3s;
    cursor: pointer;
}

.poster-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-layer {
    position: absolute;
    inset: 0;
    padding: 18px;
    background: linear-gradient(to top, #000 0%, transparent 65%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.poster-layer h3 {
    font-size: 18px;
}

.poster-layer p {
    font-size: 13px;
    color: #ccc;
    margin: 6px 0 12px;
}

.poster-layer a {
    background: #ff003c;
    color: #fff;
    padding: 10px 14px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 900;
    text-align: center;
}

@media(max-width: 768px) {
    .topbar {
        padding: 0 18px;
    }

    .topbar nav {
        display: none;
    }

    .btn-assinar {
        padding: 10px 15px;
        font-size: 13px;
    }

    .hero {
        height: 560px;
    }

    .hero-content {
        left: 22px;
        right: 22px;
        bottom: 90px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .premium-banner {
        margin: -35px 18px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .premium-banner a {
        margin-left: 0;
    }

    .content {
        padding: 0 18px 50px;
    }

    .video-card {
        min-width: 285px;
        height: 170px;
    }

    .poster-card {
        min-width: 155px;
        height: 235px;
    }
}