:root {
    color-scheme: dark;
    --bg-main: #0f0a1a;
    --bg-surface: #1a1128;
    --bg-card: #140d21;
    --bg-card-2: #1e1433;
    --primary: #7c3aed;
    --primary-2: #a855f7;
    --primary-3: #c084fc;
    --text: #f1f0f5;
    --muted: #cdc7da;
    --dim: #8f849f;
    --line: rgba(124, 58, 237, 0.18);
    --line-strong: rgba(124, 58, 237, 0.34);
    --green: #22c55e;
    --gold: #f59e0b;
    --gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    --hero-gradient: linear-gradient(135deg, #251044 0%, #6d19d5 45%, #b30dff 100%);
    --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 44px -16px rgba(0, 0, 0, 0.5);
    --glow: 0 0 24px rgba(124, 58, 237, 0.34);
    --container: 1200px;
    --section: 52px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--bg-main);
    color: var(--text);
    font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 25% 0%, rgba(124, 58, 237, 0.16), transparent 28rem),
        radial-gradient(circle at 78% 8%, rgba(168, 85, 247, 0.12), transparent 24rem),
        var(--bg-main);
}

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

button,
input {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(30px, 3.6vw, 44px);
    overflow-wrap: anywhere;
}

h2 {
    font-size: clamp(26px, 3.2vw, 34px);
}

h3 {
    font-size: 18px;
}

p {
    margin-bottom: 14px;
    color: var(--muted);
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 2000;
    width: auto;
    height: auto;
    clip: auto;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #fff;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(15, 10, 26, 0.62);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    backdrop-filter: blur(12px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand__mark {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 8px;
    background: var(--gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: var(--glow);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #fff;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 20px;
    border-radius: var(--radius-full);
    background: var(--gradient);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(15, 10, 26, 0.85);
    color: #fff;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
}

.section-band {
    padding: var(--section) 0;
    overflow-x: clip;
}

.eyebrow,
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0 0 16px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--bg-card-2);
    color: #c4b5fd;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pill::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-2);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 26px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -6px rgba(124, 58, 237, 0.42);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.button--small {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 13px;
}

.hero {
    position: relative;
    min-height: 540px;
    padding: 120px 0 60px;
    overflow: hidden;
    background: var(--hero-gradient);
}

.hero-bg-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 55%;
    z-index: 1;
    background: var(--bg-surface);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.hero__glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.14), transparent 22rem),
        radial-gradient(circle at 72% 8%, rgba(255, 255, 255, 0.12), transparent 20rem);
    animation: heroGlowDrift 11s ease-in-out infinite alternate;
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: center;
}

.hero__copy {
    min-width: 0;
}

.hero__copy > p:not(.pill) {
    max-width: 560px;
    margin-bottom: 20px;
    padding: 18px 22px;
    border: 1px solid rgba(124, 58, 237, 0.24);
    border-radius: var(--radius-md);
    background: rgba(15, 10, 26, 0.48);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
    backdrop-filter: blur(10px);
}

.hero__actions,
.final-cta__actions,
.support-panel > div:last-child,
.related-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.hero-badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 16px;
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: var(--radius-full);
    background: rgba(15, 10, 26, 0.7);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-badges li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-2);
}

.hero-console {
    position: relative;
    min-height: 285px;
    padding: 18px;
    border: 1px solid rgba(124, 58, 237, 0.24);
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, rgba(30, 20, 55, 0.84), rgba(15, 10, 26, 0.9));
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
    animation: floatPanel 7s ease-in-out infinite;
}

.hero-console::before,
.hero-console::after {
    position: absolute;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--bg-main);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    box-shadow: var(--shadow-md);
}

.hero-console::before {
    content: "LIVE";
    left: -42px;
    top: 118px;
}

.hero-console::after {
    content: "N";
    right: -12px;
    top: 18px;
    color: #ef4444;
}

.console-top {
    display: flex;
    align-items: center;
    gap: 7px;
}

.console-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
}

.console-top span:nth-child(2) {
    background: #f59e0b;
}

.console-top span:nth-child(3) {
    background: #22c55e;
}

.console-top strong {
    margin-left: auto;
    color: var(--muted);
    font-size: 12px;
}

.console-brand {
    position: absolute;
    left: 24px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-full);
    background: rgba(15, 10, 26, 0.72);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.console-brand .brand__mark {
    width: 32px;
    height: 32px;
}

.console-brand strong,
.console-brand small {
    display: block;
}

