:root {
    --bg: #050505;
    --bg-deep: #000000;
    --card: #0d0d0d;
    --card-soft: #111111;
    --green: #a6ff00;
    --green-2: #9dff2e;
    --green-dark: #58b900;
    --white: #ffffff;
    --muted: #bdbdbd;
    --muted-2: #7e7e7e;
    --border: rgba(166, 255, 0, 0.16);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    --glow: 0 0 26px rgba(166, 255, 0, 0.32);
    --radius: 16px;
    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 75% 0%, rgba(166, 255, 0, 0.12), transparent 30%),
        radial-gradient(circle at 5% 20%, rgba(166, 255, 0, 0.08), transparent 26%),
        var(--bg);
    color: var(--white);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(100% - 32px, var(--max));
    margin-inline: auto;
}

.section-padding {
    padding: 96px 0;
}

.section-padding-sm {
    padding: 56px 0;
}

.site-glow {
    position: fixed;
    inset: auto -160px 8% auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(166, 255, 0, 0.07);
    filter: blur(70px);
    pointer-events: none;
    z-index: -1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 5, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.logo::first-letter {
    color: var(--green);
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-links {
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
}

.nav-links a {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--green);
    text-shadow: var(--glow);
}

.nav-links a.active {
    color: var(--green);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #101010;
    place-items: center;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    border-radius: 999px;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green), #79e600);
    color: #050505;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(166, 255, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(166, 255, 0, 0.32);
    filter: saturate(1.12);
}

.btn-small {
    min-height: 42px;
    padding-inline: 26px;
    font-size: 0.85rem;
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
    box-shadow: none;
}

.btn-ghost:hover {
    color: var(--green);
    border-color: rgba(166, 255, 0, 0.45);
    box-shadow: var(--glow);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 74px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: -130px auto auto -120px;
    width: 420px;
    height: 420px;
    opacity: 0.45;
    background: repeating-radial-gradient(ellipse at 16% 38%, transparent 0 21px, rgba(166, 255, 0, 0.4) 22px 24px, transparent 25px 46px);
    mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
    pointer-events: none;
}

.page-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 48px;
    align-items: center;
}

.page-hero h1 {
    max-width: 760px;
    font-size: 4.45rem;
    line-height: 1.03;
    letter-spacing: 0;
}

.page-hero h1 span {
    color: var(--green);
    text-shadow: 0 0 24px rgba(166, 255, 0, 0.24);
}

.page-hero p:not(.eyebrow) {
    max-width: 640px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 1.02rem;
}

.page-panel {
    padding: 24px;
    border: 1px solid rgba(166, 255, 0, 0.2);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(166, 255, 0, 0.11), transparent 38%),
        var(--card);
    box-shadow: var(--shadow);
}

.page-panel h2 {
    margin-bottom: 16px;
    font-size: 1.35rem;
}

.page-panel-list {
    display: grid;
    gap: 12px;
}

.page-panel-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

.page-panel-list li:last-child {
    border-bottom: 0;
}

.page-panel-list strong {
    color: var(--white);
}

.feature-grid,
.channel-grid,
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature-card,
.channel-card,
.support-card {
    min-height: 100%;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: var(--card);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.channel-card:hover,
.support-card:hover {
    transform: translateY(-6px);
    border-color: rgba(166, 255, 0, 0.36);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), 0 0 22px rgba(166, 255, 0, 0.07);
}

.feature-card strong,
.channel-card strong,
.support-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: 1.35rem;
}

.feature-card p,
.channel-card p,
.support-card p {
    color: var(--muted);
}

