    :root {
      --bg: #030712;
      --bg-surface: rgba(17, 24, 39, 0.7);
      --bg-surface-hover: rgba(31, 41, 55, 0.8);
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --primary: #3b82f6;
      --primary-hover: #2563eb;
      --primary-glow: rgba(59, 130, 246, 0.5);
      --accent: #10b981;
      --accent-glow: rgba(16, 185, 129, 0.4);
      --border: rgba(255, 255, 255, 0.06);
      --border-hover: rgba(59, 130, 246, 0.3);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --container: 1200px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--text-main);
      background-color: var(--bg);
      background-image:
        radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.12), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.08), transparent 25%);
      background-attachment: fixed;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }

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

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

    /* GLASSMORPHISM UTILS */
    .glass {
      background: var(--bg-surface);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border);
    }

    .glass-card {
      background: var(--bg-surface);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .glass-card:hover {
      transform: translateY(-8px);
      border-color: var(--border-hover);
      background: var(--bg-surface-hover);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.1);
    }

    /* HEADER */
    .site-header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 50;
      transition: all 0.3s ease;
    }

    .site-header.scrolled {
      background: rgba(5, 11, 20, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .header-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    .brand img {
      height: 45px;
      width: auto;
      transition: transform 0.3s ease;
    }

    .site-header .btn {
      padding: 10px 20px;
      font-size: 0.85rem;
      border-radius: 8px;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    .brand img:hover {
      transform: scale(1.05);
    }

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

    .nav a {
      color: var(--text-muted);
      font-weight: 500;
      font-size: 1.05rem;
      position: relative;
    }

    .nav a:hover {
      color: var(--text-main);
    }

    .nav a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -4px;
      left: 0;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .nav a:hover::after {
      width: 100%;
    }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      border: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
      transform: translateX(-100%);
      transition: transform 0.6s ease;
      z-index: -1;
    }

    .btn:hover::before {
      transform: translateX(100%);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #60a5fa);
      color: #fff;
      box-shadow: 0 10px 20px var(--primary-glow);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px var(--primary-glow);
    }

    .btn-outline {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.1);
      color: #fff;
      backdrop-filter: blur(5px);
    }

    .btn-outline:hover {
      border-color: #fff;
      background: rgba(255,255,255,0.08);
      transform: translateY(-3px);
    }

    /* HERO SECTION */
    .hero {
      padding: 160px 0 100px;
      position: relative;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border-radius: 50px;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.2);
      color: #60a5fa;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
      box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
      animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-6px); }
      100% { transform: translateY(0px); }
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 24px;
      background: linear-gradient(to right, #ffffff, #94a3b8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      max-width: 900px;
      margin-inline: auto;
    }

    .hero h1 span {
      background: linear-gradient(to right, #3b82f6, #60a5fa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p {
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      color: var(--text-muted);
      max-width: 700px;
      margin-inline: auto;
      margin-bottom: 40px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* RESULTADOS SECTION (NEW) */
    .section {
      padding: 100px 0;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      margin-bottom: 16px;
    }

    .section-title span {
      color: var(--primary);
    }

    .section-subtitle {
      color: var(--text-muted);
      font-size: 1.1rem;
      max-width: 600px;
      margin-inline: auto;
    }

    .resultados-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }

    .category-card {
      padding: 30px;
      border-radius: var(--radius-lg);
      display: flex;
      flex-direction: column;
      gap: 20px;
      position: relative;
      overflow: hidden;
    }

    .category-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
    }

    .cat-loterias::before {
      background: linear-gradient(90deg, #f59e0b, #fbbf24);
    }

    .cat-animalitos::before {
      background: linear-gradient(90deg, #10b981, #34d399);
    }

    .cat-deportes::before {
      background: linear-gradient(90deg, #3b82f6, #60a5fa);
    }

    .category-header {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .category-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      font-size: 1.5rem;
    }

    .cat-loterias .category-icon {
      background: rgba(245, 158, 11, 0.15);
      color: #f59e0b;
    }

    .cat-animalitos .category-icon {
      background: rgba(16, 185, 129, 0.15);
      color: #10b981;
    }

    .cat-deportes .category-icon {
      background: rgba(59, 130, 246, 0.15);
      color: #3b82f6;
    }

    .category-title {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .items-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
      max-height: 260px;
      overflow-y: auto;
      padding-right: 5px;
    }

    .items-grid::-webkit-scrollbar {
      width: 4px;
    }

    .items-grid::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0.1);
      border-radius: 10px;
    }

    .items-grid::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.2);
      border-radius: 10px;
    }

    .item-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border);
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      flex: 1 1 calc(50% - 10px);
    }

    .item-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 4px;
      width: 70px;
      height: 70px;
      transition: all 0.3s ease;
    }

    .item-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

    .item-logo:hover,
    .item-badge:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--border-hover);
      transform: translateY(-2px);
    }

    .item-badge i {
      color: var(--text-muted);
      font-size: 1.1rem;
    }

    .cat-loterias .item-badge i {
      color: #fbbf24;
    }

    .cat-animalitos .item-badge i {
      color: #34d399;
    }

    .cat-deportes .item-badge i {
      color: #60a5fa;
    }

    /* PLANES SECTION */
    .plan-wrapper {
      max-width: 650px;
      margin: 0 auto;
    }

    .plan-card {
      background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      padding: 50px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
      text-align: left;
    }

    .plan-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #f59e0b, #fbbf24);
    }

    .plan-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 30px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 30px;
    }

    .plan-title-area {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .plan-badge {
      display: inline-flex;
      background: rgba(245, 158, 11, 0.1);
      color: #fbbf24;
      border: 1px solid rgba(245, 158, 11, 0.3);
      padding: 6px 14px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      align-self: flex-start;
    }

    .plan-logo {
      height: 35px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

    .plan-price-area {
      text-align: right;
    }

    .plan-price {
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1;
      color: #fff;
    }

    .plan-price-area small {
      font-size: 1rem;
      color: var(--text-muted);
      font-weight: 500;
      display: block;
      margin-top: 5px;
    }

    .plan-desc {
      color: var(--text-muted);
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .plan-features {
      list-style: none;
      display: grid;
      gap: 18px;
      margin-bottom: 40px;
    }

    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      font-size: 1.05rem;
      color: #e2e8f0;
      line-height: 1.4;
    }

    .plan-features li i {
      color: #10b981;
      font-size: 1.2rem;
      margin-top: 2px;
    }

    .btn-plan {
      background: linear-gradient(135deg, #f59e0b, #fbbf24);
      color: #000;
      box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
      width: 100%;
      font-size: 1.1rem;
      padding: 16px 28px;
    }

    .btn-plan:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    }

    @media (max-width: 768px) {
      .plan-header {
        flex-direction: column;
        gap: 20px;
        text-align: left;
      }

      .plan-price-area {
        text-align: left;
      }

      .plan-card {
        padding: 30px 20px;
      }
    }

    /* ZONA APK */
    .apk-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: stretch;
    }

    .apk-card {
      padding: 40px;
    }

    .apk-icon {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .apk-icon.icon-android {
      color: #3DDC84;
    }

    .apk-title {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }

    .apk-reqs {
      list-style: none;
      margin-top: 20px;
    }

    .apk-reqs li {
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-muted);
    }

    .apk-reqs li:last-child {
      border-bottom: none;
    }

    .apk-reqs li i {
      color: var(--primary);
    }

    /* CONTACTO SECTION */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .contact-card {
      padding: 40px 30px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    .contact-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: rgba(59, 130, 246, 0.1);
      color: var(--primary);
      display: grid;
      place-items: center;
      font-size: 2rem;
      margin-bottom: 10px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .contact-card:hover .contact-icon {
      background: var(--primary);
      color: #fff;
      transform: scale(1.15);
      box-shadow: 0 10px 25px var(--primary-glow);
    }

    /* Colored Contact Icons */
    .contact-icon.icon-whatsapp {
      color: #25D366;
      background: rgba(37, 211, 102, 0.1);
    }
    .contact-card:hover .contact-icon.icon-whatsapp {
      background: #25D366;
      color: #fff;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    }

    .contact-icon.icon-email {
      color: #EA4335;
      background: rgba(234, 67, 53, 0.1);
    }
    .contact-card:hover .contact-icon.icon-email {
      background: #EA4335;
      color: #fff;
      box-shadow: 0 10px 25px rgba(234, 67, 53, 0.4);
    }
    
    .contact-card h3 {
      font-size: 1.4rem;
      font-weight: 700;
    }
    
    .contact-card p {
      color: var(--text-muted);
      margin-bottom: 20px;
      flex-grow: 1;
      font-size: 1.05rem;
    }

    /* FAQ */
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    details.glass-card {
      padding: 20px 25px;
    }

    summary {
      font-size: 1.2rem;
      font-weight: 600;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: '\f078';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      transition: transform 0.3s ease;
      color: var(--text-muted);
    }

    details[open] summary::after {
      transform: rotate(180deg);
      color: var(--primary);
    }

    details p {
      margin-top: 15px;
      color: var(--text-muted);
      line-height: 1.7;
      border-top: 1px solid var(--border);
      padding-top: 15px;
    }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      padding: 40px 0;
      text-align: center;
      color: var(--text-muted);
      background: rgba(0, 0, 0, 0.3);
    }

    /* ANIMATIONS */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
      }

      100% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

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

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .apk-grid {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 768px) {
      .nav {
        display: none;
      }

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

      .plan-card {
        padding: 30px 20px;
      }
    }

    /* TV FRAME */
    .tv-wrapper {
      max-width: 900px;
      margin: 60px auto 0;
      position: relative;
    }

    .tv-frame {
      background: linear-gradient(to bottom, #1a1c23, #0d0e12);
      border-radius: 12px;
      padding: 16px 16px 24px;
      box-shadow: 
        0 0 120px rgba(255,255,255,0.15),
        0 30px 60px rgba(0,0,0,0.8),
        inset 0 1px 1px rgba(255,255,255,0.1),
        0 0 0 1px rgba(0,0,0,0.5);
      position: relative;
      z-index: 2;
    }

    .tv-brand {
      position: absolute;
      bottom: 6px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.6rem;
      letter-spacing: 3px;
      color: rgba(255,255,255,0.2);
      text-transform: uppercase;
      font-weight: 700;
    }

    .tv-stand {
      width: 140px;
      height: 25px;
      background: linear-gradient(to right, #111, #2a2d35, #111);
      margin: 0 auto;
      position: relative;
      z-index: 1;
      border-radius: 0 0 8px 8px;
      box-shadow: inset 0 -2px 5px rgba(0,0,0,0.5);
    }

    .tv-base {
      width: 300px;
      height: 8px;
      background: linear-gradient(to right, #0a0a0a, #333, #0a0a0a);
      margin: 0 auto;
      border-radius: 4px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    }

    /* CAROUSEL */
    .carousel-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 4px;
      background: #000;
      box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
    }
    
    .carousel-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .carousel-slide {
      min-width: 100%;
      position: relative;
    }
    
    .carousel-slide img {
      width: 100%;
      display: block;
      object-fit: cover;
    }
    
    .carousel-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(3, 7, 18, 0.95), transparent);
      padding: 60px 20px 20px;
      text-align: center;
      color: #fff;
    }
    
    .carousel-caption h3 {
      font-size: 1.5rem;
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 700;
    }
    
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(15, 23, 42, 0.7);
      color: #fff;
      border: 1px solid var(--border);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      cursor: pointer;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      z-index: 10;
      backdrop-filter: blur(5px);
    }
    
    .carousel-btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      transform: translateY(-50%) scale(1.1);
    }
    
    .carousel-btn.prev {
      left: 20px;
    }
    
    .carousel-btn.next {
      right: 20px;
    }
    
    .carousel-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
    }
    
    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .dot.active {
      background: var(--primary);
      transform: scale(1.3);
      box-shadow: 0 0 10px var(--primary-glow);
    }