.console-brand small {
    color: var(--green);
    font-size: 12px;
}

.console-media {
    position: relative;
    min-height: 246px;
    margin: 18px 0 14px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 50% 40%, rgba(168, 85, 247, 0.16), transparent 55%),
        rgba(15, 10, 26, 0.52);
}

.console-media > img {
    width: 100%;
    height: 268px;
    object-fit: cover;
    object-position: center;
    opacity: 0.72;
    filter: saturate(1.12) contrast(1.04);
    animation: floatPanel 7s ease-in-out infinite reverse;
}

.console-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(15, 10, 26, 0.88), rgba(15, 10, 26, 0.22) 52%, rgba(15, 10, 26, 0.84)),
        linear-gradient(180deg, rgba(15, 10, 26, 0.2), rgba(15, 10, 26, 0.82));
}

.console-media--movies .console-backdrop {
    animation: slowZoom 16s ease-in-out infinite alternate;
}

.hero-movie-rail {
    position: absolute;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 54px);
    gap: 9px;
}

.hero-movie-rail img {
    width: 54px;
    height: 76px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
    animation: posterFloat 7s ease-in-out infinite;
}

.hero-movie-rail img:nth-child(2) {
    animation-delay: -1.2s;
}

.hero-movie-rail img:nth-child(3) {
    animation-delay: -2.4s;
}

.hero-movie-rail img:nth-child(4) {
    animation-delay: -3.6s;
}

.console-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.console-grid span {
    display: grid;
    min-height: 74px;
    place-items: center;
    padding: 10px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.13);
    color: #e9ddff;
    font-size: 13px;
    font-weight: 800;
    transition: transform 220ms ease, background 220ms ease;
}

.channel-dock span {
    grid-template-rows: 26px auto;
    gap: 6px;
}

.channel-dock img {
    max-width: 48px;
    max-height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.3));
}

.channel-dock b {
    font-size: 12px;
    line-height: 1;
}

.console-grid span:hover {
    transform: translateY(-3px);
    background: rgba(168, 85, 247, 0.2);
}

.console-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.console-controls span {
    width: 28px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.14);
    animation: pulseBar 2.2s ease-in-out infinite;
}

.console-controls span:nth-child(2) {
    animation-delay: 0.16s;
}

.console-controls span:nth-child(3) {
    animation-delay: 0.32s;
}

.console-controls span:nth-child(4) {
    animation-delay: 0.48s;
}

.console-controls span:nth-child(5) {
    animation-delay: 0.64s;
}

.floating-icon {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 88px;
    height: 48px;
    padding: 8px 10px;
    border: 1px solid rgba(168, 85, 247, 0.32);
    border-radius: 12px;
    background: rgba(15, 10, 26, 0.82);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34), 0 0 24px rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(12px);
    animation: floatingBadge 5.8s ease-in-out infinite;
}

.floating-icon img {
    max-width: 40px;
    max-height: 22px;
    object-fit: contain;
}

.floating-icon span {
    font-size: 11px;
}

.floating-icon--one {
    left: -62px;
    top: 42px;
    animation-delay: -0.8s;
}

.floating-icon--two {
    right: -52px;
    top: 118px;
    animation-delay: -2.1s;
}

.floating-icon--three {
    left: -48px;
    bottom: 38px;
    animation-delay: -3.2s;
}

.floating-icon--four {
    right: 34px;
    bottom: -28px;
    animation-delay: -1.4s;
}

.intro-split {
    padding: 60px 0 70px;
    background: var(--bg-surface);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 48px;
    align-items: center;
}

.intro-split h2 {
    max-width: 640px;
}

.intro-split p {
    max-width: 690px;
    font-size: 15px;
    line-height: 1.7;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.check-list li,
.price-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-size: 15px;
    font-weight: 650;
}

.check-list span,
.price-card li span {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 12px;
    font-weight: 900;
}

.poster-wall {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 132px;
    gap: 12px;
}

.poster {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 12px;
    border-radius: var(--radius-md);
    overflow: hidden;
    color: #fff;
    background: var(--bg-main);
    box-shadow: var(--shadow-lg);
    animation: posterFloat 8s ease-in-out infinite;
}

.poster--hero {
    grid-column: span 3;
    min-height: 172px;
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 320ms ease, filter 320ms ease;
}

.poster:hover img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
}

.poster-wall--images .poster {
    padding: 0;
    background: #12091f;
}

