* { -webkit-tap-highlight-color: transparent; }
      body { user-select: none; }

      .board-screen {
        height: 100vh;
        width: 100vw;
        overflow: hidden; /* ✅ no scroll */
        position: relative;
      }

      .condensed { letter-spacing: -0.015em; }

      .glow {
        box-shadow:
          0 0 0 1px rgba(255,255,255,.08),
          0 10px 30px rgba(0,0,0,.35);
      }

      /* pulso en filas cuando llega score */
      @keyframes pulseBg {
        0% { background-color: rgba(16,185,129,0.14); }
        100% { background-color: rgba(255,255,255,0.02); }
      }
      .row-pulse { animation: pulseBg 900ms ease-out 1; }

      /* ===== VIDEO BACKGROUND ===== */
      .bg-video-wrap {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
        background: #020617;
      }
      .bg-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
        filter: saturate(1.05) contrast(1.05);
      }
      .bg-overlay {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(1200px 600px at 20% 10%, rgba(16,185,129,.10), transparent 60%),
          radial-gradient(900px 500px at 80% 30%, rgba(245,158,11,.10), transparent 60%),
          linear-gradient(to bottom, rgba(2,6,23,.74), rgba(2,6,23,.88));
      }

      .content-layer { position: relative; z-index: 10; }

      /* Logo */
      .brand-logo {
        height: 40px;
        width: auto;
        max-width: 160px;
        object-fit: contain;
        filter: drop-shadow(0 8px 18px rgba(0,0,0,.45));
      }

      /* Avatar */
      .avatar {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        overflow: hidden;
        flex-shrink: 0;
        box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 10px 24px rgba(0,0,0,.25);
        background: rgba(255,255,255,.06);
        position: relative;
      }
      .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .avatarFallback {
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        font-weight: 900;
        font-size: 12px;
        letter-spacing: -0.02em;
        color: rgba(255,255,255,.95);
        background: linear-gradient(135deg, rgba(16,185,129,.28), rgba(59,130,246,.20));
      }

      /* Avatar grande para podio */
      .avatarXL {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 18px 40px rgba(0,0,0,.35);
      }
      .avatarXL .avatarFallback { font-size: 14px; }

      /* Top 3 ultra resaltado */
      .podiumCard {
        position: relative;
        overflow: hidden;
      }
      .podiumCard::before {
        content: "";
        position: absolute;
        inset: -2px;
        background: radial-gradient(600px 240px at 20% 0%, rgba(245,158,11,.22), transparent 70%),
                    radial-gradient(500px 220px at 80% 15%, rgba(16,185,129,.18), transparent 70%);
        opacity: .9;
        pointer-events: none;
      }
      .podiumInner { position: relative; }

      .badgePill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .02em;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.05);
        white-space: nowrap;
      }

      .rankBig {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        font-weight: 950;
        font-size: 18px;
        box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 14px 34px rgba(0,0,0,.35);
      }

      .rankGold { background: rgba(245,158,11,.14); color: rgba(255,255,255,.95); border: 1px solid rgba(245,158,11,.26); }
      .rankSilver { background: rgba(148,163,184,.14); color: rgba(255,255,255,.92); border: 1px solid rgba(148,163,184,.22); }
      .rankBronze { background: rgba(251,146,60,.14); color: rgba(255,255,255,.92); border: 1px solid rgba(251,146,60,.22); }

      /* Brillo exterior del 1ro */
      .firstGlow {
        box-shadow:
          0 0 0 1px rgba(245,158,11,.22),
          0 18px 44px rgba(0,0,0,.45),
          0 0 50px rgba(245,158,11,.12);
      }

      /* Ícono corona simple */
      .crown {
        width: 16px;
        height: 16px;
        display: inline-block;
        vertical-align: -2px;
      }

      /* En lista 4-64 */
      .rowWrap {
        min-height: 34px;
      }

      /* Score */
      .tabular-nums { font-variant-numeric: tabular-nums; }