:root {
      --gold: #d946ef; /* Fuchsia (del logo) */
      --gold2: #a21caf; /* Fuchsia oscuro */
      --bg: #0f0f15; /* Fondo azul marino oscuro y profundo */
      --bg2: #161622;
      --bg3: #222233;
      --text: #ffffff;
      --dim: #94a3b8;
      --card: rgba(255, 255, 255, 0.05);
      --border: rgba(255, 255, 255, 0.08);
      --green: #06b6d4; /* Cyan (del logo) */
      --red: #d946ef; /* Fuchsia principal */
    }

    html {
      -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
      scroll-behavior: smooth;
      touch-action: manipulation;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    body {
      font-family: "Inter", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
      min-height: 100dvh;
      max-width: 100vw;
      -webkit-overflow-scrolling: touch;
    }

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

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

    .container {
      max-width: 420px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .bd-divider {
      height: 8px;
      background: #232323;
      border: none;
    }

    .bd-divider::after {
      content: "";
      display: none;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 16px;
      background: rgba(20, 20, 20, 0.95);
      backdrop-filter: blur(20px);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid var(--border);
    }

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

    .nav-logo img {
      height: 32px;
      width: auto;
      border-radius: 4px;
      object-fit: contain;
    }

    .nav-logo span {
      font-weight: 800;
      font-size: 16px;
      color: #fff;
      letter-spacing: -0.5px;
    }

    .nav-logo span b {
      color: var(--green);
    }

    .nav-dl {
      background: var(--red);
      color: #fff;
      font-weight: 700;
      font-size: 12px;
      padding: 7px 16px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s;
    }
    
    .nav-dl:hover {
      background: var(--gold2);
    }

    .tricolor {
      height: 3px;
      background: var(--red);
    }

    .hero {
      position: relative;
      padding: 0;
      overflow: hidden;
      background-image: 
        linear-gradient(180deg, rgba(20, 20, 20, 0.7) 0%, rgba(20, 20, 20, 0.5) 60%, var(--bg) 100%), 
        url('../picture/bolly2.jpg');
      background-size: cover;
      background-position: center;
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-bg {
      display: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      padding: 36px 20px 30px;
      text-align: center;
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0, 212, 116, 0.1);
      border: 1px solid rgba(0, 212, 116, 0.25);
      padding: 5px 14px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
      color: var(--green);
      margin-bottom: 16px;
    }

    .hero-chip .dot {
      width: 6px;
      height: 6px;
      background: var(--green);
      border-radius: 50%;
      animation: blink 1.5s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    .hero h1 {
      font-size: 26px;
      font-weight: 900;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 10px;
    }

    .hero h1 .gold {
      color: #ff9933;
    }

    .hero-sub {
      font-size: 14px;
      color: var(--dim);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .hero-cta {
      display: flex;
      gap: 10px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-dl {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--red), var(--gold2));
      color: #fff;
      font-weight: 800;
      font-size: 16px;
      padding: 16px 36px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
      transition: transform 0.2s, filter 0.2s;
    }

    .btn-dl:hover {
      filter: brightness(1.1);
      transform: scale(1.05);
    }

    .btn-dl svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .hero-info {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 18px;
    }

    .hero-info-item {
      text-align: center;
    }

    .hero-info-item .val {
      font-size: 18px;
      font-weight: 800;
      color: #fff;
    }

    .hero-info-item .lbl {
      font-size: 10px;
      color: var(--dim);
      margin-top: 1px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .cat-section {
      padding: 28px 0 8px;
    }

    .cat-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 16px;
      margin-bottom: 14px;
    }

    .cat-header h2 {
      font-size: 17px;
      font-weight: 800;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cat-header h2 .emoji {
      font-size: 20px;
    }

    .cat-header .see-all {
      font-size: 12px;
      color: var(--gold);
      font-weight: 600;
      cursor: pointer;
      padding: 4px 10px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.15s;
    }

    .cat-header .see-all:active {
      opacity: 0.6;
      transform: scale(0.92);
    }

    .cat-scroll {
      overflow: hidden;
      padding: 0 0 12px 16px;
    }

    .scroll-track {
      display: flex;
      gap: 12px;
      will-change: transform;
    }

    .content-card {
      flex-shrink: 0;
      width: 140px;
      cursor: pointer;
      transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

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

    .content-card .thumb {
      width: 140px;
      height: 200px;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      background: var(--bg3);
    }

    .content-card .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .content-card .thumb .badge {
      position: absolute;
      top: 8px;
      left: 8px;
      background: var(--red);
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 4px;
      text-transform: uppercase;
    }

    .content-card .thumb .badge2 {
      position: absolute;
      top: 8px;
      right: 8px;
      background: var(--green);
      color: #000;
      font-size: 9px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 4px;
      text-transform: uppercase;
    }

    .content-card .thumb .badge.live {
      background: var(--red);
    }

    .content-card .thumb .badge.hd {
      background: var(--gold);
      color: #fff;
    }

    .content-card .title {
      font-size: 12px;
      font-weight: 600;
      color: #fff;
      margin-top: 8px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      text-align: start;
    }

    .content-card .meta {
      font-size: 10px;
      color: var(--dim);
      margin-top: 2px;
      text-align: start;
    }

    .wide-card {
      flex-shrink: 0;
      width: 260px;
      cursor: pointer;
      transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .wide-card:hover {
      transform: scale(1.05);
      z-index: 10;
    }

    .wide-card .thumb {
      width: 260px;
      height: 146px;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      background: var(--bg3);
    }

    .wide-card .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .wide-card .thumb .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 12px;
    }

    .wide-card .thumb .overlay .tag {
      font-size: 9px;
      font-weight: 700;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .wide-card .thumb .overlay .tag .livedot {
      width: 6px;
      height: 6px;
      background: var(--red);
      border-radius: 50%;
      animation: blink 1s infinite;
    }

    .wide-card .thumb .overlay h3 {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      text-align: start;
    }

    .wide-card .thumb .overlay p {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 2px;
      text-align: start;
    }

    .highlights {
      padding: 28px 16px;
    }

    .hl-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .hl-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 18px 14px;
      text-align: center;
      transition: all 0.2s;
    }

    .hl-card .icon {
      font-size: 28px;
      margin-bottom: 8px;
    }

    .hl-card h3 {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 3px;
    }

    .hl-card p {
      font-size: 11px;
      color: var(--dim);
      line-height: 1.4;
    }

    .compare {
      padding: 28px 16px;
    }

    .compare h2 {
      font-size: 17px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
      text-align: center;
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 12px;
    }

    .compare-table th {
      background: var(--bg3);
      padding: 10px;
      text-align: start;
      font-weight: 600;
      color: var(--dim);
      font-size: 11px;
      text-transform: uppercase;
    }

    .compare-table th:nth-child(2),
    .compare-table th:nth-child(3) {
      text-align: center;
    }

    .compare-table th.dflive-col {
      color: #ff9933;
    }

    .compare-table td {
      padding: 10px;
      border-bottom: 1px solid var(--border);
    }

    .compare-table td:nth-child(2),
    .compare-table td:nth-child(3) {
      text-align: center;
      font-weight: 600;
    }

    .check {
      color: var(--green);
    }

    .cross {
      color: var(--red);
    }

    .install-section {
      padding: 28px 16px;
    }

    .install-section h2 {
      font-size: 17px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .step-cards {
      display: grid;
      gap: 12px;
    }

    .step-card {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }

    .step-card .snum {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: #fff;
      font-weight: 900;
      font-size: 14px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .step-card .stxt h3 {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 3px;
    }

    .step-card .stxt p {
      font-size: 12px;
      color: var(--dim);
      line-height: 1.5;
    }

    .cta-banner {
      margin: 28px 16px;
      background: linear-gradient(135deg, var(--bg3), rgba(255, 153, 51, 0.08));
      border: 1px solid rgba(255, 153, 51, 0.15);
      border-radius: 18px;
      padding: 28px 20px;
      text-align: center;
    }

    .cta-banner h2 {
      font-size: 20px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 6px;
    }

    .cta-banner p {
      font-size: 13px;
      color: var(--dim);
      margin-bottom: 18px;
    }

    .cta-banner .stats {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 18px;
    }

    .cta-banner .stat {
      text-align: center;
    }

    .cta-banner .stat .v {
      font-size: 20px;
      font-weight: 900;
      color: var(--green);
    }

    .cta-banner .stat .l {
      font-size: 10px;
      color: var(--dim);
      text-transform: uppercase;
    }

    .app-info {
      padding: 0 16px 20px;
    }

    .app-info table {
      width: 100%;
      border-collapse: collapse;
      font-size: 12px;
      background: var(--card);
      border-radius: 12px;
      overflow: hidden;
    }

    .app-info td {
      padding: 10px 14px;
      border-bottom: 1px solid var(--border);
      text-align: start;
    }

    .app-info tr:last-child td {
      border-bottom: none;
    }

    .app-info td:first-child {
      color: var(--dim);
      font-weight: 500;
      width: 40%;
    }

    .app-info td:last-child {
      color: #fff;
      font-weight: 600;
    }

    .faq-section {
      padding: 28px 16px;
    }

    .faq-section h2 {
      font-size: 17px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
    }

    .faq-item {
      margin-bottom: 8px;
      overflow: hidden;
      background: #2d2d2d;
      border: none;
      border-radius: 0px;
    }

    .faq-q {
      font-size: 15px;
      font-weight: 500;
      color: #fff;
      padding: 16px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      transition: background-color 0.2s;
    }

    .faq-q:hover {
      background-color: #414141;
    }

    .faq-q::after {
      content: "+";
      font-size: 22px;
      color: #fff;
      transition: transform 0.2s;
    }

    .faq-item.open .faq-q::after {
      transform: rotate(45deg);
      color: #fff;
    }

    .faq-a {
      font-size: 13px;
      color: #e4e4ef;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s cubic-bezier(0.5, 0, 0.1, 1), padding 0.25s;
      padding: 0 20px;
      line-height: 1.6;
      border-top: 1px solid #141414;
    }

    .faq-item.open .faq-a {
      max-height: 500px;
      padding: 16px 20px;
    }

    .footer {
      text-align: center;
      padding: 24px 16px calc(90px + env(safe-area-inset-bottom, 0px));
      font-size: 11px;
      color: rgba(255, 255, 255, 0.15);
      border-top: 1px solid var(--border);
    }

    .float-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 10px 16px calc(12px + env(safe-area-inset-bottom, 0px));
      background: rgba(6, 6, 14, 0.95);
      backdrop-filter: blur(16px);
      z-index: 90;
      border-top: 1px solid rgba(255, 153, 51, 0.12);
    }

    .float-cta button {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: #fff;
      font-weight: 800;
      font-size: 15px;
      padding: 14px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
    }

    .float-cta button svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .float-cta .sub {
      text-align: center;
      font-size: 10px;
      color: var(--dim);
      margin-top: 4px;
    }

    .priv-section {
      padding: 28px 16px;
      position: relative;
    }

    .priv-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(167, 139, 250, 0.04) 30%, rgba(167, 139, 250, 0.04) 70%, transparent);
      pointer-events: none;
    }

    .priv-card {
      background: rgba(167, 139, 250, 0.06);
      border: 1px solid rgba(167, 139, 250, 0.15);
      border-radius: 18px;
      padding: 24px 20px;
      text-align: center;
      position: relative;
    }

    .priv-card .lock-icon {
      font-size: 40px;
      margin-bottom: 10px;
    }

    .priv-card h3 {
      font-size: 17px;
      font-weight: 800;
      color: #c4b5fd;
      margin-bottom: 6px;
    }

    .priv-card p {
      font-size: 12px;
      color: #8b8bb0;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .priv-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #7c3aed, #6d28d9);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      padding: 12px 28px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
    }

    .wv-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(8px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px;
      text-align: center;
    }

    .wv-overlay.show {
      display: flex;
    }

    .wv-overlay h2 {
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }

    .wv-overlay p {
      font-size: 14px;
      color: #94a3b8;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .wv-overlay .wv-methods {
      width: 100%;
      max-width: 340px;
    }

    .wv-method {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 14px;
      padding: 14px;
      margin-bottom: 10px;
      cursor: pointer;
      transition: all 0.15s;
    }

    .wv-method:active {
      transform: scale(0.97);
      opacity: 0.8;
    }

    .wv-method .wm-title {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 2px;
    }

    .wv-method .wm-desc {
      font-size: 11px;
      color: #64748b;
    }

    .wv-arrow {
      position: fixed;
      top: 12px;
      right: 28px;
      z-index: 10000;
      font-size: 32px;
      animation: wvBounce 1s infinite;
    }

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

    .wv-close {
      margin-top: 14px;
      background: none;
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #64748b;
      font-size: 12px;
      padding: 8px 20px;
      border-radius: 8px;
      cursor: pointer;
    }

    .wv-copied {
      color: #4ade80;
      font-size: 12px;
      font-weight: 600;
      margin-top: 6px;
      display: none;
    }

    /* Movie Info Modal Styles */
    .movie-modal {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(8px);
    }
    .modal-content {
      position: relative;
      background: #181818;
      border: 1px solid #333;
      border-radius: 6px;
      width: 100%;
      max-width: 440px;
      z-index: 10001;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
      animation: modalFadeIn 0.25s ease-out;
    }
    @keyframes modalFadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
    .modal-close {
      position: absolute;
      top: 10px;
      right: 14px;
      background: none;
      border: none;
      color: #fff;
      font-size: 18px;
      cursor: pointer;
      z-index: 10;
      transition: color 0.2s;
    }
    .modal-close:hover {
      color: var(--red);
    }
    .modal-body {
      display: flex;
      gap: 20px;
      padding: 24px;
      align-items: center;
    }
    .modal-left {
      flex: 0 0 110px;
      text-align: center;
    }
    .modal-left img {
      width: 100%;
      height: 155px;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    }
    .modal-left h3 {
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      margin-top: 8px;
      line-height: 1.3;
      text-align: center;
    }
    .modal-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
      text-align: left;
    }
    .modal-right h2 {
      font-size: 18px;
      font-weight: 800;
      color: var(--red);
      line-height: 1.2;
    }
    .modal-right p {
      font-size: 12px;
      color: var(--dim);
      line-height: 1.5;
    }
    @media (max-width: 400px) {
      .modal-body {
        flex-direction: column;
        text-align: center;
      }
      .modal-left {
        flex: none;
        width: 100px;
      }
      .modal-right {
        align-items: center;
        text-align: center;
      }
    }