.poster-wall--images .poster::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, transparent 45%, rgba(15, 10, 26, 0.42));
    pointer-events: none;
}

.poster--wide {
    grid-column: span 2;
}

.poster:nth-child(2n) {
    animation-delay: -1.8s;
}

.poster:nth-child(3n) {
    animation-delay: -3.4s;
}

.poster span {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.poster strong {
    font-size: 18px;
    line-height: 1;
}

.poster--yellow {
    background: linear-gradient(135deg, #ffe86f, #f661ac);
    color: #170b1f;
}

.poster--red {
    background: radial-gradient(circle at 52% 40%, #ffb14a, transparent 34%), linear-gradient(145deg, #a40921, #26050b);
}

.poster--sport {
    background: radial-gradient(circle at 65% 10%, #f3d3c6, transparent 32%), linear-gradient(160deg, #5b2b22, #0b0b10);
}

.poster--blue {
    background: linear-gradient(135deg, #90dbff, #2f61ff 62%, #111827);
}

.poster--ufc,
.poster--city,
.poster--race {
    grid-column: span 2;
}

.poster--ufc {
    background: linear-gradient(135deg, #ff2d2d, #12050d 58%);
}

.poster--city {
    background: linear-gradient(135deg, #c9efff, #6d9cff 48%, #20115b);
}

.poster--race {
    background: linear-gradient(135deg, #f33, #911 48%, #190812);
}

.poster--league {
    background: #eef4ff;
    color: #172554;
}

.football-night {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(34, 197, 94, 0.12) 1px, transparent 1px),
        linear-gradient(180deg, #10091a 0%, #111f18 100%);
    background-size: 92px 92px, auto;
}

.football-night::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 35%, rgba(34, 197, 94, 0.12) 45%, transparent 55% 100%),
        linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 49%, rgba(255, 255, 255, 0.08) 51%, transparent 52% 100%);
    background-size: 220% 100%, 100% 100%;
    opacity: 0.64;
    animation: footballLightSweep 9s ease-in-out infinite;
}

.football-night__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: center;
}

.football-night__copy .eyebrow {
    background: rgba(34, 197, 94, 0.14);
    color: #bbf7d0;
}

.football-night__copy .eyebrow::before {
    background: #22c55e;
}

.football-night__copy p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(241, 245, 249, 0.88);
    font-size: 15px;
    line-height: 1.72;
}

.football-night__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 520px;
    margin: 22px 0 24px;
}

.football-night__stats span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid rgba(34, 197, 94, 0.24);
    border-radius: var(--radius-sm);
    background: rgba(7, 18, 13, 0.68);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 16px 32px -22px rgba(34, 197, 94, 0.8);
}

.football-night__stats strong {
    display: grid;
    min-width: 44px;
    min-height: 28px;
    place-items: center;
    border-radius: var(--radius-full);
    background: rgba(34, 197, 94, 0.18);
    color: #86efac;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.football-stage {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.22);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(ellipse at 50% 100%, rgba(34, 197, 94, 0.24), transparent 52%),
        linear-gradient(150deg, rgba(5, 20, 13, 0.96), rgba(24, 13, 39, 0.9));
    box-shadow: var(--shadow-lg);
}

.football-stage::before,
.football-stage::after,
.football-stage__field {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.football-stage::before {
    content: "";
    z-index: 1;
    background:
        linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.2) 49% 51%, transparent 51% 100%),
        radial-gradient(circle at 50% 50%, transparent 0 22%, rgba(255, 255, 255, 0.16) 22.4% 23.2%, transparent 23.8%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 56px;
    opacity: 0.46;
}

.football-stage::after {
    content: "";
    z-index: 2;
    background: linear-gradient(180deg, transparent 42%, rgba(3, 7, 18, 0.54));
}

.football-stage__field {
    z-index: 0;
    background:
        repeating-linear-gradient(90deg, rgba(34, 197, 94, 0.16) 0 32px, rgba(22, 101, 52, 0.12) 32px 64px),
        linear-gradient(135deg, rgba(5, 150, 105, 0.24), rgba(124, 58, 237, 0.16));
    background-size: 128px 100%, 100% 100%;
    animation: footballPitchFlow 10s linear infinite;
}

.football-nations {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    grid-template-rows: repeat(2, minmax(0, 146px));
    gap: 12px;
    min-height: 390px;
    padding: 64px 18px 76px;
}

.football-nation-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    background: rgba(2, 6, 23, 0.62);
    box-shadow: 0 18px 34px -20px rgba(0, 0, 0, 0.72);
    animation: footballNationFloat 7.8s ease-in-out infinite;
}

