@font-face {
    font-family: 'Netflix Sans';
    src: url('/fonts/NetflixSans-Regular.woff2') format('woff2'),
        url('/fonts/NetflixSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Netflix Sans';
    src: url('/fonts/NetflixSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #e50914;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff1e26;
}


body {
    background-color: #000;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Netflix Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}


.main {
    background-image: url(assets/bg.jpg);
    height: 100vh;
    width: 100%;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: max(1300px, 100vw);
    min-height: 500px;
}

.main .box {
    background-color: black;
    opacity: 0.78;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


nav {
    max-width: 90%;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: space-between;
    height: 70px;
    padding-top: 10px;
    position: relative;
    z-index: 20;
}

.logo {
    width: 150px;
    position: relative;
    z-index: 10;
}

.button {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 10;
}


.btn-lan {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    padding: 7px 26px 7px 13px;
    font-size: 14px;
    gap: 8px;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    margin-right: 8px;
}

.btn-lan::after {
    content: "▼";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    color: white;
    pointer-events: none;
}

.btn-lan img {
    width: 16px;
    flex-shrink: 0;
}

.btn-sel {
    background: transparent;
    color: white;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'Netflix Sans', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    max-width: 80px;
}

.btn-sel option {
    background: #141414;
    color: white;
}


.btn-in {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 17px;
    font-size: 14px;
    font-weight: 700;
    background-color: #e50914;
    color: white;
    line-height: 1;
    font-family: "Netflix Sans", "Helvetica Neue", sans-serif;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-in:hover {
    background-color: #c40812;
}


.text {
    color: white;
    display: flex;
    align-items: center;
    z-index: 1;
    flex-direction: column;
    position: relative;
    font-family: 'Netflix Sans', system-ui, sans-serif;
    padding-top: 140px;
    padding-bottom: 80px;
}


.text>span:nth-child(1) {
    font-weight: 900;
    font-size: 56px;
    line-height: 1.1;
    text-align: center;
}


.text>span:nth-child(2) {
    font-weight: 900;
    font-size: 56px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 16px;
}


.text>span:nth-child(3) {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 8px;
}


.text>span:nth-child(4) {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #eee;
}


.mail {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.email {
    padding: 17px 16px;
    border: 1px solid rgba(128, 128, 128, 0.7);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.45);
    width: 380px;
    max-width: 100%;
    font-family: 'Netflix Sans', sans-serif;
    font-size: 16px;
    color: white;
    outline: none;
    transition: border-color 0.2s;
}

.email:focus {
    border-color: white;
}

.email::placeholder {
    color: #8c8c8c;
    font-size: 16px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 17px 22px;
    font-size: 22px;
    font-weight: 500;
    background-color: #e50914;
    color: white;
    font-family: "Netflix Sans", sans-serif;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.btn:hover {
    background-color: #c40812;
}

.arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 4px;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}


.sep {
    position: relative;
    height: 10px;
    margin: 0;
    z-index: 5;
    overflow: visible;
}

.sep::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
    width: 160%;
    height: 360px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 12%,
            #03000f 0%,
            #000 55%);
    border-top: 3px solid #d11654;
    clip-path: inset(0 0 76% 0);
}


.trand {
    background: #000;
    padding: 28px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.trand-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    margin-bottom: 18px;
}

.trand-title {
    color: white;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
}

.trand-filters {
    display: flex;
    gap: 8px;
    align-items: center;
}

.trand-select {
    background: #141414;
    color: white;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 7px 30px 7px 12px;
    font-size: 14px;
    font-family: 'Netflix Sans', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 9px center;
    background-size: 9px;
    outline: none;
    transition: border-color 0.2s;
}

.trand-select:hover,
.trand-select:focus {
    border-color: #fff;
}


.list-wrap {
    position: relative;
    padding: 0 56px;
}

.list {
    display: flex;
    gap: 4px;
    overflow-x: scroll;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    cursor: grab;
    padding-bottom: 20px;
    padding-left: 4px;
    padding-right: 4px;
}

.list::-webkit-scrollbar {
    display: none;
}

.list:active {
    cursor: grabbing;
}


.img {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    transition: transform 0.25s;
    padding-left: 60px;
    /* space for rank number */
}

.img:hover {
    transform: scale(1.06);
    z-index: 10;
}

.img:hover img {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}


.img img {
    width: 165px;
    height: 235px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}


.rank-num {
    position: absolute;
    left: -8px;
    bottom: -8px;
    font-size: 160px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 5px #555;
    line-height: 1;
    z-index: 1;
    user-select: none;
    pointer-events: none;
    letter-spacing: -10px;
    font-style: italic;
}


.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    background: rgba(20, 20, 20, 0.8);
    border: none;
    color: white;
    font-size: 36px;
    width: 48px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background 0.2s, opacity 0.3s;
    border-radius: 4px;
    padding: 0;
    line-height: 1;
}

.slider-btn:hover {
    background: rgba(60, 60, 60, 0.95);
}

.slider-prev {
    left: 4px;
    transform: translateY(-60%) rotate(180deg);
    opacity: 0;
}

.slider-next {
    right: 4px;
}


.reasons {
    background-color: #000;
    padding: 48px 56px 56px;
    border-top: 8px solid #232323;
}

.reasons-title {
    color: white;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Netflix Sans', sans-serif;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.reason-card {
    background: linear-gradient(160deg, #1b1033 0%, #1a1040 40%, #20153e 70%, #1f1040 100%);
    border-radius: 12px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    transition: transform 0.25s;
}

.reason-card:hover {
    transform: scale(1.03);
}

.reason-card-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    font-family: 'Netflix Sans', sans-serif;
}

.reason-card-desc {
    color: #d2d2d2;
    font-size: 15px;
    line-height: 1.5;
    font-family: 'Netflix Sans', sans-serif;
}

.reason-icon {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.reason-svg {
    width: 48px;
    height: 48px;
    color: white;
}


#reason-tv .reason-svg {
    color: #c882e0;
}

#reason-download .reason-svg {
    color: #c882e0;
}

#reason-everywhere .reason-svg {
    color: #c882e0;
}

#reason-kids .reason-svg {
    color: #ff6b9d;
}