.channel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.channel-tags span {
    padding: 6px 9px;
    border: 1px solid rgba(166, 255, 0, 0.18);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.cta-band {
    padding: 52px 0;
    background:
        linear-gradient(90deg, rgba(166, 255, 0, 0.08), transparent 34%, rgba(166, 255, 0, 0.05)),
        #070707;
    border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-inner h2 {
    font-size: 2.4rem;
    line-height: 1.08;
}

.cta-inner h2 span {
    color: var(--green);
}

.cta-inner p {
    max-width: 570px;
    margin-top: 10px;
    color: var(--muted);
}

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-methods li {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: rgba(13, 13, 13, 0.72);
    color: var(--muted);
}

.contact-methods strong {
    display: block;
    color: var(--white);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-pattern {
    position: absolute;
    inset: -80px auto auto -110px;
    width: 470px;
    height: 470px;
    opacity: 0.55;
    background:
        repeating-radial-gradient(ellipse at 12% 35%, transparent 0 21px, rgba(166, 255, 0, 0.42) 22px 24px, transparent 25px 46px);
    mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(360px, 1.07fr);
    align-items: center;
    gap: clamp(40px, 7vw, 88px);
}

.eyebrow {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
    max-width: 760px;
    font-size: 5rem;
    line-height: 1.02;
    letter-spacing: 0;
}

.hero h1 span,
.section-heading h2 span,
.contact-copy h2 span {
    color: var(--green);
    text-shadow: 0 0 24px rgba(166, 255, 0, 0.24);
}

.hero-text {
    max-width: 620px;
    margin: 24px 0 28px;
    color: var(--muted);
    font-size: 1.03rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.device-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(78px, 1fr));
    gap: 12px;
    max-width: 610px;
}

.device-box {
    min-height: 86px;
    padding: 12px 8px;
    display: grid;
    place-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(13, 13, 13, 0.74);
    color: var(--muted);
    font-size: 0.78rem;
    text-align: center;
    transition: border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.device-box svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.device-box:hover {
    color: var(--green);
    border-color: rgba(166, 255, 0, 0.45);
    transform: translateY(-4px);
}

.hero-visual {
    perspective: 1100px;
}

.hero-icon {
    width: min(100%, 850px);
    height: auto;
    margin-inline: auto;
    display: block;
    filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.82));
    animation: floatTv 5s ease-in-out infinite;
    object-fit: contain;
}

.tv-mockup {
    position: relative;
    width: min(100%, 670px);
    margin-inline: auto;
    filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.82));
    animation: floatTv 5s ease-in-out infinite;
}

.tv-mockup.real-tv {
    width: min(100%, 760px);
}

.tv-image {
    display: block;
    width: 100%;
    height: auto;
}

.tv-screen {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 12px solid #161616;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(166, 255, 0, 0.18), transparent 32%),
        radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.18), transparent 20%),
        linear-gradient(145deg, #0e1420 0%, #090909 52%, #14140b 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(166, 255, 0, 0.12),
        0 20px 80px rgba(166, 255, 0, 0.09);
}

.tv-screen::before {
    content: "";
    position: absolute;
    inset: -50% -10% auto auto;
    width: 62%;
    height: 140%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    transform: rotate(18deg);
}

.screen-topbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px 12px;
}

.screen-topbar strong {
    display: block;
    font-size: 1.32rem;
    letter-spacing: 0;
}

.screen-topbar span,
.featured-panel p,
.featured-panel span {
    color: var(--muted);
    font-size: 0.78rem;
}

.screen-status {
    display: flex;
    gap: 8px;
    align-items: start;
    white-space: nowrap;
}

.screen-status span {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 3px 8px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.22);
}

.featured-panel {
    position: relative;
    z-index: 2;
    margin: 0 24px 14px;
    width: min(52%, 300px);
}

.featured-panel h2 {
    margin: 2px 0;
    font-size: 2.15rem;
    line-height: 1;
}

.app-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px;
    padding: 0 24px 15px;
}

.app-strip div {
    min-height: 38px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
    font-size: 0.73rem;
    font-weight: 800;
}

.app-strip div:nth-child(2),
.app-strip div:nth-child(5) {
    background: linear-gradient(135deg, var(--green), #61c700);
    color: #050505;
}

.thumb-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 24px 22px;
}