.football-nation-card:first-child {
    grid-row: span 2;
}

.football-nation-card:nth-child(2) {
    animation-delay: -1.8s;
}

.football-nation-card:nth-child(3) {
    animation-delay: -3.1s;
}

.football-nation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.03);
    transition: transform 360ms ease, filter 360ms ease;
}

.football-nation-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 34%, rgba(2, 6, 23, 0.76)),
        linear-gradient(90deg, rgba(2, 6, 23, 0.5), transparent 52%);
}

.football-nation-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.18) contrast(1.08);
}

.football-nation-card div {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 1;
    display: grid;
    gap: 3px;
}

.football-nation-card strong {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.05;
}

.football-nation-card span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 750;
}

.football-nation-card:not(:first-child) strong {
    font-size: 16px;
}

.football-stage__player {
    position: absolute;
    left: 50%;
    bottom: 6px;
    z-index: 3;
    width: min(100%, 560px);
    max-width: none;
    transform: translateX(-50%);
    filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.46));
    animation: footballPlayerFloat 7s ease-in-out infinite;
    transition: filter 260ms ease;
}

.football-stage:hover .football-stage__player {
    filter: drop-shadow(0 36px 44px rgba(34, 197, 94, 0.36));
}

.score-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 32px);
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-full);
    background: rgba(15, 10, 26, 0.68);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    animation: footballChipDrift 5.8s ease-in-out infinite;
}

.score-chip strong {
    color: #86efac;
    white-space: nowrap;
}

.score-chip--live {
    top: 24px;
    right: 24px;
}

.score-chip--event {
    left: 22px;
    bottom: 80px;
    animation-delay: -2.1s;
}

.football-ticker {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    display: flex;
    gap: 10px;
    overflow: hidden;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    background: rgba(2, 6, 23, 0.52);
    backdrop-filter: blur(14px);
}

.football-ticker span {
    flex: 0 0 auto;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
    animation: footballTicker 13s linear infinite;
}

.football-stage:hover .football-ticker span,
.football-stage:hover .score-chip {
    animation-duration: 4.8s;
}

.pricing {
    background: var(--bg-surface);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
}

.section-heading p:not(.eyebrow) {
    max-width: 560px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 15px;
}

.connection-toggle {
    display: flex;
    width: fit-content;
    margin: 0 auto 36px;
    padding: 5px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-full);
    background: rgba(15, 10, 26, 0.7);
    box-shadow: var(--shadow-md);
}

.connection-toggle button {
    min-height: 38px;
    padding: 0 28px;
    border: 0;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.connection-toggle button.is-selected {
    background: var(--gradient);
    color: #fff;
    box-shadow: var(--glow);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-grid,
.review-grid,
.kb-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.price-card,
.feature-card,
.review-card,
.kb-card,
.step-card,
.guide-block,
.support-panel,
.legal-content,
.article-content,
.article-toc,
.legal-nav,
.guide-nav,
.client-login__panel,
.related-panel,
.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, rgba(30, 20, 55, 0.78), rgba(15, 10, 26, 0.9));
    box-shadow: var(--shadow-md);
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    overflow: hidden;
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--gradient);
    opacity: 0.65;
}

.price-card--featured {
    border-color: var(--line-strong);
    box-shadow: 0 20px 60px -16px rgba(124, 58, 237, 0.35);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--line-strong);
    box-shadow: 0 24px 72px -18px rgba(124, 58, 237, 0.42);
}

.price-card__tag {
    display: none;
}

.price-card__media {
    display: grid;
    min-height: 96px;
    place-items: center;
    margin: 0 0 18px;
    padding: 12px;
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 50% 30%, rgba(168, 85, 247, 0.14), transparent 62%),
        rgba(124, 58, 237, 0.04);
}

.price-card__media img {
    width: 100%;
    max-height: 118px;
    object-fit: contain;
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.34));
}

.price-card h3 {
    margin-bottom: 6px;
    font-size: 24px;
}

.price-card__connection {
    margin-bottom: 18px;
    color: var(--dim);
    font-size: 14px;
    font-weight: 650;
}

.price-card__price {
    margin-bottom: 14px;
    color: #fff;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.price-card ul {
    flex: 1;
    display: grid;
    gap: 10px;
    margin: 0 0 20px;
    padding: 18px 16px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-md);
    background: rgba(124, 58, 237, 0.04);
    list-style: none;
}

