:root {
      --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
      --font-body: 'Inter', system-ui, sans-serif;
      --bg: #0a0a0a;
      --bg2: #141414;
      --card: #141414;
      --card2: #1e1e1e;
      --border: rgba(255, 255, 255, .06);
      --border2: rgba(255, 255, 255, .1);
      --text: #fff;
      --tm: #999;
      --td: #666;
      --red: #e53935;
      --red2: rgba(229, 57, 53, .15);
      --gold: #FFB800;
      --gd: rgba(255, 184, 0, .1);
      --green: #10B981;
      --r: 14px;
      --rl: 18px;
      --shadow: 0 8px 32px rgba(0, 0, 0, .4)
    }

    /* Permanent overflow-x hidden on html and body (defensive, plus
       max-width:100% so percentages cascade from the viewport — using
       100vw makes the scrollbar-area count and can itself add a few
       px of overflow on Windows with classic scrollbars). */
    html, body {
      overflow-x: hidden !important;
      max-width: 100% !important
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased
    }

    .skip-link {
      position: absolute;
      top: -999px;
      left: 8px;
      background: var(--gold);
      color: var(--bg);
      padding: 8px 16px;
      border-radius: var(--r);
      font-weight: 700;
      font-size: 13px;
      z-index: 9999;
      transition: top .1s
    }

    .skip-link:focus {
      top: 8px
    }

    nav {
      background: rgba(10, 10, 10, .95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 0 24px
    }

    .ni {
      max-width: 1200px;
      margin: 0 auto;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

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

    .li {
      background: none;
      color: #e53935;
      font-size: 20px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      width: auto;
      height: auto;
      border-radius: 0;
      box-shadow: none
    }

    .lt {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 800;
      color: #e53935
    }

    .lt span {
      color: #e53935
    }

    .nl {
      display: flex;
      gap: 2px;
      list-style: none
    }

    .nl a {
      color: #999;
      font-size: 13px;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 4px;
      transition: color .2s;
      text-decoration: none
    }

    .nl a:hover,
    .nl a.ac {
      color: #fff;
      background: none
    }

    .hero {
      text-align: center;
      padding: 64px 24px 40px;
      background: #0a0a0a;
      position: relative;
      /* overflow:hidden removed — was clipping the search dropdown
         (.hero-suggestions extends below the hero). The backdrop
         poster collage is already clipped by .hero-bg { overflow:hidden }
         and horizontal page overflow is clipped by html,body. */
      max-width: 100%;
      box-sizing: border-box
    }

    /* gradient overlay: left opaque → right transparent over posters */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(10,10,10,.98) 35%, rgba(10,10,10,.75) 65%, rgba(10,10,10,.10) 100%),
        linear-gradient(180deg, rgba(10,10,10,.40) 0%, transparent 22%, transparent 78%, rgba(10,10,10,.40) 100%);
      z-index: 1;
      pointer-events: none
    }

    /* hero content sits above overlay */
    .hero-content {
      position: relative;
      z-index: 2
    }

    /* poster collage — hidden on mobile, shown on desktop */
    .hero-bg {
      display: none
    }

    @media(min-width:769px) {
      .hero-bg {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 56%;
        z-index: 0;
        overflow: hidden
      }

      .hero-bg img {
        position: absolute;
        width: 122px;
        height: 183px;
        object-fit: cover;
        border-radius: 8px;
        filter: brightness(.6) saturate(1.4) blur(1px);
        box-shadow: 0 4px 24px rgba(0,0,0,.9)
      }

      .hero-bg img:nth-child(1) { top: -18px;   right: 14px  }
      .hero-bg img:nth-child(2) { top:  22px;   right: 148px }
      .hero-bg img:nth-child(3) { top:  -8px;   right: 282px }
      .hero-bg img:nth-child(4) { bottom: -18px; right: 14px  }
      .hero-bg img:nth-child(5) { bottom:  12px; right: 148px }
      .hero-bg img:nth-child(6) { bottom:  -8px; right: 282px }
    }

    .hb {
      display: inline-block;
      background: rgba(16,185,129,.10);
      color: #10b981;
      font-size: 12px;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 100px;
      border: 1px solid rgba(16,185,129,.25);
      margin-bottom: 16px;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 16px;
      line-height: 1.1
    }

    .hero h1 span {
      color: var(--red)
    }

    .hero p {
      font-size: 18px;
      color: #999;
      max-width: 560px;
      margin: 0 auto 24px;
      line-height: 1.6
    }

    .sb {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      position: relative;
      background: #1a1a1a;
      border: 2px solid #333;
      border-radius: 50px;
      overflow: hidden;
      transition: border-color .2s
    }

    .sb:focus-within {
      border-color: var(--red)
    }

    .sb-icon {
      position: absolute;
      left: 20px;
      font-size: 16px;
      pointer-events: none;
      line-height: 1;
      color: #666;
      z-index: 1
    }

    .sb input {
      flex: 1;
      padding: 18px 16px 18px 52px;
      border: none;
      background: transparent;
      font-family: inherit;
      font-size: 16px;
      outline: none;
      color: var(--text)
    }

    .sb input::placeholder {
      color: #555
    }

    .sb button {
      flex-shrink: 0;
      padding: 10px 24px;
      margin: 6px 6px 6px 0;
      border: none;
      border-radius: 40px;
      background: var(--red);
      color: #fff;
      font-family: inherit;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s;
      white-space: nowrap
    }

    .sb button:hover {
      background: #f44336
    }

    .main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 24px 48px
    }

    .tabs {
      display: flex;
      gap: 6px;
      margin-bottom: 12px;
      justify-content: center;
      flex-wrap: wrap
    }

    .tab {
      padding: 9px 18px;
      border: 1.5px solid var(--border);
      border-radius: 100px;
      background: var(--card);
      font-family: inherit;
      font-size: 12px;
      font-weight: 600;
      color: var(--tm);
      cursor: pointer;
      transition: all .2s
    }

    .tab:hover {
      border-color: var(--border2);
      color: var(--text)
    }

    .tab.ac,
    [role="tab"][aria-selected="true"] {
      border-color: var(--red);
      background: var(--red2);
      color: var(--red)
    }

    .st {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding-top: 36px
    }

    .st .ic {
      font-size: 22px
    }

    .sh-link {
      margin-left: auto;
      font-size: 12px;
      font-weight: 600;
      color: var(--tm);
      white-space: nowrap;
      transition: color .2s
    }

    .sh-link:hover {
      color: var(--red)
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
      margin-bottom: 32px
    }

    @media(max-width:1024px) {
      .cards-grid {
        grid-template-columns: repeat(3, 1fr)
      }
    }

    @media(max-width:640px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    .card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 2/3;
      cursor: pointer;
      transition: transform 200ms ease;
      background: #141414;
      display: block
    }

    .card:hover {
      transform: scale(1.04)
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block
    }

    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 200ms;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 12px
    }

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

    .card-badge-score {
      position: absolute;
      top: 8px;
      right: 8px;
      background: rgba(0, 0, 0, .75);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 3px 7px;
      border-radius: 20px
    }

    .card-badge-platform {
      position: absolute;
      top: 8px;
      left: 8px;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 20px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: calc(100% - 16px)
    }

    .card-title {
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      margin: 0 0 4px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden
    }

    .card-meta {
      color: #999;
      font-size: 12px;
      margin: 0
    }

    .card-btn {
      display: block;
      margin-top: 8px;
      background: #e53935;
      color: #fff;
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 12px;
      text-align: center;
    }

    .ranking-list {
      display: flex;
      flex-direction: column
    }

    .rl-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      text-decoration: none;
      color: inherit;
      transition: background .15s, padding .15s;
      border-radius: 8px
    }

    .rl-row:hover {
      background: rgba(255, 255, 255, .04);
      padding-left: 8px
    }

    .rl-num {
      min-width: 32px;
      font-size: 22px;
      font-weight: 800;
      color: var(--red);
      text-align: center;
      line-height: 1;
      flex-shrink: 0
    }

    .rl-badge {
      min-width: 30px;
      font-size: 12px;
      font-weight: 700;
      text-align: center;
      flex-shrink: 0
    }

    .rl-badge.up {
      color: #10b981
    }

    .rl-badge.down {
      color: var(--red)
    }

    .rl-badge.same,
    .rl-badge.new {
      color: var(--td)
    }

    .rl-poster {
      width: 45px;
      height: 65px;
      border-radius: 6px;
      object-fit: cover;
      flex-shrink: 0;
      display: block
    }

    .rl-poster-ph {
      width: 45px;
      height: 65px;
      border-radius: 6px;
      background: var(--bg2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0
    }

    .rl-info {
      flex: 1;
      min-width: 0
    }

    .rl-title {
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis
    }

    .rl-meta {
      font-size: 12px;
      color: var(--td);
      margin-top: 1px
    }

    .rl-pills {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
      margin-top: 3px
    }

    .rl-pill {
      font-size: 12px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 4px;
      background: rgba(255, 255, 255, .08);
      color: var(--tm)
    }

    .rl-score {
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      min-width: 30px;
      text-align: right;
      flex-shrink: 0
    }

    .rl-arrow {
      font-size: 18px;
      color: var(--td);
      margin-left: 2px;
      flex-shrink: 0
    }

    @media(max-width:600px) {
      .rl-pills {
        display: none
      }
    }

    .ranking-top10-wrap {
      position: relative
    }

    .ranking-top10 {
      display: flex;
      gap: 0;
      overflow-x: auto;
      padding: 24px 0 16px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory
    }

    .ranking-top10::-webkit-scrollbar {
      display: none
    }

    .rt-item {
      flex-shrink: 0;
      width: 210px;
      height: 240px;
      position: relative;
      text-decoration: none;
      scroll-snap-align: start;
      display: block;
      cursor: pointer
    }

    .rt-num {
      position: absolute;
      bottom: -8px;
      left: -8px;
      font-size: 120px;
      font-weight: 800;
      color: #1f1f1f;
      line-height: 1;
      z-index: 1;
      font-family: system-ui, -apple-system, sans-serif;
      -webkit-text-stroke: 2px rgba(255, 255, 255, 0.06);
      letter-spacing: -4px
    }

    .rt-num.red {
      color: var(--red);
      -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1)
    }

    .rt-num.silver {
      color: #8a8a8a;
      -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1)
    }

    .rt-num.bronze {
      color: #a65c2e;
      -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1)
    }

    .rt-poster {
      position: absolute;
      bottom: 24px;
      left: 70px;
      width: 140px;
      height: 200px;
      border-radius: 8px;
      object-fit: cover;
      z-index: 2;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
      transition: transform .25s ease
    }

    .rt-item:hover .rt-poster {
      transform: scale(1.05) translateY(-4px)
    }

    .rt-badge {
      position: absolute;
      top: 0;
      left: 70px;
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 700;
      z-index: 3;
      backdrop-filter: blur(4px);
      background: rgba(0, 0, 0, 0.65);
      color: #fff
    }

    .rt-badge.up {
      background: rgba(16, 185, 129, 0.85)
    }

    .rt-badge.down {
      background: rgba(229, 57, 53, 0.85)
    }

    .rt-badge.same,
    .rt-badge.new {
      background: rgba(85, 85, 85, 0.85)
    }

    /* ===== SERIES TRENDING — CARDS GRANDES CON LOGOS ===== */
    .rt-item.rt-series {
      width: 240px;
      height: 280px
    }

    .rt-item.rt-series .rt-num {
      font-size: 140px;
      bottom: -10px;
      left: -10px;
      -webkit-text-stroke: 3px rgba(255, 255, 255, 0.08)
    }

    .rt-item.rt-series .rt-poster {
      width: 155px;
      height: 225px;
      left: 78px;
      bottom: 28px;
      border-radius: 12px;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5)
    }

    .rt-item.rt-series:hover .rt-poster {
      transform: scale(1.06) translateY(-6px)
    }

    /* Badge de plataforma con logo SVG */
    .rt-badge-platform {
      position: absolute;
      top: 4px;
      left: 90px;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      z-index: 3;
      backdrop-filter: blur(6px);
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.08)
    }

    .rt-badge-platform img {
      width: 20px;
      height: 20px;
      object-fit: contain
    }

    /* Colores específicos por plataforma */
    .rt-badge-platform.platform-netflix {
      background: rgba(229, 9, 20, 0.18);
      border-color: rgba(229, 9, 20, 0.3);
      color: #ff6b7a
    }

    .rt-badge-platform.platform-prime {
      background: rgba(0, 168, 225, 0.15);
      border-color: rgba(0, 168, 225, 0.3);
      color: #4dd4ff
    }

    .rt-badge-platform.platform-hbo {
      background: rgba(153, 30, 245, 0.15);
      border-color: rgba(153, 30, 245, 0.3);
      color: #c47aff
    }

    .rt-badge-platform.platform-disney {
      background: rgba(17, 60, 207, 0.15);
      border-color: rgba(17, 60, 207, 0.3);
      color: #6b8fff
    }

    .rt-badge-platform.platform-movistar {
      background: rgba(0, 163, 224, 0.15);
      border-color: rgba(0, 163, 224, 0.3);
      color: #5dd1ff
    }

    .rt-badge-platform.platform-apple {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.15);
      color: #fff
    }

    .rt-badge-platform.platform-filmin {
      background: rgba(255, 107, 53, 0.15);
      border-color: rgba(255, 107, 53, 0.3);
      color: #ff9e7a
    }

    .rt-badge-platform.platform-mubi {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.15);
      color: #fff
    }

    .rt-badge-platform.platform-skyshowtime {
      background: rgba(0, 120, 255, 0.15);
      border-color: rgba(0, 120, 255, 0.3);
      color: #7ab8ff
    }

    .rt-badge-platform.platform-pluto {
      background: rgba(255, 153, 0, 0.15);
      border-color: rgba(255, 153, 0, 0.3);
      color: #ffbf5e
    }

    /* Responsive series cards */
    @media(max-width:1024px) {
      .rt-item.rt-series {
        width: 220px;
        height: 260px
      }

      .rt-item.rt-series .rt-num {
        font-size: 125px;
        bottom: -8px;
        left: -8px
      }

      .rt-item.rt-series .rt-poster {
        width: 145px;
        height: 205px;
        left: 72px;
        bottom: 26px
      }

      .rt-badge-platform {
        left: 72px
      }
    }

    @media(max-width:640px) {
      .rt-item.rt-series {
        width: 170px;
        height: 210px
      }

      .rt-item.rt-series .rt-num {
        font-size: 100px;
        bottom: -4px;
        left: -4px;
        letter-spacing: -3px
      }

      .rt-item.rt-series .rt-poster {
        width: 115px;
        height: 165px;
        left: 58px;
        bottom: 22px
      }

      .rt-badge-platform {
        left: 58px
      }
    }

    /* Películas — mantener tamaño original */
    @media(max-width:1024px) {
      .rt-item:not(.rt-series) {
        width: 190px;
        height: 220px
      }

      .rt-item:not(.rt-series) .rt-num {
        font-size: 100px;
        bottom: -4px;
        left: -4px
      }

      .rt-item:not(.rt-series) .rt-poster {
        width: 125px;
        height: 175px;
        left: 62px;
        bottom: 20px
      }

      .rt-item:not(.rt-series) .rt-badge {
        left: 62px
      }
    }

    @media(max-width:640px) {
      .rt-item:not(.rt-series) {
        width: 160px;
        height: 190px
      }

      .rt-item:not(.rt-series) .rt-num {
        font-size: 85px;
        bottom: -2px;
        left: -2px;
        letter-spacing: -2px
      }

      .rt-item:not(.rt-series) .rt-poster {
        width: 105px;
        height: 150px;
        left: 52px;
        bottom: 16px
      }

      .rt-item:not(.rt-series) .rt-badge {
        left: 52px
      }
    }

    .rt-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(20, 20, 20, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 18px;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity .2s, background .2s;
      backdrop-filter: blur(4px);
      opacity: 1;
      pointer-events: auto
    }

    .rt-arrow:hover {
      background: rgba(50, 50, 50, 0.9)
    }

    .rt-arrow.hidden {
      opacity: 0;
      pointer-events: none
    }

    .rt-arrow-prev {
      left: 4px
    }

    .rt-arrow-next {
      right: 4px
    }

    @media(max-width:768px) {
      .rt-arrow {
        display: none
      }
    }

    .loading {
      text-align: center;
      padding: 40px;
      color: var(--td);
      font-size: 14px
    }

    .srbox {
      display: none;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 20px;
      max-width: 700px;
      margin: 0 auto 32px
    }

    .sri {
      padding: 12px 0;
      display: flex;
      gap: 14px;
      align-items: center;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
      transition: background .15s
    }

    .sri:hover {
      background: rgba(255, 255, 255, .03)
    }

    .sri+.sri {
      border-top: 1px solid var(--border)
    }

    .sri img {
      width: 60px;
      height: 90px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0
    }

    .sri h3 {
      font-size: 14px;
      font-weight: 700
    }

    .sri .sg {
      font-size: 12px;
      color: var(--tm)
    }

    .sri .sp {
      display: flex;
      gap: 4px;
      margin-top: 4px;
      flex-wrap: wrap
    }

    .sri .spv {
      font-size: 11px;
      font-weight: 700;
      color: #fff;
      background: var(--red);
      padding: 2px 8px;
      border-radius: 100px
    }

    .sri .spv.free {
      background: var(--green)
    }

    .plats {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 12px;
      margin-bottom: 32px
    }

    .plat {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--rl);
      padding: 18px;
      transition: all .25s;
      display: block
    }

    .plat:hover {
      border-color: rgba(229, 9, 20, .3);
      transform: translateY(-3px);
      box-shadow: var(--shadow)
    }

    .plat .ph {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px
    }

    .plat .pi {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0
    }

    .plat h3 {
      font-size: 14px;
      font-weight: 700
    }

    .plat .ptg {
      display: flex;
      gap: 4px;
      margin-top: 3px
    }

    .plat .pt {
      font-size: 11px;
      font-weight: 600;
      padding: 2px 7px;
      border-radius: 100px;
      background: rgba(255, 255, 255, .06);
      color: var(--tm)
    }

    .plat .pt.gn {
      background: rgba(16, 185, 129, .15);
      color: var(--green)
    }

    .plat .pd {
      font-size: 12px;
      color: var(--tm);
      line-height: 1.5
    }

    .faq {
      max-width: 700px;
      margin: 0 auto;
      padding: 0 24px 32px
    }

    .faq-title {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 16px;
      padding-top: 8px
    }

    .fi {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 16px;
      margin-bottom: 8px;
      cursor: pointer;
      transition: border-color .2s
    }

    .fi:hover {
      border-color: var(--border2)
    }

    .fi h3 {
      font-size: 13px;
      font-weight: 700;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px
    }

    .fi .ar {
      color: var(--td);
      font-size: 16px;
      transition: transform .2s;
      flex-shrink: 0
    }

    .fi.op .ar {
      transform: rotate(180deg)
    }

    .fi.op {
      border-color: rgba(229, 9, 20, .25)
    }

    .fi p {
      font-size: 13px;
      color: var(--tm);
      line-height: 1.65;
      margin-top: 10px;
      display: none
    }

    .fi.op p {
      display: block
    }

    .seo {
      max-width: 700px;
      margin: 0 auto;
      padding: 0 24px 32px
    }

    .seo h2 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px
    }

    .seo h3 {
      font-size: 14px;
      font-weight: 700;
      margin: 16px 0 6px;
      color: var(--text)
    }

    .seo p {
      font-size: 13px;
      color: var(--tm);
      line-height: 1.7;
      margin-bottom: 8px
    }

    .seo ul {
      font-size: 13px;
      color: var(--tm);
      line-height: 1.7;
      padding-left: 20px;
      margin-bottom: 8px
    }

    .promo {
      max-width: 1200px;
      margin: 0 auto;
      padding: 4px 24px 28px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center
    }

    .promo-label {
      font-size: 12px;
      color: var(--td);
      margin-right: 4px
    }

    .promo a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 600;
      color: var(--tm);
      transition: border-color .2s, color .2s
    }

    .promo a:hover {
      border-color: rgba(229, 57, 53, .35);
      color: var(--text)
    }

    .promo .prb {
      font-size: 12px;
      color: var(--td)
    }

    footer {
      background: #0f0f0f;
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding: 48px 24px 28px
    }

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

    .footer-cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-bottom: 40px
    }

    .footer-col h4 {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: #555;
      margin-bottom: 14px
    }

    .footer-col a {
      display: block;
      color: #666;
      font-size: 13px;
      text-decoration: none;
      margin-bottom: 8px;
      transition: color .2s
    }

    .footer-col a:hover {
      color: #fff
    }

    .footer-copyright {
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding-top: 20px;
      text-align: center;
      font-size: 12px;
      color: #444
    }

    .footer-copyright a {
      color: #555;
      text-decoration: none;
      transition: color .2s
    }

    .footer-copyright a:hover {
      color: #999
    }

    @media(max-width:640px) {
      .footer-cols {
        grid-template-columns: 1fr;
        gap: 24px
      }
    }

    .amazon-banner {
      background: linear-gradient(135deg, rgba(229, 57, 53, .08) 0%, rgba(0, 168, 225, .05) 100%);
      border: 1.5px solid rgba(229, 57, 53, .18);
      border-radius: 20px;
      padding: 24px 28px;
      margin: 0 auto 32px;
      max-width: 1200px;
      text-align: center
    }

    .amazon-banner h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px
    }

    .amazon-banner p {
      font-size: 13px;
      color: var(--tm);
      line-height: 1.6;
      margin-bottom: 16px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto
    }

    .amazon-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #e53935;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 12px 24px;
      border-radius: 100px;
      text-decoration: none;
      transition: transform .15s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(229, 57, 53, .3)
    }

    .amazon-btn:hover {
      transform: scale(1.04)
    }

    @media(max-width:768px) {
      .amazon-banner {
        padding: 20px
      }

      .amazon-banner h3 {
        font-size: 14px
      }

      .amazon-btn {
        padding: 10px 20px;
        font-size: 12px
      }
    }

    .hm {
      display: none;
      background: none;
      border: none;
      color: var(--text);
      font-size: 24px;
      cursor: pointer;
      padding: 4px 8px;
      line-height: 1;
      border-radius: 8px
    }

    .nm {
      display: none;
      list-style: none;
      background: rgba(22, 22, 29, .96);
      backdrop-filter: blur(16px);
      border-top: 1px solid var(--border)
    }

    .nm li a {
      display: block;
      padding: 16px 24px;
      color: var(--td);
      font-size: 14px;
      font-weight: 600;
      border-bottom: 1px solid var(--border)
    }

    .nm li a:hover {
      color: var(--gold);
      background: var(--gd)
    }

    @media(prefers-reduced-motion:reduce) {
      * {
        transition: none !important;
        animation: none !important
      }

      html {
        scroll-behavior: auto
      }
    }

    @media(max-width:768px) {

      /* Nav */
      .nl {
        display: none
      }

      .hm {
        display: flex;
        align-items: center
      }

      .nm.op {
        display: flex;
        flex-direction: column
      }

      /* Hero - padding reducido al 50% */
      .hero {
        padding: 44px 16px 32px
      }

      .hero h1 {
        font-size: clamp(24px, 7vw, 36px);
        letter-spacing: -0.5px
      }

      .hero p {
        font-size: 15px;
        margin-bottom: 20px
      }

      /* Buscador: mantener barra unificada, botón compacto */
      .sb button {
        padding: 8px 14px;
        font-size: 13px;
        margin: 5px 5px 5px 0
      }

      .sb input {
        padding: 14px 12px 14px 44px;
        font-size: 15px
      }

      .sb-icon {
        left: 14px;
        font-size: 14px
      }

      /* Tabs categoría: scroll horizontal una sola fila */
      .tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px
      }

      .tabs::-webkit-scrollbar {
        display: none
      }

      .tab {
        flex-shrink: 0
      }

      /* Secciones: espaciado reducido */
      .main {
        padding: 12px 14px 12px
      }

      .section-header {
        padding-top: 16px;
        padding-bottom: 8px;
        margin-bottom: 12px
      }

      .section-footer {
        margin-bottom: 14px
      }

      .plats {
        grid-template-columns: 1fr
      }
    }

    .hero-search-wrap {
      position: relative;
      max-width: 600px;
      margin: 0 auto;
      z-index: 1001    /* asegura que el wrap mantiene su propio stacking context por encima del resto */
    }

    .hero-suggestions {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      right: 0;
      width: auto;
      background: #1a1a2e;        /* sólido — no transparencia para que cubra chips/plataformas */
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 16px;
      padding: 8px;
      z-index: 1000;              /* dominante sobre cualquier contenido del hero */
      display: none;
      box-shadow: 0 24px 60px rgba(0, 0, 0, .85), 0 8px 24px rgba(0, 0, 0, .5);
      max-height: 480px;
      overflow-y: auto;
      overscroll-behavior: contain
    }
    .hero-suggestions::-webkit-scrollbar{width:8px}
    .hero-suggestions::-webkit-scrollbar-track{background:transparent}
    .hero-suggestions::-webkit-scrollbar-thumb{background:rgba(255,255,255,.12);border-radius:4px}

    .hero-suggestions.active {
      display: block
    }

    .hero-suggestion {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 12px;
      border-radius: 10px;
      transition: background .12s;
      cursor: pointer;
      text-decoration: none;
      color: inherit
    }

    .hero-suggestion:hover,
    .hero-suggestion.kbfocus {
      background: rgba(229, 9, 20, .12)
    }

    .hero-suggestion img {
      width: 32px;
      height: 48px;
      border-radius: 5px;
      object-fit: cover;
      flex-shrink: 0;
      background: var(--bg2)
    }

    .sug-info {
      flex: 1;
      min-width: 0
    }

    .sug-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis
    }

    .sug-meta {
      font-size: 12px;
      color: var(--td);
      margin-top: 2px
    }

    .sug-type {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      padding: 1px 6px;
      border-radius: 4px;
      margin-left: 6px;
      vertical-align: middle
    }

    .sug-type.movie {
      background: rgba(229,9,20,.18);
      color: #E50914
    }

    .sug-type.tv {
      background: rgba(33,150,243,.18);
      color: #2196F3
    }

    .hero-no-sug {
      padding: 12px;
      color: var(--td);
      font-size: 13px;
      text-align: center
    }

    @media(max-width:768px) {
      .hero-suggestions {
        left: 12px;
        right: 12px
      }
    }

    .offers-section {
      background: var(--card);
      border-radius: 16px;
      padding: 28px 24px;
      margin: 44px 0;
      border: 1px solid var(--border)
    }

    .offers-section h2 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 6px;
      text-align: center;
      color: var(--text)
    }

    .offers-subtitle {
      text-align: center;
      color: var(--tm);
      margin-bottom: 24px;
      font-size: 14px
    }

    .offers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      margin-bottom: 12px
    }

    .offer-card {
      background: var(--bg);
      border-radius: 14px;
      padding: 20px;
      border: 1px solid var(--border);
      position: relative;
      transition: border-color .2s, transform .15s;
      display: flex;
      flex-direction: column
    }

    .offer-card:hover {
      border-color: rgba(255, 153, 0, .35);
      transform: translateY(-2px)
    }

    .offer-card.featured {
      border-color: rgba(255, 153, 0, .4)
    }

    .offer-card--share {
      border-color: #14b8a6;
      background: linear-gradient(135deg, rgba(20, 184, 166, .07) 0%, rgba(245, 158, 11, .07) 100%)
    }

    .offer-card--share:hover {
      border-color: #14b8a6
    }

    .offer-ribbon {
      position: absolute;
      top: 0;
      right: 0;
      background: linear-gradient(90deg, #14b8a6, #f59e0b);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      padding: 5px 12px;
      border-radius: 0 14px 0 10px
    }

    .btn-share {
      background: linear-gradient(90deg, #14b8a6, #f59e0b);
      color: #0a0a0f
    }

    .btn-share:hover {
      filter: brightness(1.08)
    }

    .offer-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px
    }

    .offer-icon {
      font-size: 22px;
      line-height: 1
    }

    .offer-logo {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--logo-bg, #333)
    }

    .offer-logo img,
    .offer-logo svg {
      width: 22px;
      height: 22px;
      object-fit: contain;
      display: block;
      filter: brightness(0) invert(1)
    }

    .offer-logo svg {
      filter: none
    }

    .offer-logo--share {
      background: linear-gradient(135deg, #14b8a6, #f59e0b)
    }

    .offer-logo--disney {
      background: #113CCF
    }

    .offer-logo--disney svg {
      width: 32px;
      height: 22px
    }

    .offer-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin: 0
    }

    .offer-price {
      font-size: 22px;
      font-weight: 800;
      color: var(--gold);
      margin: 8px 0 2px
    }

    .offer-original {
      font-size: 12px;
      color: var(--td)
    }

    .offer-features {
      list-style: none;
      margin: 12px 0;
      padding: 0;
      font-size: 13px;
      color: var(--tm);
      flex: 1
    }

    .offer-features li {
      margin-bottom: 5px
    }

    .offer-btn {
      display: block;
      width: 100%;
      padding: 10px;
      border-radius: 8px;
      text-align: center;
      text-decoration: none;
      font-weight: 700;
      font-size: 13px;
      transition: all .15s;
      margin-bottom: 6px;
      border: none;
      cursor: pointer
    }

    .btn-primary {
      background: #e8890a;
      color: #fff
    }

    .btn-primary:hover {
      background: #ff9900
    }

    .btn-secondary {
      background: var(--card2);
      color: var(--text);
      border: 1px solid var(--border)
    }

    .btn-secondary:hover {
      border-color: var(--tm);
      color: var(--gold)
    }

    .offer-note {
      font-size: 12px;
      color: var(--td);
      text-align: center;
      margin: 0
    }

    .affiliate-disclaimer {
      text-align: center;
      font-size: 12px;
      color: var(--td);
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      line-height: 1.5
    }

    .free-now-section {
      margin: 44px 0
    }

    .free-now-section h2 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text)
    }

    .free-chips {
      display: flex;
      gap: 10px;
      flex-wrap: wrap
    }

    .free-chips a {
      display: inline-block;
      padding: 8px 16px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: var(--tm);
      text-decoration: none;
      transition: all .2s
    }

    .free-chips a:hover {
      border-color: var(--green);
      color: var(--green)
    }

    @media(max-width:680px) {
      .offers-section {
        padding: 20px 16px
      }

      .offers-grid {
        grid-template-columns: 1fr
      }

      .offer-price {
        font-size: 20px
      }

      .free-chips a {
        padding: 7px 14px;
        font-size: 12px
      }
    }

    .content-card {
      flex-shrink: 0;
      width: 160px;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column
    }

    .content-card .card {
      width: 100%;
      border-radius: 14px;
      transition: transform 200ms ease;
      display: block
    }

    .content-card:hover .card {
      transform: scale(1.04)
    }

    .grid .content-card {
      width: 100%
    }

    @media(max-width:768px) {
      .content-card {
        width: 140px
      }

      .grid .content-card {
        width: 140px;
        flex-shrink: 0;
        scroll-snap-align: start
      }
    }

    .card-affiliate {
      margin-top: 8px;
      padding: 6px 10px;
      background: #1a1a2e;
      border-radius: 8px;
      border: 1px solid #2a2a3e;
      text-align: center;
      transition: all .2s
    }

    .card-affiliate:hover {
      border-color: #ff6b35;
      background: #2a1a1a
    }

    /* Section header */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      padding-top: 34px;
      padding-bottom: 10px;
      gap: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .section-header h2 {
      font-size: 22px;
      font-weight: 800;
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0;
      flex-wrap: wrap
    }

    .section-header .ic {
      font-size: 22px
    }

    .section-count {
      font-size: 13px;
      color: var(--tm);
      font-weight: 500;
      margin-left: 4px
    }

    .section-actions {
      display: flex;
      gap: 8px;
      align-items: center
    }

    .scroll-btn {
      background: var(--card);
      border: 1px solid var(--border);
      color: var(--text);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transition: all .2s
    }

    .scroll-btn:hover {
      border-color: var(--red);
      color: var(--red)
    }

    .view-all-link {
      color: #e53935;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
      transition: color .2s
    }

    .view-all-link:hover {
      color: #ff5252
    }

    /* Section footer */
    .section-footer {
      text-align: center;
      margin-top: 4px;
      margin-bottom: 40px
    }

    .btn-view-all {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 10px 22px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      transition: all .2s
    }

    .btn-view-all:hover {
      border-color: var(--red);
      color: var(--red)
    }

    .btn-view-all .count {
      color: var(--tm);
      font-weight: 500
    }

    .section-comedias {
      padding: 20px 24px 8px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
      border-radius: 16px 16px 0 0;
      margin: 0 -16px
    }

    .section-pill {
      display: inline-block;
      background: rgba(255, 255, 255, 0.08);
      color: var(--tm);
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 8px;
      letter-spacing: 0.5px;
      text-transform: uppercase
    }

    .section-subtitle {
      color: var(--td);
      font-size: 14px;
      margin: 4px 0 0;
      font-weight: 400
    }

    .section-comedias h2 {
      margin-top: 4px
    }

    @media(max-width:768px) {
      .section-comedias {
        padding: 16px 16px 4px;
        margin: 0 -12px
      }

      .section-subtitle {
        font-size: 13px
      }
    }

    .row-wrap,
    .grid-wrap {
      position: relative
    }

    #genTabs {
      justify-content: flex-start;
      flex-wrap: nowrap;
      overflow-x: auto;
      scrollbar-width: none;
      padding-bottom: 4px;
      -webkit-overflow-scrolling: touch
    }

    #genTabs::-webkit-scrollbar {
      display: none
    }

    .card-affiliate a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-decoration: none;
      color: #e8e8f0;
      font-size: 12px
    }

    .aff-icon {
      font-size: 14px
    }

    .aff-text {
      font-weight: 600
    }

    .aff-badge {
      background: #ff6b35;
      color: white;
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 700
    }

    .adv-search-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border: 1.5px solid rgba(255, 255, 255, .35);
      border-radius: 100px;
      background: transparent;
      color: rgba(255, 255, 255, .6);
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: all .2s;
      cursor: pointer
    }

    .adv-search-btn:hover {
      border-color: rgba(255, 255, 255, .7);
      color: #fff
    }

    .adv-search-btn svg {
      width: 14px;
      height: 14px;
      opacity: .7;
      flex-shrink: 0
    }

    .adv-search-btn:hover svg {
      opacity: 1
    }

    .platform-carousel-wrapper {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto
    }

    .platform-carousel {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 8px 16px;
      margin: 0 -16px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory
    }

    .platform-carousel::-webkit-scrollbar {
      display: none
    }

    .platform-card {
      flex-shrink: 0;
      width: 58px;
      height: 58px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 9px;
      transition: transform .2s, box-shadow .2s;
      scroll-snap-align: start;
      text-decoration: none
    }

    .platform-card:active {
      transform: scale(.92)
    }

    .platform-card img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: brightness(1.1)
    }

    @media(min-width:769px) {
      .platform-carousel-wrapper {
        display: flex;
        justify-content: center;
        padding: 8px 0
      }

      .platform-carousel {
        margin: 0;
        justify-content: flex-start;
        gap: 12px
      }

      .platform-card {
        width: 66px;
        height: 66px
      }
    }

    @media(max-width:768px) {
      .platform-carousel {
        padding: 16px;
        margin: 0 -16px;
        gap: 12px
      }
    }

    /* ── Simplificacion portada: separadores + blog ── */
    .sec-divider {
      max-width: 880px;
      height: 1px;
      margin: 24px auto;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .09), transparent)
    }

    .blog-section {
      margin: 44px 0
    }

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

    .blog-card {
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
      text-decoration: none;
      transition: border-color .2s, transform .15s, box-shadow .2s
    }

    .blog-card:hover {
      border-color: var(--border2);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .35)
    }

    .blog-card__tag {
      align-self: flex-start;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--red);
      background: var(--red2);
      padding: 4px 10px;
      border-radius: 100px
    }

    .blog-card__title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin: 0;
      line-height: 1.4
    }

    .blog-card__cta {
      margin-top: auto;
      font-size: 12.5px;
      font-weight: 700;
      color: var(--tm);
      transition: color .2s
    }

    .blog-card:hover .blog-card__cta {
      color: var(--text)
    }

    .blog-section .section-header,
    .taquilla-section .section-header {
      padding-top: 0
    }

    @media(max-width:768px) {
      .blog-grid {
        grid-template-columns: 1fr
      }

      .blog-section {
        margin: 32px 0
      }

      .sec-divider {
        margin: 16px auto
      }
    }