.thumb {
    min-height: 76px;
    display: flex;
    align-items: end;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background-size: cover;
    box-shadow: inset 0 -40px 30px rgba(0, 0, 0, 0.6);
}

.thumb span {
    padding: 10px;
    font-size: 0.72rem;
    font-weight: 900;
}

.thumb-one { background: linear-gradient(135deg, #173f2b, #a6ff00 120%); }
.thumb-two { background: linear-gradient(135deg, #13354f, #101010 55%, #d0efff); }
.thumb-three { background: linear-gradient(135deg, #3f143b, #f6c65b); }
.thumb-four { background: linear-gradient(135deg, #0e111b, #5ed9ff); }
.thumb-five { background: linear-gradient(135deg, #422100, #ff7a1a); }
.thumb-six { background: linear-gradient(135deg, #101010, #7e57ff); }

.tv-stand {
    position: relative;
    width: 34%;
    height: 42px;
    margin: -2px auto 0;
    border-bottom: 8px solid #161616;
}

.tv-stand::before,
.tv-stand::after {
    content: "";
    position: absolute;
    top: 0;
    width: 48%;
    height: 44px;
    border-bottom: 4px solid #242424;
}

.tv-stand::before {
    left: 4%;
    transform: skewX(-30deg);
}

.tv-stand::after {
    right: 4%;
    transform: skewX(30deg);
}

.stats {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    background: rgba(13, 13, 13, 0.54);
    box-shadow: var(--shadow);
}

.stat-card {
    position: relative;
    min-height: 142px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    text-align: center;
}

.stat-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.24), transparent);
}

.stat-card strong {
    font-size: 3.05rem;
    line-height: 1;
}

.stat-card span {
    color: var(--green);
    font-size: 0.9rem;
}

.section-heading {
    margin-bottom: 44px;
    text-align: center;
}

.section-heading h2,
.contact-copy h2 {
    margin-inline: auto;
    font-size: 3.45rem;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
    color: var(--muted);
    max-width: 560px;
    margin-top: 16px;
}

.align-left {
    text-align: left;
}

.align-left h2,
.align-left p {
    margin-inline: 0;
}

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

.pricing-card {
    position: relative;
    min-height: 100%;
    padding: 26px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 48%),
        var(--card);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-9px);
    border-color: rgba(166, 255, 0, 0.38);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48), 0 0 28px rgba(166, 255, 0, 0.08);
}

.pricing-card.featured {
    border-color: rgba(166, 255, 0, 0.82);
    box-shadow: 0 0 0 1px rgba(166, 255, 0, 0.18), 0 24px 74px rgba(0, 0, 0, 0.6);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(166, 255, 0, 0.14);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 900;
}

.plan-name {
    color: var(--muted);
    font-weight: 700;
    text-align: center;
}

.pricing-card h3 {
    margin: 14px 0 20px;
    font-size: 3rem;
    line-height: 1;
    text-align: center;
}

.pricing-card ul {
    margin-bottom: 24px;
}

.pricing-card li {
    position: relative;
    padding: 9px 0 9px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--white);
    font-size: 0.88rem;
}

.pricing-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(-45deg);
}

.card-btn {
    width: 100%;
}

.ready-text {
    margin: 16px 0 14px;
    color: var(--muted);
    font-size: 0.83rem;
    text-align: center;
}

.platform-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.platform-icons span {
    min-height: 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 0.68rem;
}

.brand-wrap {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 18px;
}

.slider-btn {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #0f0f0f;
    color: var(--white);
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.slider-btn svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-btn:hover {
    color: var(--green);
    border-color: rgba(166, 255, 0, 0.5);
    transform: translateY(-2px);
}

.brand-window {
    overflow: hidden;
}

.brand-track {
    display: flex;
    align-items: center;
    transition: transform 0.45s ease;
}

.brand-logo {
    flex: 0 0 33.333%;
    min-height: 74px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 2.45rem;
    font-weight: 900;
    letter-spacing: 0;
    text-align: center;
    opacity: 0.92;
}

.brand-logo.hulu {
    color: var(--green);
    text-transform: lowercase;
}

.brand-logo.film {
    font-weight: 500;
}

.brand-logo.videoland {
    font-size: 1.55rem;
}

.brand-logo.netflix {
    color: #f4f4f4;
}

.brand-logo.disney {
    color: #dfffc1;
}

.brand-logo.prime {
    font-size: 1.65rem;
}

.movie-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: -20px 0 18px;
}

.movie-window {
    overflow: hidden;
}

.movie-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 80px) / 5);
    gap: 20px;
    transition: transform 0.45s ease;
}

.movie-card {
    min-width: 0;
    border-radius: var(--radius);
    transition: transform 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
}

.poster-art {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #101010;
    background-position: center;
    background-size: cover;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.45);
}