.price-card li {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.price-card li span {
    flex-basis: 22px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(168, 85, 247, 0.35));
    color: #c4b5fd;
}

.price-card .button {
    width: 100%;
    margin-top: auto;
    border-radius: var(--radius-full);
}

.guarantee {
    display: flex;
    justify-content: center;
    margin: 0 0 14px;
    padding: 8px 14px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-full);
    background: rgba(124, 58, 237, 0.08);
    color: #a78bfa;
    font-size: 12px;
    font-weight: 700;
}

.price-card small {
    display: block;
    margin-top: 12px;
    color: var(--dim);
    text-align: center;
    font-size: 11px;
}

.feature-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card,
.review-card,
.kb-card {
    padding: 22px 20px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.review-card:hover,
.kb-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    position: relative;
    padding-top: 0;
    font-size: 18px;
}

.feature-card__media {
    height: 128px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.13);
    border-radius: var(--radius-md);
    background: rgba(15, 10, 26, 0.42);
}

.feature-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.feature-card:hover .feature-card__media img {
    transform: scale(1.06);
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.how-it-works,
.advantage {
    background: var(--bg-surface);
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    max-width: 930px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    max-width: 290px;
    padding: 24px 20px;
    text-align: center;
    background: var(--bg-main);
}

.step-card > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.step-card p {
    margin-bottom: 0;
    font-size: 14px;
}

.reviews {
    background: var(--bg-main);
}

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

.review-card {
    background: var(--bg-surface);
}

.review-avatar {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border: 2px solid rgba(168, 85, 247, 0.38);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.stars {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

blockquote {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
}

.review-card p:last-child {
    display: grid;
    gap: 2px;
    margin: 0;
}

.review-card strong {
    color: var(--text);
}

.review-card span {
    color: var(--dim);
    font-size: 12px;
}

.advantage .two-column {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.advantage-copy {
    margin: 18px 0 22px;
}

.advantage-copy h3 {
    margin-bottom: 8px;
    color: var(--primary-3);
    font-size: 17px;
}

.advantage-copy p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
}

.device-showcase {
    position: relative;
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg-main);
    box-shadow: var(--shadow-lg);
}

.device-showcase--image {
    overflow: hidden;
    padding: 24px;
}

.device-showcase--image img {
    width: min(100%, 540px);
    max-height: 285px;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.42));
    animation: floatPanel 8s ease-in-out infinite;
}

.device-screen {
    width: 360px;
    height: 200px;
    display: grid;
    grid-template-columns: 44px 1fr 92px;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #120820, #020105);
    animation: floatPanel 7.5s ease-in-out infinite reverse;
}