.sep3 {
    height: 8px;
    background-color: #232323;
    width: 100%;
}


.faq {
    background-color: #000;
    padding: 56px 56px 56px;
    border-top: 8px solid #232323;
}

.faq-title {
    color: white;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    font-family: 'Netflix Sans', sans-serif;
}

.faq-list {
    max-width: 815px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background-color: #2d2d2d;
}

.faq-question {
    width: 100%;
    background: #2d2d2d;
    color: white;
    border: none;
    border-bottom: 2px solid #000;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Netflix Sans', sans-serif;
    text-align: left;
    transition: background-color 0.2s;
    gap: 20px;
    line-height: 1.4;
}

.faq-question:hover {
    background-color: #3a3a3a;
}

.faq-icon {
    font-size: 30px;
    font-weight: 200;
    line-height: 1;
    flex-shrink: 0;
    color: white;
    transition: transform 0.35s ease;
    display: inline-block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
    background-color: #2d2d2d;
}

.faq-answer p {
    color: white;
    font-size: 18px;
    line-height: 1.7;
    padding: 20px 24px;
    font-family: 'Netflix Sans', sans-serif;
    border-top: 2px solid #000;
}

.faq-answer p+p {
    border-top: none;
    padding-top: 0;
}


.faq-cta {
    max-width: 815px;
    margin: 40px auto 0;
    text-align: center;
}

.faq-cta-text {
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 16px;
    font-family: 'Netflix Sans', sans-serif;
}


.footer {
    background-color: #000;
    padding: 56px 56px 40px;
    border-top: 8px solid #232323;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-phone {
    color: #737373;
    font-size: 16px;
    font-family: 'Netflix Sans', sans-serif;
    margin-bottom: 28px;
}

.footer-phone-link {
    color: #737373;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-phone-link:hover {
    color: #e5e5e5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    color: #737373;
    font-size: 13px;
    font-family: 'Netflix Sans', sans-serif;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}

.footer-link:hover {
    color: #e5e5e5;
    text-decoration: underline;
}

.footer-lang {
    margin-bottom: 20px;
}

.footer-btn-lan {
    margin-right: 0;
}

.footer-location {
    color: #737373;
    font-size: 13px;
    font-family: 'Netflix Sans', sans-serif;
    margin-top: 12px;
}


/* ════════════════════════════════
   RESPONSIVE — 1200px (large tablets / small laptops)
   ════════════════════════════════ */
