﻿:root {
      --bg: #07120f;
      --bg-soft: #0e1b16;
      --ink: #f8fafc;
      --muted: #c8d3d0;
      --line: rgba(255, 255, 255, 0.14);
      --panel: rgba(8, 18, 15, 0.82);
      --green: #22c55e;
      --green-deep: #069452;
      --gold: #ffd166;
      --red: #ef4444;
      --white: #ffffff;
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
      --radius: 8px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      letter-spacing: 0;
    }

    body.is-locked {
      overflow: hidden;
    }

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

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      min-height: 100vh;
      overflow-x: hidden;
      background:
        linear-gradient(180deg, rgba(7, 18, 15, 0) 0, rgba(7, 18, 15, 0.96) 680px),
        linear-gradient(180deg, #07120f 0%, #0d1714 54%, #101310 100%);
    }

    .shell {
      width: min(1160px, calc(100% - 36px));
      margin: 0 auto;
    }

    .nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(7, 18, 15, 0.76);
      backdrop-filter: blur(16px);
    }

    .nav-inner {
      min-height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      font-size: 1.08rem;
      font-weight: 950;
    }

    .brand img {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      object-fit: cover;
      box-shadow: 0 10px 28px rgba(34, 197, 94, 0.28);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 0.94rem;
      font-weight: 760;
    }

    .btn {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: var(--radius);
      padding: 0 18px;
      font: inherit;
      font-size: 0.98rem;
      font-weight: 920;
      line-height: 1;
      cursor: pointer;
      white-space: nowrap;
      transition: transform 180ms ease, filter 180ms ease, background 180ms ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      filter: brightness(1.06);
    }

    .btn-primary {
      color: #07120f;
      background: linear-gradient(135deg, var(--gold), #56f299 70%);
      box-shadow: 0 16px 42px rgba(34, 197, 94, 0.28);
    }

    .btn-primary .btn-ico {
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: rgba(7, 18, 15, 0.12);
    }

    .btn-secondary {
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero {
      position: relative;
      min-height: 93vh;
      display: grid;
      align-items: end;
      isolation: isolate;
      padding-top: 70px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(5, 13, 11, 0.96) 0%, rgba(5, 13, 11, 0.78) 40%, rgba(5, 13, 11, 0.22) 74%, rgba(5, 13, 11, 0.68) 100%),
        url("../image/hero-mexico-streaming.png") center / cover no-repeat;
      filter: saturate(1.07) contrast(1.04);
      transform: scale(1.01);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      z-index: -1;
      height: 190px;
      background: linear-gradient(180deg, rgba(7, 18, 15, 0), var(--bg));
    }

    .hero-grid {
      width: min(1160px, calc(100% - 36px));
      margin: 0 auto;
      padding: 76px 0 64px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
      gap: 42px;
      align-items: end;
    }

    .kicker {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(7, 18, 15, 0.62);
      color: #eafff2;
      font-size: 0.88rem;
      font-weight: 900;
    }

    .live-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
    }

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

    h1 {
      max-width: 780px;
      margin: 18px 0 18px;
      font-size: clamp(2.7rem, 7vw, 6.2rem);
      line-height: 0.92;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .accent {
      color: var(--gold);
    }

    .lead {
      max-width: 650px;
      margin-bottom: 26px;
      color: #edf5f3;
      font-size: clamp(1.06rem, 2vw, 1.34rem);
      line-height: 1.48;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      color: #e3ece9;
      font-size: 0.92rem;
      font-weight: 760;
    }

    .trust-row span {
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      padding: 0 10px;
    }

    .phone {
      border-radius: 28px;
      padding: 12px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: linear-gradient(145deg, rgba(255,255,255,0.28), rgba(255,255,255,0.06));
      box-shadow: var(--shadow);
    }

    .screen {
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      border-radius: 21px;
      padding: 18px;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.84)),
        url("../image/hero-mexico-streaming.png") 68% center / cover no-repeat;
    }

    .screen-tag {
      width: fit-content;
      margin-bottom: 12px;
      padding: 7px 10px;
      border-radius: var(--radius);
      background: var(--red);
      font-size: 0.75rem;
      font-weight: 950;
      text-transform: uppercase;
    }

    .screen-title {
      margin-bottom: 14px;
      font-size: 1.72rem;
      line-height: 1.03;
      font-weight: 950;
    }

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

    .screen-grid span {
      min-height: 66px;
      display: flex;
      align-items: flex-end;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.12);
      padding: 9px;
      font-size: 0.78rem;
      font-weight: 880;
    }

    .strip {
      padding: 13px 0;
      background: linear-gradient(90deg, var(--green-deep), #f8fafc 50%, var(--red));
      color: #07120f;
      text-align: center;
      font-weight: 950;
    }

    .section {
      padding: 72px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 28px;
    }

    .section-head.center {
      margin-inline: auto;
      text-align: center;
    }

    h2 {
      margin-bottom: 12px;
      font-size: clamp(2rem, 4vw, 3.55rem);
      line-height: 1;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .section-head p,
    .copy {
      color: var(--muted);
      font-size: 1.06rem;
      line-height: 1.6;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .feature-card,
    .step,
    .quote,
    details {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.07);
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
    }

    .feature-card {
      min-height: 220px;
      padding: 22px;
    }

    .feature-card b {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, var(--green), var(--gold));
      color: #07120f;
      font-size: 0.92rem;
    }

    .feature-card h3,
    .step h3 {
      margin-bottom: 8px;
      font-size: 1.22rem;
    }

    .feature-card p,
    .step p,
    .quote p,
    details p {
      margin-bottom: 0;
      color: var(--muted);
      line-height: 1.55;
    }

    .content {
      background: #0b1713;
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
      gap: 34px;
      align-items: center;
    }

    .ticks {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 22px;
    }

    .tick {
      min-height: 44px;
      display: flex;
      align-items: center;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.07);
      padding: 0 12px;
      color: #ecfff3;
      font-weight: 840;
    }

    .poster-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .poster {
      min-height: 245px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.13);
      padding: 14px;
      background-position: center;
      background-size: cover;
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
      position: relative;
      isolation: isolate;
    }

    .poster::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.82));
    }

    .poster small {
      margin-bottom: 5px;
      color: #d8fff0;
      font-weight: 850;
    }

    .poster strong {
      font-size: 1.2rem;
      line-height: 1.1;
    }

    .poster-football {
      cursor: pointer;
    }

    .poster-football:focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 3px;
    }

    .poster-football { background-image: url("../image/poster-football.png"); }
    .poster-drama { background-image: url("../image/poster-drama.png"); }
    .poster-tv { background-image: url("../image/poster-tv.png"); }
    .poster-goals { background-image: url("../image/poster-goals.png"); }
    .poster-drama-express { background-image: url("../image/poster-drama-express.png"); }
    .poster-family-tv { background-image: url("../image/poster-family-tv.png"); }

    .lottery {
      padding: 70px 0;
      background: linear-gradient(180deg, #07120f, #11130f);
    }

    .lottery-grid {
      display: grid;
      grid-template-columns: minmax(280px, 0.86fr) minmax(300px, 1fr);
      gap: 34px;
      align-items: center;
    }

    .gift-board {
      display: grid;
      justify-items: center;
      gap: 14px;
    }

    .gift-grid {
      position: relative;
      width: min(370px, 88vw);
      aspect-ratio: 1;
      overflow: hidden;
      border-radius: 18px;
      border: 1px solid rgba(255, 209, 102, 0.42);
      background: #160f09 url("../image/lucky-prize-grid.png") center / cover no-repeat;
      box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.08);
    }

    .gift-grid::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 32.9%, rgba(255,255,255,0.74) 33.2%, transparent 33.8%, transparent 66.1%, rgba(255,255,255,0.74) 66.4%, transparent 67%),
        linear-gradient(180deg, transparent 32.9%, rgba(255,255,255,0.74) 33.2%, transparent 33.8%, transparent 66.1%, rgba(255,255,255,0.74) 66.4%, transparent 67%);
      opacity: 0.4;
    }

    .gift-cell {
      position: absolute;
      width: 33.333%;
      height: 33.333%;
      border: 0;
      background: transparent;
    }

    .gift-cell.is-active {
      box-shadow: inset 0 0 0 5px var(--gold), inset 0 0 30px rgba(255, 209, 102, 0.9);
      background: rgba(255, 209, 102, 0.14);
    }

    .chance {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid rgba(255, 209, 102, 0.38);
      background: rgba(255, 209, 102, 0.14);
      padding: 0 14px;
      color: #fff5d6;
      font-weight: 920;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .step {
      padding: 22px;
    }

    .step b {
      display: block;
      margin-bottom: 16px;
      color: var(--gold);
      font-size: 2rem;
      line-height: 1;
    }

    .quotes {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .quote {
      padding: 20px;
    }

    .quote strong {
      display: block;
      margin-top: 14px;
      color: #fff;
    }

    .faq {
      display: grid;
      gap: 10px;
      max-width: 860px;
      margin: 0 auto;
    }

    details {
      padding: 17px 18px;
    }

    summary {
      cursor: pointer;
      font-weight: 900;
    }

    details p {
      padding-top: 11px;
    }

    .final {
      position: relative;
      overflow: hidden;
      padding: 78px 0 96px;
      text-align: center;
      background:
        linear-gradient(90deg, rgba(7, 18, 15, 0.92), rgba(7, 18, 15, 0.68)),
        url("../image/hero-mexico-streaming.png") center / cover no-repeat;
    }

    .final h2 {
      max-width: 790px;
      margin-inline: auto;
    }

    .final p {
      max-width: 620px;
      margin: 0 auto 24px;
      color: #e8f3ef;
      font-size: 1.1rem;
      line-height: 1.58;
    }

    .mobile-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 45;
      display: none;
      padding: 10px 14px max(10px, env(safe-area-inset-bottom));
      border-top: 1px solid rgba(255,255,255,0.12);
      background: rgba(7, 18, 15, 0.9);
      backdrop-filter: blur(16px);
    }

    .mobile-bar .btn {
      width: 100%;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 90;
      display: none;
      place-items: center;
      padding: 18px;
      background: rgba(0, 0, 0, 0.72);
      backdrop-filter: blur(10px);
    }

    .modal.is-open {
      display: grid;
    }

    .prize-card {
      width: min(390px, 100%);
      overflow: hidden;
      border-radius: 18px;
      border: 1px solid rgba(255, 209, 102, 0.4);
      background: linear-gradient(180deg, #35130a, #120605);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
      text-align: center;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 36px;
      height: 36px;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 1.4rem;
      cursor: pointer;
    }

    .prize-img {
      width: 150px;
      aspect-ratio: 1;
      margin: 34px auto 14px;
      border-radius: 16px;
      border: 2px solid rgba(255,255,255,0.72);
      background:
        linear-gradient(135deg, rgba(255, 209, 102, 0.12), rgba(34, 197, 94, 0.12)),
        url("../image/lucky-prize-grid.png") 0 0 / 300% 300% no-repeat;
    }

    .prize-body {
      padding: 0 24px 26px;
    }

    .prize-body h3 {
      margin-bottom: 8px;
      font-size: 1.7rem;
    }

    .prize-body p {
      margin-bottom: 16px;
      color: #f5ead4;
      line-height: 1.5;
    }

    .notice {
      margin-bottom: 18px;
      border-radius: var(--radius);
      background: rgba(255, 209, 102, 0.12);
      border: 1px solid rgba(255, 209, 102, 0.26);
      padding: 11px;
      color: #fff5d6;
      font-size: 0.93rem;
      font-weight: 820;
      line-height: 1.42;
    }

    @media (max-width: 920px) {
      .nav-links a:not(.btn) {
        display: none;
      }

      .hero {
        min-height: auto;
      }

      .hero-grid,
      .content-grid,
      .lottery-grid {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        padding-top: 54px;
      }

      .phone {
        max-width: 390px;
      }

      .feature-grid,
      .steps,
      .quotes {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 620px) {
      .shell,
      .hero-grid {
        width: min(100% - 28px, 1160px);
      }

      .nav-inner {
        min-height: 64px;
      }

      .nav .btn {
        min-height: 42px;
        padding: 0 13px;
        font-size: 0.9rem;
      }

      .brand span {
        font-size: 1rem;
      }

      .hero-grid {
        padding: 42px 0 44px;
        gap: 26px;
      }

      h1 {
        font-size: clamp(2.35rem, 13vw, 3.95rem);
      }

      .cta-row .btn {
        width: 100%;
      }

      .trust-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
      }

      .trust-row span {
        justify-content: center;
        padding: 0 6px;
        font-size: 0.8rem;
      }

      .screen {
        min-height: 420px;
      }

      .section,
      .lottery {
        padding: 48px 0;
      }

      .content-grid {
        gap: 24px;
      }

      .ticks,
      .poster-grid {
        grid-template-columns: 1fr;
      }

      .poster {
        min-height: 220px;
      }

      .mobile-bar {
        display: block;
      }

      .final {
        padding-bottom: 116px;
      }
    }