.device-sidebar {
    border-radius: 7px;
    background: linear-gradient(180deg, #34204e, #140c20);
}

.device-list {
    display: grid;
    gap: 8px;
}

.device-list span {
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, #253d2c, #0e1712);
}

.device-card {
    border-radius: 8px;
    background: radial-gradient(circle at 35% 30%, #7cff95, transparent 22%), linear-gradient(135deg, #1c4233, #08040f);
}

.remote {
    width: 54px;
    height: 200px;
    margin-left: -2px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, #222, #070707);
}

.guarantee-seal {
    position: absolute;
    left: 56px;
    bottom: 30px;
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    border-radius: 50%;
    background: #ffc857;
    color: #160b28;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    transform: rotate(-12deg);
}

.faq {
    background: var(--bg-main);
}

.faq-list {
    max-width: 800px;
    display: grid;
    gap: 8px;
    margin: 0 auto;
}

.faq-list details {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
}

.faq-list summary {
    cursor: pointer;
    padding: 14px 18px;
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
}

.faq-list p {
    margin: 0;
    padding: 0 18px 18px;
    font-size: 15px;
}

.page-hero,
.article-hero {
    padding: 130px 0 60px;
    border-bottom: 1px solid var(--line);
    background: var(--hero-gradient);
}

.page-hero__inner,
.article-hero__inner {
    max-width: 860px;
}

.guide-layout,
.article-layout,
.legal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.guide-nav,
.article-toc,
.legal-nav {
    position: sticky;
    top: 96px;
    padding: 18px;
}

.guide-nav h2,
.article-toc h2,
.legal-nav h2 {
    font-size: 16px;
}

.guide-nav a,
.article-toc a,
.legal-nav a {
    display: block;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.guide-nav a:hover,
.article-toc a:hover,
.legal-nav a:hover,
.text-link:hover,
.kb-card a:hover {
    color: var(--primary-3);
}

.guide-content,
.article-content,
.legal-content {
    display: grid;
    gap: 16px;
}

.guide-block,
.support-panel,
.article-content,
.legal-content {
    padding: 26px;
}

.guide-block ol {
    margin: 0;
    padding-left: 22px;
    color: var(--muted);
}

.guide-block li + li {
    margin-top: 10px;
}

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

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

.kb-card h2 {
    font-size: 22px;
}

.kb-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    margin: 16px 0;
    padding-left: 18px;
    color: var(--muted);
}

.kb-card__links {
    display: grid;
    gap: 8px;
    margin: 18px 0;
}

.kb-card__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(124, 58, 237, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(124, 58, 237, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 750;
}

.kb-card__links a::after {
    content: ">";
    color: var(--primary-3);
    font-weight: 900;
}

.text-link {
    color: var(--primary-3);
    font-weight: 800;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--primary-3);
}

.article-content section + section,
.legal-content section + section {
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.related-panel {
    padding: 20px;
}

.related-links a {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--muted);
}

.client-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding-top: 90px;
}

.client-login__panel {
    width: min(460px, calc(100% - 32px));
    padding: 32px;
    text-align: center;
}

.login-form {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    text-align: left;
}

.login-form label {
    color: var(--text);
    font-weight: 800;
}

.login-form input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

.login-form input:focus {
    outline: 2px solid rgba(168, 85, 247, 0.55);
    outline-offset: 2px;
}

.form-error {
    padding: 12px;
    border: 1px solid rgba(239, 68, 68, 0.45);
    border-radius: var(--radius-sm);
    background: rgba(239, 68, 68, 0.12);
    color: #fecaca;
}

.final-cta {
    background:
        linear-gradient(rgba(15, 10, 26, 0.78), rgba(15, 10, 26, 0.9)),
        url("../../images/ott-platform/overview.jpg") center / cover no-repeat,
        var(--bg-main);
}

.final-cta__inner {
    max-width: 980px;
    margin-inline: auto;
    padding: 42px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    background: var(--gradient);
    box-shadow: var(--glow);
}

.final-cta__inner .eyebrow {
    margin-inline: auto;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.final-cta__inner p {
    max-width: 720px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.86);
}

.final-cta__actions {
    justify-content: center;
}

.final-cta .button--primary {
    background: #fff;
    color: #1e1033;
    box-shadow: none;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 750;
}

.site-footer {
    padding: 20px 0 36px;
    background: var(--bg-main);
    text-align: center;
}

.brand--footer {
    justify-content: center;
    margin-bottom: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 760px;
}

.site-footer h2 {
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.footer-list a:hover {
    color: var(--primary-3);
}

.footer-bottom {
    display: grid;
    gap: 8px;
    justify-items: center;
    max-width: 760px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(124, 58, 237, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: var(--dim);
    font-size: 13px;
}

.payment-line {
    color: var(--text) !important;
}

.whatsapp-float {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 900;
    display: inline-grid;
    min-width: 48px;
    height: 48px;
    place-items: center;
    padding: 0 10px;
    border-radius: 50%;
    background: #22d366;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: var(--shadow-md);
    animation: whatsappBounce 3.2s ease-in-out infinite;
}

[hidden] {
    display: none !important;
}

@keyframes heroGlowDrift {
    0% {
        transform: translate3d(-1.2%, -1%, 0) scale(1);
        opacity: 0.75;
    }
    100% {
        transform: translate3d(1.6%, 1.4%, 0) scale(1.04);
        opacity: 1;
    }
}

@keyframes floatPanel {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes floatingBadge {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-3deg);
    }
    50% {
        transform: translate3d(10px, -14px, 0) rotate(4deg);
    }
}

@keyframes posterFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes footballLightSweep {
    0%,
    100% {
        background-position: 120% 0, 0 0;
    }
    50% {
        background-position: -20% 0, 0 0;
    }
}

@keyframes footballPitchFlow {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 128px 0, 0 0;
    }
}

@keyframes footballPlayerFloat {
    0%,
    100% {
        transform: translate3d(-50%, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-50%, -10px, 0) scale(1.025);
    }
}

@keyframes footballNationFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -7px, 0);
    }
}

@keyframes footballChipDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(8px, -8px, 0);
    }
}

