:root {
      --lions-yellow: #fcd116;
      --lions-blue: #003893;
    }
* {
      user-select: none;
    }

    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Segoe UI', sans-serif;
      background: var(--lions-yellow);
    }

    #pantallaBienvenida, #pantallaIntro {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 5px;
    }

    

    #pantallaBienvenida {
      background: var(--lions-yellow);
      z-index: 10;
    }

    .tarjeta {
      background: var(--lions-blue);
      padding: 1rem;
      border-radius: 25px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
      color: white;
      max-width: 500px;
      width: 100%;
      height: 95%;
    }

    .tarjeta h3 {
      margin: 0.2em 0;
      font-weight: bold;
      text-shadow: 2px 2px 4px #000;
    }
    .tarjeta h1 {
      color: #fcd116;
      font-size: 1.5rem;
      font-weight: bold;
      text-shadow: 2px 2px 4px #000;
    }

    .img-vn {
      width: 100%;
      max-width: 300px;
      margin-top: 20px;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
    .counter {
      font-size: 1rem;
      margin: 10px 0;
    }

    .btn-enter {
      margin-top: 15px;
      background-color: var(--lions-yellow);
      color: var(--lions-blue);
      font-weight: bold;
      border: none;
      border-radius: 25px;
      padding: 10px 25px;
      box-shadow: 0 0 10px #fff;
      transition: all 0.3s ease;
    }

    .btn-enter:hover {
      box-shadow: 0 0 20px #fff;
      transform: scale(1.05);
    }

    #pantallaIntro {
      padding: 0px;
      background-color: black;
      display: none;
      z-index: 9;
    }

    #videoIntro {
      margin: 0px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .btn-skip {
      position: absolute;
      top: 20px;
      right: 20px;
      background-color: var(--lions-yellow);
      color: var(--lions-blue);
      font-weight: bold;
      border: none;
      border-radius: 25px;
      padding: 8px 20px;
      box-shadow: 0 0 15px #fff;
      z-index: 100;
    }

    #pantallaReels {
     
      display: none;
      
    }

    /* .reel-container {
      position: relative;
      width: 100%;
      max-width: 480px;
      height: 100vh;
      overflow-y: scroll;
      scroll-snap-type: y mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .reel-video {
      scroll-snap-align: center;
      width: 100%;
      height: 90vh;
      margin: 5vh 0;
      object-fit: contain;
      border-radius: 20px;
      box-shadow: 0 0 40px var(--lions-yellow);
      background-color: #000;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .reel-video:active {
      transform: scale(0.98);
    }

    .floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 2000;
      background-color: var(--lions-yellow);
      color: #000;
      border: none;
      border-radius: 50%;
      padding: 15px;
      font-size: 1.6rem;
      box-shadow: 0 0 20px var(--lions-yellow), 0 0 40px var(--lions-yellow);
      animation: heartbeat 2s infinite;
      cursor: pointer;
      display: none;
    }

    .floating-btn i {
      font-weight: bold;
      text-shadow: 0 0 5px #000;
    }

    @keyframes heartbeat {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    .menu {
      position: fixed;
      bottom: 80px;
      right: 20px;
      background-color: rgba(0, 51, 141, 0.95);
      border-radius: 15px;
      padding: 10px;
      display: none;
      flex-direction: column;
      box-shadow: 0 0 15px rgba(0,0,0,0.6);
      z-index: 1999;
    }

    .menu button {
      background: var(--lions-yellow);
      color: #000;
      border: none;
      margin: 5px 0;
      padding: 8px 15px;
      border-radius: 10px;
      font-weight: bold;
      box-shadow: 0 0 10px var(--lions-yellow);
      cursor: pointer;
      transition: transform 0.3s;
    }

    .menu button:hover {
      transform: scale(1.05);
    } */

    @media (max-width: 576px) {
      .tarjeta {
        padding: 1rem;
      }
    }