@media (max-width: 1200px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trand-nav,
    .list-wrap,
    .reasons,
    .faq,
    .footer {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* ════════════════════════════════
   RESPONSIVE — 1024px (tablets landscape)
   ════════════════════════════════ */
@media (max-width: 1024px) {

    .text>span:nth-child(1),
    .text>span:nth-child(2) {
        font-size: 46px;
    }

    .text>span:nth-child(3) {
        font-size: 20px;
    }

    .text>span:nth-child(4) {
        font-size: 17px;
    }

    .reasons-title,
    .faq-title {
        font-size: 26px;
    }

    .reason-card-title {
        font-size: 18px;
    }

    .rank-num {
        font-size: 130px;
    }

    .img img {
        width: 145px;
        height: 205px;
    }
}

/* ════════════════════════════════
   RESPONSIVE — 900px (tablets portrait)
   ════════════════════════════════ */
@media (max-width: 900px) {

    .trand-nav,
    .list-wrap,
    .reasons,
    .faq,
    .footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .reasons-title,
    .faq-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 18px;
        padding: 18px 20px;
    }

    .faq-answer p {
        font-size: 16px;
        padding: 16px 20px;
    }

    .footer::before {
        left: 24px;
        right: 24px;
    }
}

/* ════════════════════════════════
   RESPONSIVE — 768px (mobile landscape / small tablets)
   ════════════════════════════════ */
@media (max-width: 768px) {
    nav {
        max-width: 94%;
        height: 56px;
        padding-top: 6px;
    }

    .logo {
        width: 100px;
    }

    .btn-lan {
        padding: 6px 24px 6px 10px;
        font-size: 13px;
    }

    .btn-sel {
        font-size: 13px;
        max-width: 70px;
    }

    .btn-in {
        padding: 7px 13px;
        font-size: 13px;
    }

    /* Hero */
    .main {
        background-size: cover;
        min-height: 480px;
    }

    .text {
        padding-top: 100px;
        padding-bottom: 60px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .text>span:nth-child(1),
    .text>span:nth-child(2) {
        font-size: 32px;
    }

    .text>span:nth-child(3) {
        font-size: 17px;
    }

    .text>span:nth-child(4) {
        font-size: 14px;
        padding: 0 8px;
    }

    .mail {
        flex-direction: column;
        padding: 16px 8px 0;
        align-items: stretch;
        gap: 8px;
    }

    .email {
        width: 100%;
        font-size: 15px;
        padding: 14px 14px;
    }

    .btn {
        width: 100%;
        font-size: 17px;
        padding: 14px 20px;
        justify-content: center;
    }

    /* Trending */
    .rank-num {
        font-size: 100px;
        letter-spacing: -8px;
    }

    .img img {
        width: 115px;
        height: 162px;
    }

    .img {
        padding-left: 46px;
    }

    .card-overlay {
        inset: 0 0 0 46px;
    }

    .slider-btn {
        width: 38px;
        height: 80px;
        font-size: 28px;
    }

    /* Reasons */
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reasons-title,
    .faq-title {
        font-size: 22px;
    }

    .reason-card {
        min-height: 180px;
        padding: 20px 18px 18px;
    }

    .reason-card-title {
        font-size: 17px;
    }

    .reason-card-desc {
        font-size: 14px;
    }

    .reason-svg {
        width: 40px;
        height: 40px;
    }

    /* FAQ */
    .faq {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .faq-question {
        font-size: 16px;
        padding: 16px 18px;
    }

    .faq-icon {
        font-size: 24px;
    }

    .faq-answer p {
        font-size: 15px;
        padding: 14px 18px;
    }

    .faq-cta-text {
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding-top: 40px;
        padding-bottom: 28px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer::before {
        left: 24px;
        right: 24px;
    }

    /* Splash intro */
    #splash-n-solo {
        font-size: 140px;
    }

    .sl {
        font-size: 90px;
    }
}

/* ════════════════════════════════
   RESPONSIVE — 480px (mobile portrait)
   ════════════════════════════════ */
@media (max-width: 480px) {
    nav {
        max-width: 96%;
    }

    .logo {
        width: 80px;
    }

    /* Hide language button text on very small screens */
    .btn-lan .btn-sel {
        max-width: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0;
    }

    .btn-lan {
        padding: 6px 10px;
        gap: 0;
        margin-right: 4px;
    }

    /* Hero */
    .main {
        min-height: 420px;
    }

    .text {
        padding-top: 80px;
        padding-bottom: 48px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .text>span:nth-child(1),
    .text>span:nth-child(2) {
        font-size: 26px;
    }

    .text>span:nth-child(3) {
        font-size: 15px;
    }

    .text>span:nth-child(4) {
        font-size: 13px;
        padding: 0;
    }

    .mail {
        padding: 12px 0 0;
    }

    .email {
        padding: 13px 12px;
        font-size: 14px;
    }

    .btn {
        font-size: 16px;
        padding: 13px 16px;
    }

    /* Trending */
    .trand-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-bottom: 4px;
    }

    .trand-title {
        font-size: 18px;
    }

    .trand-filters {
        width: 100%;
        justify-content: flex-start;
    }

    .trand-select {
        font-size: 13px;
        padding: 6px 26px 6px 10px;
    }

    .rank-num {
        font-size: 80px;
        letter-spacing: -6px;
    }

    .img img {
        width: 100px;
        height: 142px;
    }

    .img {
        padding-left: 38px;
    }

    .card-overlay {
        inset: 0 0 0 38px;
    }

    .slider-btn {
        width: 32px;
        height: 64px;
        font-size: 22px;
    }

    .list-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .trand-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Reasons */
    .reasons {
        padding: 32px 16px 36px;
    }

    .reasons-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .reason-card {
        min-height: 160px;
        padding: 18px 16px 16px;
    }

    .reason-card-title {
        font-size: 16px;
    }

    .reason-card-desc {
        font-size: 13px;
    }

    .reason-svg {
        width: 36px;
        height: 36px;
    }

    /* FAQ */
    .faq {
        padding: 32px 16px 36px;
    }

    .faq-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .faq-question {
        font-size: 15px;
        padding: 14px 16px;
        gap: 12px;
    }

    .faq-icon {
        font-size: 22px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 12px 16px;
        line-height: 1.6;
    }

    .faq-cta {
        margin-top: 28px;
    }

    .faq-cta-text {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 32px 16px 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col {
        gap: 12px;
    }

    .footer-phone {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-link {
        font-size: 12px;
    }

    .footer::before {
        left: 16px;
        right: 16px;
    }

    /* Splash intro */
    #splash-n-solo {
        font-size: 110px;
    }

    .sl {
        font-size: 70px;
    }

    #splash-line {
        height: 3px;
    }
}

/* ════════════════════════════════
   RESPONSIVE — 360px (small phones)
   ════════════════════════════════ */
@media (max-width: 360px) {
    .logo {
        width: 72px;
    }

    .btn-in {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* Hero */
    .text>span:nth-child(1),
    .text>span:nth-child(2) {
        font-size: 22px;
    }

    .text>span:nth-child(3) {
        font-size: 13px;
    }

    .text>span:nth-child(4) {
        font-size: 12px;
    }

    .email {
        padding: 11px 10px;
        font-size: 13px;
    }

    .btn {
        font-size: 14px;
        padding: 11px 12px;
    }

    /* Trending */
    .rank-num {
        font-size: 65px;
        letter-spacing: -4px;
    }

    .img img {
        width: 85px;
        height: 122px;
    }

    .img {
        padding-left: 30px;
    }

    .card-overlay {
        inset: 0 0 0 30px;
    }

    .slider-btn {
        width: 26px;
        height: 52px;
        font-size: 18px;
    }

    /* Reasons */
    .reason-card {
        min-height: 140px;
        padding: 14px 12px 12px;
    }

    .reason-card-title {
        font-size: 15px;
    }

    .reason-svg {
        width: 30px;
        height: 30px;
    }

    /* FAQ */
    .faq-question {
        font-size: 14px;
        padding: 12px 14px;
    }

    .faq-answer p {
        font-size: 13px;
        padding: 10px 14px;
    }

    /* Splash intro */
    #splash-n-solo {
        font-size: 90px;
    }

    .sl {
        font-size: 56px;
    }
}

/* ════════════════════════════════
   PREMIUM NETFLIX INTRO SPLASH
   ════════════════════════════════ */
#splash {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.95s cubic-bezier(.4, 0, .2, 1);
}

#splash.splash-out {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* ─── PHASE 1: Solo N booms up, centered ─── */
#splash-n-solo {
    position: absolute;
    font-size: 200px;
    font-weight: 900;
    font-family: 'Netflix Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: #E50914;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    animation: nBoomIn 0.9s cubic-bezier(.16, 1, .3, 1) 0.1s both;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 3;
}

/* ─── PHASE 2: Full word letter-by-letter ─── */
#splash-word {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(26px);
    transition: opacity 0.6s cubic-bezier(.22, 1, .36, 1), transform 0.6s cubic-bezier(.22, 1, .36, 1);
}