.poster-art::before,
.poster-art::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.poster-art::before {
    inset: 0;
    background:
        radial-gradient(circle at 52% 35%, rgba(255, 255, 255, 0.34), transparent 16%),
        linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.82) 100%);
}

.poster-art::after {
    left: 50%;
    bottom: 18%;
    width: 36%;
    height: 42%;
    border-radius: 48% 48% 8% 8%;
    background: rgba(0, 0, 0, 0.58);
    transform: translateX(-50%);
    filter: blur(0.2px);
}

.poster-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.16), transparent 38%);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.movie-card:hover .poster-shine {
    transform: translateX(120%);
}

.poster-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--green);
    color: #050505;
    font-size: 0.7rem;
    font-weight: 900;
}

.movie-card h3 {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.2;
}

.movie-card p {
    color: var(--muted);
    font-size: 0.85rem;
}

.poster-action .poster-art { background: #080808 url("image/clean/arctic-strike.webp") center / cover no-repeat; }
.poster-fantasy .poster-art { background: #080808 url("image/clean/the-hidden-realm.webp") center / cover no-repeat; }
.poster-mystery .poster-art { background: #080808 url("image/clean/crystal-riddle.webp") center / cover no-repeat; }
.poster-viking .poster-art { background: #080808 url("image/clean/northern-blade.webp") center / cover no-repeat; }
.poster-sports .poster-art { background: #080808 url("image/clean/final-match.webp") center / cover no-repeat; }
.poster-scifi .poster-art { background: #080808 url("image/clean/neon-galaxy.webp") center / cover no-repeat; }

.poster-action .poster-art::before,
.poster-action .poster-art::after,
.poster-fantasy .poster-art::before,
.poster-fantasy .poster-art::after,
.poster-mystery .poster-art::before,
.poster-mystery .poster-art::after,
.poster-viking .poster-art::before,
.poster-viking .poster-art::after,
.poster-sports .poster-art::before,
.poster-sports .poster-art::after,
.poster-scifi .poster-art::before,
.poster-scifi .poster-art::after {
    display: none;
}

.poster-scifi .poster-art::after {
    width: 50%;
    height: 36%;
    border-radius: 4px 4px 0 0;
    background:
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0 9px, rgba(166, 255, 0, 0.45) 10px 12px),
        rgba(0, 0, 0, 0.7);
}

.faq {
    background: #070707;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(32px, 6vw, 72px);
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: var(--card-soft);
}

.faq-question {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 22px;
    border: 0;
    background: transparent;
    color: var(--white);
    text-align: left;
    font-weight: 800;
}

.faq-question strong {
    color: var(--green);
    font-size: 1.4rem;
    transition: transform 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 22px 22px;
    color: var(--muted);
}

.faq-item.active {
    border-color: rgba(166, 255, 0, 0.36);
}

.faq-item.active .faq-question strong {
    transform: rotate(45deg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(32px, 6vw, 76px);
    align-items: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 28px;
    padding: 0 22px;
    border: 1px solid rgba(166, 255, 0, 0.44);
    border-radius: 12px;
    color: var(--green);
    font-weight: 900;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn:hover {
    background: rgba(166, 255, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.contact-form {
    display: grid;
    gap: 12px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent), var(--card);
    box-shadow: var(--shadow);
}

.contact-form label {
    color: var(--white);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: #070707;
    color: var(--white);
    outline: none;
    padding: 14px 16px;
    resize: vertical;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(166, 255, 0, 0.65);
    box-shadow: 0 0 0 4px rgba(166, 255, 0, 0.08);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #020202;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr;
    gap: 34px;
    padding: 48px 0;
}

.footer-grid p,
.footer-grid a {
    color: var(--muted);
}

.footer-grid p {
    max-width: 390px;
    margin-top: 14px;
}

.footer-grid h3 {
    margin-bottom: 14px;
    font-size: 1rem;
}

.footer-grid li + li {
    margin-top: 8px;
}

.footer-grid a:hover {
    color: var(--green);
}

.footer-bottom {
    padding: 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted-2);
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatTv {
    0%,
    100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-12px) rotateX(1.2deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1100px) {
    .hero h1 {
        font-size: 4rem;
    }

    .page-hero h1 {
        font-size: 3.7rem;
    }

    .section-heading h2,
    .contact-copy h2 {
        font-size: 3rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .movie-track {
        grid-auto-columns: calc((100% - 40px) / 3);
    }
}

@media (max-width: 940px) {
    .section-padding {
        padding: 76px 0;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 60;
    }

    .nav-menu {
        position: fixed;
        inset: 78px 16px auto;
        z-index: 55;
        display: grid;
        gap: 18px;
        padding: 22px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: rgba(8, 8, 8, 0.96);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-14px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links {
        width: 100%;
        display: grid;
        gap: 0;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 1rem;
    }

    .nav-trial {
        width: 100%;
    }

    .hero {
        padding-top: 88px;
    }

    .hero-grid,
    .page-hero-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text,
    .hero h1 {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .device-row {
        margin-inline: auto;
    }

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

    .stat-card:nth-child(2)::after {
        display: none;
    }

    .stat-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .align-left {
        text-align: center;
    }

    .align-left h2,
    .align-left p {
        margin-inline: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid,
    .channel-grid,
    .support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inner {
        display: grid;
        text-align: center;
    }

    .cta-inner p {
        margin-inline: auto;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, var(--max));
    }

    .section-padding {
        padding: 64px 0;
    }

    .hero h1 {
        font-size: 3.15rem;
    }

    .page-hero {
        padding: 82px 0 54px;
    }

    .page-hero h1 {
        font-size: 2.95rem;
    }

    .hero-text {
        font-size: 0.96rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .device-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .device-box:last-child {
        grid-column: 1 / -1;
    }

    .screen-topbar,
    .app-strip,
    .thumb-grid {
        padding-inline: 14px;
    }

    .featured-panel {
        margin-inline: 14px;
        width: 68%;
    }

    .app-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .app-strip div:nth-child(n + 4) {
        display: none;
    }

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

    .thumb {
        min-height: 58px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 118px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-card:last-child {
        border-bottom: 0;
    }

    .stat-card::after {
        display: none;
    }

    .brand-wrap {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 8px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .brand-logo {
        flex-basis: 100%;
        min-height: 68px;
        font-size: 2rem;
    }

    .movie-controls {
        justify-content: center;
        margin-top: -18px;
    }

    .movie-track {
        grid-auto-columns: min(76vw, 260px);
        gap: 16px;
    }

    .contact-form {
        padding: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .channel-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner h2 {
        font-size: 2rem;
    }
}

@media (max-width: 420px) {
    .navbar {
        min-height: 70px;
    }

    .nav-menu {
        top: 70px;
    }

    .btn {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.35rem;
    }

    .section-heading h2,
    .contact-copy h2 {
        font-size: 2.15rem;
    }

    .pricing-card h3 {
        font-size: 2.55rem;
    }

    .screen-status span:not(:first-child) {
        display: none;
    }

    .pricing-card {
        padding-inline: 18px;
    }

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