@keyframes footballTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-120%);
    }
}

@keyframes pulseBar {
    0%,
    100% {
        opacity: 0.35;
        transform: scaleX(0.86);
    }
    50% {
        opacity: 0.9;
        transform: scaleX(1.08);
    }
}

@keyframes whatsappBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

@media (max-width: 1020px) {
    .nav-toggle {
        display: inline-block;
        order: 3;
    }

    .nav-cta {
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        left: 24px;
        right: 24px;
        top: 70px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius-md);
        background: rgba(15, 10, 26, 0.98);
        box-shadow: var(--shadow-lg);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 12px 10px;
    }

    .hero__inner,
    .football-night__inner,
    .two-column,
    .advantage .two-column,
    .guide-layout,
    .article-layout,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .football-night__copy {
        max-width: 720px;
    }

    .football-stage {
        min-height: 360px;
    }

    .hero-console {
        max-width: 680px;
    }

    .poster-wall {
        max-width: 520px;
    }

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

    .steps-grid {
        display: grid;
    }

    .guide-nav,
    .article-toc,
    .legal-nav {
        position: static;
    }
}

@media (max-width: 720px) {
    :root {
        --section: 44px;
    }

    .container {
        padding-inline: 16px;
    }

    .site-header {
        padding: 12px 0;
    }

    .brand {
        font-size: 17px;
    }

    .nav-cta {
        display: none;
    }

    h1 {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.16;
        letter-spacing: -0.04em;
    }

    h2 {
        font-size: 26px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 58px;
    }

    .hero::after {
        height: 42%;
    }

    .hero__inner {
        gap: 28px;
        min-width: 0;
    }

    .hero__copy,
    .hero-console {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero__copy h1 {
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .pill {
        max-width: 100%;
        flex-wrap: wrap;
        white-space: normal;
        line-height: 1.35;
    }

    .hero__copy > p:not(.pill) {
        max-width: 100%;
        padding: 16px;
        overflow-wrap: anywhere;
    }

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

    .hero-badges li {
        justify-content: center;
        white-space: normal;
    }

    .hero-console {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        min-height: 250px;
        padding: 14px;
    }

    .hero-console::before,
    .hero-console::after,
    .floating-icon {
        display: none;
    }

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

    .console-media {
        min-height: 220px;
        margin: 14px 0 12px;
    }

    .console-media > img {
        height: 238px;
    }

    .console-brand {
        left: 14px;
        bottom: 14px;
        max-width: 142px;
        padding: 8px 10px;
    }

    .console-brand div {
        min-width: 0;
    }

    .console-brand strong {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-movie-rail {
        right: 12px;
        bottom: 14px;
        grid-template-columns: repeat(4, 42px);
        gap: 6px;
    }

    .hero-movie-rail img {
        width: 42px;
        height: 58px;
    }

    .console-top strong {
        max-width: 130px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .football-night__inner {
        gap: 26px;
    }

    .football-night__stats {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .football-night__stats span {
        min-height: 44px;
    }

    .football-stage {
        min-height: 300px;
        border-radius: var(--radius-md);
    }

    .football-nations {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, minmax(132px, 38vw));
        min-height: auto;
        padding: 96px 12px 70px;
    }

    .football-nation-card:first-child {
        grid-row: auto;
    }

    .football-nation-card strong,
    .football-nation-card:not(:first-child) strong {
        font-size: 18px;
    }

    .football-stage__player {
        bottom: 34px;
        width: 116%;
    }

    .score-chip {
        gap: 8px;
        padding: 8px 10px;
        font-size: 10px;
    }

    .score-chip--live {
        top: 14px;
        right: 12px;
    }

    .score-chip--event {
        left: 12px;
        top: 52px;
        bottom: auto;
    }

    .football-ticker {
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: var(--radius-sm);
    }

    .football-ticker span {
        padding: 5px 10px;
        font-size: 11px;
    }

    .poster-wall,
    .pricing-grid,
    .feature-grid,
    .review-grid,
    .steps-grid,
    .kb-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        width: 100%;
        max-width: none;
    }

    .step-card {
        width: 100%;
        max-width: none;
    }

    .poster--hero,
    .poster--wide,
    .poster--ufc,
    .poster--city,
    .poster--race {
        grid-column: auto;
    }

    .connection-toggle {
        width: 100%;
    }

    .connection-toggle button {
        flex: 1;
        padding-inline: 10px;
    }

    .support-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .device-showcase {
        overflow: hidden;
        min-height: 230px;
    }

    .device-screen {
        width: 250px;
        grid-template-columns: 34px 1fr 68px;
    }

    .remote {
        width: 38px;
        height: 160px;
    }

    .guarantee-seal {
        left: 18px;
        width: 62px;
        height: 62px;
        font-size: 10px;
    }

    .cta-trust,
    .footer-list {
        flex-direction: column;
        gap: 8px;
    }

    .final-cta__inner {
        padding: 28px 18px;
    }

    .whatsapp-float {
        left: 12px;
        bottom: 12px;
        min-width: 42px;
        height: 42px;
        padding: 0 8px;
        font-size: 11px;
    }
}

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

/* ==========================================================================
   PRICING TIER SWITCHER & VIP CARDS STYLING
   ========================================================================== */
.pricing-controls-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.tier-toggle {
    display: inline-flex;
    background: rgba(20, 13, 33, 0.85);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 5px;
    border-radius: var(--radius-full);
    gap: 6px;
}

.tier-btn {
    background: transparent;
    border: none;
    color: var(--muted);
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.25s ease;
}

.tier-btn.is-selected {
    background: var(--gradient);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(124, 58, 237, 0.4);
}

.tier-btn--vip.is-selected {
    background: linear-gradient(135deg, #f59e0b 0%, #ff0077 100%);
    color: #ffffff;
    box-shadow: 0 4px 22px rgba(255, 0, 119, 0.45);
}

.pricing-grid--tier {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.pricing-grid--tier[hidden] {
    display: none !important;
}

/* VIP Pricing Card Enhancements */
.price-card--vip {
    position: relative;
    background: linear-gradient(160deg, #1d0f35 0%, #130a24 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 35px -10px rgba(245, 158, 11, 0.2);
}

.price-card--vip:hover {
    border-color: rgba(255, 0, 119, 0.7);
    box-shadow: 0 16px 45px -10px rgba(255, 0, 119, 0.35);
    transform: translateY(-4px);
}

.vip-glow-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #f59e0b, #ff0077);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    box-shadow: 0 0 12px rgba(255, 0, 119, 0.5);
}

.price-card__tag--vip {
    color: #f59e0b;
    font-weight: 800;
}

.price-card__price--vip {
    color: #ffd700;
}

.vip-check {
    color: #f59e0b;
    margin-right: 6px;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    width: 100%;
}

.button--vip-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #ff0077 100%);
    color: #ffffff;
    border: none;
    font-weight: 800;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button--vip-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 0, 119, 0.4);
}

.button--whatsapp {
    background: #22c55e;
    color: #ffffff !important;
    border: none;
    font-weight: 700;
    padding: 11px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 13.5px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.button--whatsapp:hover {
    background: #16a34a;
    transform: scale(1.02);
}

.btn-order-modal {
    width: 100%;
    cursor: pointer;
}

/* ==========================================================================
   INTERACTIVE ORDER MODAL DIALOG
   ========================================================================== */
.order-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(9, 4, 18, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.order-modal-backdrop[hidden] {
    display: none !important;
}

.order-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    overflow-y: auto;
    background: #180f2c;
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(124, 58, 237, 0.25);
    color: var(--text);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--muted);
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.25);
    border: 1px solid rgba(168, 85, 247, 0.5);
    color: #d8b4fe;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.modal-header h2 {
    margin-bottom: 6px;
    font-size: 24px;
}

.modal-header p {
    color: var(--dim);
    font-size: 13.5px;
    margin: 0;
}

.modal-summary-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(26, 17, 44, 0.9);
    border-left: 4px solid var(--primary-2);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
}

.modal-summary-box strong {
    display: block;
    font-size: 16px;
    color: #ffffff;
}

.modal-summary-box span {
    font-size: 12.5px;
    color: var(--dim);
}

.modal-price {
    font-size: 22px;
    font-weight: 800;
    color: #4ade80;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--muted);
}

.form-group label .required {
    color: #ff4d4d;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    background: #110920;
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    border-color: var(--primary-2);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.button--full {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 800;
    margin-top: 6px;
}

.form-status-msg {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.form-status-msg.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

.modal-success-screen {
    text-align: center;
    padding: 10px 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 16px;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
}

.modal-success-screen h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.order-ref-text {
    font-size: 14px;
    color: var(--dim);
}

.order-ref-text strong {
    color: #4ade80;
    font-size: 16px;
}

.success-desc {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