#splash-letters {
    display: flex;
    align-items: center;
    line-height: 1;
}

/* Each letter — all start invisible, stamped in by JS */
.sl {
    display: inline-block;
    font-size: 130px;
    font-weight: 900;
    font-family: 'Netflix Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: #E50914;
    opacity: 0;
    letter-spacing: 2px;
}

/* ─── Red underline sweep ─── */
#splash-line {
    height: 4px;
    width: 0%;
    align-self: stretch;
    margin-top: 12px;
    background: #E50914;
    border-radius: 2px;
    transition: width 0.65s cubic-bezier(.4, 0, .2, 1);
}

/* ════ KEYFRAMES ════ */

/* Solo N entrance — pure CSS, no JS needed */
@keyframes nBoomIn {
    0% {
        opacity: 0;
        transform: scale(0.25);
    }

    55% {
        opacity: 1;
        transform: scale(1.16);
    }

    74% {
        transform: scale(0.93);
    }

    88% {
        transform: scale(1.04);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Per-letter stamp — elastic blur-drop bounce */
@keyframes letterStamp {
    0% {
        opacity: 0;
        transform: translateY(-24px) scale(1.4);
        filter: blur(9px);
    }

    36% {
        opacity: 1;
        transform: translateY(6px) scale(0.91);
        filter: blur(0px);
    }

    58% {
        transform: translateY(-4px) scale(1.05);
    }

    78% {
        transform: translateY(1px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Container glow — animates filter (NOT text-shadow/opacity) so letters never disappear */
@keyframes containerGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.5));
    }

    50% {
        filter:
            drop-shadow(0 0 30px rgba(229, 9, 20, 1)) drop-shadow(0 0 70px rgba(229, 9, 20, 0.65)) drop-shadow(0 0 120px rgba(229, 9, 20, 0.3));
    }
}

#scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #e50914, #ff6b6b);
    z-index: 9999;
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.7);
    transition: width 0.1s linear;
    pointer-events: none;
}