.guide-links {
      padding: 24px 0
    }

    .guide-links h2 {
      margin: 0 0 16px;
      font-size: 1.15rem
    }

    .guide-group {
      margin-bottom: 16px
    }

    .guide-group h3 {
      margin: 0 0 8px;
      font-size: 1rem;
      color: var(--tm)
    }

    .guide-group ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 8px
    }

    .guide-group li a {
      color: var(--link);
      text-decoration: none;
      font-size: .9rem
    }

    .guide-group li a:hover {
      text-decoration: underline
    }

.guide-section {
      padding: 48px 0 32px
    }

    .guide-section__title {
      font-family: var(--font-display);
      font-size: clamp(20px, 3vw, 28px);
      font-weight: 800;
      margin: 0 0 6px;
      letter-spacing: -.5px
    }

    .guide-section__subtitle {
      font-size: 14px;
      color: var(--tm);
      margin: 0 0 28px
    }

    .guide-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 16px;
      margin-bottom: 40px
    }

    .guide-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      transition: border-color .2s, transform .15s, box-shadow .2s
    }

    .guide-card:hover {
      border-color: rgba(255, 255, 255, .15);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .35)
    }

    .guide-card__img {
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: var(--bg2);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .guide-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .3s
    }

    .guide-card:hover .guide-card__img img {
      transform: scale(1.06)
    }

    .guide-card__badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0, 0, 0, .65);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 5px
    }

    .guide-card__body {
      padding: 14px 16px 16px;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .guide-card__title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
      margin-bottom: 4px
    }

    .guide-card__desc {
      font-size: 13px;
      color: var(--td);
      line-height: 1.4;
      margin-bottom: 12px;
      flex: 1
    }

    .guide-card__cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold);
      background: rgba(255, 184, 0, .08);
      border: 1px solid rgba(255, 184, 0, .2);
      padding: 6px 14px;
      border-radius: 100px;
      width: fit-content;
      transition: background .15s
    }

    .guide-card:hover .guide-card__cta {
      background: rgba(255, 184, 0, .15)
    }

    .platform-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 12px
    }

    .platform-mini {
      background: var(--card);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 16px 12px;
      text-align: center;
      text-decoration: none;
      color: inherit;
      transition: border-color .2s, transform .15s
    }

    .platform-mini:hover {
      border-color: rgba(255, 255, 255, .15);
      transform: translateY(-2px)
    }

    .platform-mini__emoji {
      font-size: 28px;
      margin-bottom: 6px;
      display: block
    }

    .platform-mini__name {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px
    }

    .platform-mini__price {
      font-size: 12px;
      font-weight: 700;
      color: var(--gold)
    }

    .guide-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 36px 0 28px
    }

    .guide-cta-row {
      text-align: center;
      margin-top: 20px
    }

    .guide-cta-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      border: 1.5px solid var(--border);
      padding: 10px 22px;
      border-radius: 100px;
      transition: all .2s
    }

    .guide-cta-link:hover {
      border-color: var(--gold);
      color: var(--gold)
    }

    @media(max-width:640px) {
      .guide-grid {
        grid-template-columns: 1fr
      }

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

    .origin-section {
      margin: 28px auto 32px;
      padding: 0 16px;
      text-align: center
    }

    .origin-section h2 {
      font-size: clamp(18px, 3vw, 22px);
      font-weight: 800;
      margin-bottom: 16px;
      color: var(--text)
    }

    .origin-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 14px
    }

    .origin-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #1a1a1a;
      border: 1.5px solid var(--border);
      border-radius: 100px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      transition: all .2s
    }

    .origin-chip:hover {
      border-color: rgba(255, 255, 255, .25);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
      color: var(--accent)
    }

    .origin-chip .flag {
      font-size: 16px
    }

    .origin-view-all {
      font-size: 12px;
      color: var(--tm);
      text-decoration: none
    }

    .origin-view-all:hover {
      color: var(--accent)
    }

    /* ── Taquilla semanal ─────────────────────────────────────────────────────── */
    .taquilla-section {
      background: linear-gradient(180deg, #1a1200 0%, #0f0b00 50%, #0a0a0a 100%);
      border-top: 1px solid rgba(255, 184, 0, .12);
      border-bottom: 1px solid rgba(255, 184, 0, .08);
      padding: 28px 0 16px;
      margin: 32px -24px
    }

    .taquilla-section .section-header {
      padding-top: 8px
    }

    .taquilla-section h2 {
      color: var(--gold)
    }

    .taquilla-pill {
      display: inline-block;
      background: rgba(255, 184, 0, .12);
      color: var(--gold);
      border: 1px solid rgba(255, 184, 0, .25);
      border-radius: 100px;
      padding: 3px 12px;
      font-size: 12px;
      font-weight: 700;
      margin-left: 10px;
      vertical-align: middle
    }

    .taquilla-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      padding: 0 24px;
      margin-bottom: 16px
    }

    @media(max-width:1024px) {
      .taquilla-grid {
        grid-template-columns: repeat(3, 1fr)
      }
    }

    @media(max-width:640px) {
      .taquilla-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px
      }
    }

    .tq-card {
      background: rgba(20, 20, 20, .7);
      border: 1px solid rgba(255, 184, 0, .15);
      border-radius: 14px;
      padding: 0;
      position: relative;
      transition: border-color .2s, transform .15s;
      overflow: hidden;
      display: flex;
      flex-direction: column
    }

    .tq-card:hover {
      border-color: rgba(255, 184, 0, .35);
      transform: translateY(-3px)
    }

    .tq-card.first {
      border-color: rgba(255, 184, 0, .4);
      background: linear-gradient(180deg, rgba(255, 184, 0, .08) 0%, rgba(20, 20, 20, .7) 100%)
    }

    .tq-poster {
      width: 100%;
      aspect-ratio: 2/3;
      object-fit: cover;
      border-radius: 14px 14px 0 0;
      display: block;
      background: var(--card2)
    }

    .tq-poster-placeholder {
      width: 100%;
      aspect-ratio: 2/3;
      background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
      border-radius: 14px 14px 0 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      color: var(--td)
    }

    .tq-pos {
      position: absolute;
      top: 8px;
      left: 14px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold) 0%, #d4a017 100%);
      color: #000;
      font-size: 14px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(255, 184, 0, .3);
      z-index: 2
    }

    .tq-pos.gold {
      background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%)
    }

    .tq-pos.silver {
      background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
      color: #222
    }

    .tq-pos.bronze {
      background: linear-gradient(135deg, #CD7F32 0%, #A0522D 100%)
    }

    .tq-body {
      padding: 18px;
      padding-top: 14px
    }

    .tq-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 4px;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden
    }

    .tq-rec {
      font-size: 20px;
      font-weight: 800;
      color: var(--gold);
      margin: 8px 0 2px
    }

    .tq-label {
      font-size: 12px;
      color: var(--td);
      margin-bottom: 8px
    }

    .tq-meta {
      display: flex;
      gap: 12px;
      font-size: 12px;
      color: var(--tm);
      flex-wrap: wrap
    }

    .tq-meta span {
      display: flex;
      align-items: center;
      gap: 4px
    }

    .tq-footer {
      text-align: center;
      margin-top: 12px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 184, 0, .08)
    }

    .tq-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      color: var(--gold);
      text-decoration: none;
      transition: color .2s
    }

    .tq-link:hover {
      color: #fff
    }

    .tq-date {
      text-align: center;
      font-size: 12px;
      color: var(--td);
      margin-top: 4px
    }