.main::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 35%, transparent 55%, rgba(0, 0, 0, 0.9) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.logo {
    filter: drop-shadow(0 2px 6px rgba(229, 9, 20, 0.3));
    transition: filter 0.3s;
}

.logo:hover {
    filter: drop-shadow(0 2px 14px rgba(229, 9, 20, 0.65));
}

.btn-in {
    position: relative;
    overflow: hidden;
}

.btn-in::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.4s;
}

.btn-in:hover::after {
    left: 160%;
}

.hero-line {
    opacity: 0;
    transform: translateY(26px);
    animation: heroUp 0.75s cubic-bezier(.22, 1, .36, 1) forwards;
}

.text>.hero-line:nth-child(1) {
    animation-delay: 4.9s;
}

.text>.hero-line:nth-child(2) {
    animation-delay: 5.05s;
}

.hero-sub {
    opacity: 0;
    animation: heroFade 0.65s ease forwards 5.2s;
}

.hero-cta-text {
    opacity: 0;
    animation: heroFade 0.65s ease forwards 5.35s;
}

.mail {
    opacity: 0;
    animation: heroFade 0.65s ease forwards 5.5s;
}

@keyframes heroUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFade {
    to {
        opacity: 1;
    }
}

.btn {
    animation: btnPulse 2.8s ease-in-out infinite 3.5s;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.5);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(229, 9, 20, 0);
    }
}

.img {
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    inset: 0 0 0 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 14px;
    gap: 7px;
    opacity: 0;
    transition: opacity 0.28s ease;
    z-index: 5;
    border-radius: 6px;
}

.img:hover .card-overlay {
    opacity: 1;
}

.card-play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s, background 0.2s, color 0.2s;
}

.card-play:hover {
    transform: scale(1.12);
    background: #e50914;
    color: #fff;
}

.card-label {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Netflix Sans', sans-serif;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.rank-num {
    background: linear-gradient(180deg, #888 0%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 0;
}

.trand-title {
    position: relative;
    padding-bottom: 8px;
}

.trand-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: #e50914;
    border-radius: 2px;
}

.reason-card {
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.reason-card-title {
    background: linear-gradient(135deg, #fff 55%, #d8b4f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    border-left: 3px solid transparent;
    transition: border-color 0.25s;
}

.faq-item:hover,
.faq-item.faq-open {
    border-left-color: #e50914;
}

.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 56px;
    right: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.45) 30%, rgba(229, 9, 20, 0.45) 70%, transparent);
}

::selection {
    background: #e50914;
    color: #fff;
}