/* ==========================================================================
   LyricBingo — Recent Games & Analytics (Pro design system)
   ========================================================================== */

.v2-simple-page {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Page hero ── */
.v2-spotlight {
  position: relative;
  padding: 0 0 28px;
  margin-bottom: 24px;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.v2-spotlight--analytics {
  background: transparent;
}

.v2-spotlight__orb {
  display: none;
}

.v2-spotlight .v2-k {
  margin: 0 0 10px;
}

.v2-spotlight__title {
  margin: 0;
  font-family: var(--v2-font);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.v2-spotlight__lead {
  margin: 12px 0 0;
  max-width: 48ch;
  font-size: 15px;
  color: var(--pro-muted, #b3b3b3);
  line-height: 1.55;
}

.v2-spotlight__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

/* Search visuals: beatdesk-v2-search.css */

.v2-spotlight__count {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--pro-subtle, #6a6a6a);
}

/* ── Stat strip ── */
.v2-glow-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.v2-glow-stat {
  padding: 20px 18px;
  border-radius: 12px;
  border: none;
  background: var(--pro-elevated, #181818);
  text-align: left;
  transition: transform 0.15s ease, background 0.15s ease;
}

.v2-glow-stat:hover {
  transform: translateY(-2px);
  background: var(--pro-hover, #282828);
}

.v2-glow-stat span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--pro-subtle, #6a6a6a);
  margin-bottom: 8px;
}

.v2-glow-stat b {
  display: block;
  font-family: var(--v2-font);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1;
  color: var(--pro-text, #fff);
}

.v2-glow-stat:nth-child(1) b { color: var(--pro-accent, #c8f830); }
.v2-glow-stat:nth-child(2) b { color: var(--pro-accent-2, #8b5cf6); }
.v2-glow-stat:nth-child(3) b { color: var(--pro-accent-3, #22d3ee); }
.v2-glow-stat:nth-child(4) b { color: var(--pro-warm, #e91479); }

/* ── Recent game cards ── */
.v2-show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}

.v2-show-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--pro-border, rgba(255, 255, 255, 0.08));
  background: var(--pro-elevated, #181818);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  overflow: hidden;
}

.v2-show-card::before {
  display: none;
}

.v2-show-card:hover {
  transform: translateY(-3px);
  border-color: var(--pro-border-strong, rgba(255, 255, 255, 0.14));
  background: var(--pro-hover, #282828);
}

.v2-show-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.v2-show-card__code {
  font-family: var(--v2-font);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--pro-text, #fff);
}

.v2-show-card__badge {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v2-show-card__badge.live {
  color: var(--pro-accent-text, #000);
  background: var(--pro-accent, #c8f830);
}

.v2-show-card__badge.ended {
  color: var(--pro-muted, #b3b3b3);
  background: var(--pro-hover, #282828);
}

.v2-show-card__title {
  margin: 0;
  font-family: var(--v2-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.v2-show-card__sub {
  margin: 0;
  font-size: 14px;
  color: var(--pro-muted, #b3b3b3);
  line-height: 1.45;
}

.v2-show-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.v2-show-card__stats div {
  padding: 12px 8px;
  border-radius: 8px;
  text-align: center;
  background: var(--pro-card, #1e1e1e);
  border: 1px solid var(--pro-border, rgba(255, 255, 255, 0.08));
}

.v2-show-card__stats em {
  display: block;
  font-style: normal;
  font-family: var(--v2-font);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--pro-text, #fff);
}

.v2-show-card__stats span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pro-subtle, #6a6a6a);
}

.v2-show-card__foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.v2-show-card__foot .v2-btn.primary {
  width: 100%;
}

.v2-show-card__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
}

.v2-show-card__links a {
  color: var(--pro-accent, #c8f830);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.15s ease;
}

.v2-show-card__links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ── Analytics report cards ── */
.v2-report-stack {
  display: grid;
  gap: 12px;
}

.v2-report-lite {
  padding: 20px 22px;
  border-radius: 12px;
  border: 1px solid var(--pro-border, rgba(255, 255, 255, 0.08));
  background: var(--pro-elevated, #181818);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.v2-report-lite:hover {
  border-color: var(--pro-border-strong, rgba(255, 255, 255, 0.14));
  background: var(--pro-hover, #282828);
  transform: translateY(-2px);
}

.v2-report-lite__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.v2-report-lite__top h3 {
  margin: 6px 0 4px;
  font-family: var(--v2-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.v2-report-lite__top p {
  margin: 0;
  font-size: 14px;
  color: var(--pro-muted, #b3b3b3);
}

.v2-report-lite__top .v2-show-card__code {
  font-size: clamp(20px, 2.5vw, 26px);
  flex-shrink: 0;
}

.v2-report-lite__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.v2-report-lite__stats div {
  padding: 12px 10px;
  border-radius: 8px;
  text-align: center;
  background: var(--pro-card, #1e1e1e);
  border: 1px solid var(--pro-border, rgba(255, 255, 255, 0.08));
}

.v2-report-lite__stats em {
  display: block;
  font-style: normal;
  font-family: var(--v2-font);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1;
  color: var(--pro-accent, #c8f830);
}

.v2-report-lite__stats span {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pro-subtle, #6a6a6a);
}

.v2-report-lite__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── Empty & upgrade states ── */
.v2-spotlight-empty {
  padding: clamp(40px, 8vw, 64px) 28px;
  text-align: center;
  border-radius: 12px;
  border: 1px dashed var(--pro-border, rgba(255, 255, 255, 0.08));
  background: var(--pro-elevated, #181818);
}

.v2-spotlight-empty h2 {
  margin: 0 0 10px;
  font-family: var(--v2-font);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.v2-spotlight-empty p {
  margin: 0 0 24px;
  color: var(--pro-muted, #b3b3b3);
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

.v2-spotlight-upgrade {
  text-align: center;
  padding: clamp(36px, 6vw, 56px) 28px;
}

.v2-spotlight-upgrade h2 {
  margin: 12px 0 8px;
  font-family: var(--v2-font);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.v2-spotlight-upgrade p {
  margin: 0 auto 24px;
  max-width: 42ch;
  color: var(--pro-muted, #b3b3b3);
}

@media (max-width: 900px) {
  .v2-glow-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-report-lite__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .v2-spotlight__tools {
    flex-direction: column;
    align-items: stretch;
  }

  .v2-spotlight__search {
    max-width: none;
  }

  .v2-spotlight__count {
    margin-left: 0;
    text-align: center;
  }

  .v2-glow-stats {
    grid-template-columns: 1fr 1fr;
  }
}

.v2-custom-logo-modal{max-width:480px}.v2-custom-logo-head{margin-bottom:4px}.v2-custom-logo-head h2{margin:0 0 6px;font-size:1.35rem}.v2-custom-logo-head .muted{margin:0;font-size:13px;line-height:1.45;color:rgba(255,255,255,.55)}.v2-custom-logo-panel{display:grid;gap:20px;margin-top:8px}.v2-custom-logo-stage{display:grid;gap:14px}.v2-custom-logo-empty{display:grid;place-items:center;min-height:120px;padding:24px;border-radius:16px;border:1px dashed rgba(255,255,255,.12);background:rgba(255,255,255,.03);color:rgba(255,255,255,.5);font-size:14px}.v2-custom-logo-preview{display:flex;align-items:center;justify-content:center;min-height:120px;padding:24px;border-radius:16px;border:1px solid rgba(255,255,255,.1);background:linear-gradient(145deg,#0a0812,#12101c)}.v2-custom-logo-preview img{max-width:min(260px,100%);max-height:68px;object-fit:contain}.v2-custom-logo-filter{display:grid;gap:10px;padding:0 2px}.v2-custom-logo-filter-label{display:flex;align-items:center;justify-content:space-between;font-size:13px;font-weight:700;color:#fff}.v2-custom-logo-filter-label span{font-variant-numeric:tabular-nums;color:#c8f830;font-weight:800}.v2-custom-logo-filter input[type=range]{width:100%;height:6px;accent-color:#c8f830;cursor:pointer}.v2-custom-logo-filter-hints{display:flex;justify-content:space-between;font-size:11px;font-weight:600;color:rgba(255,255,255,.42)}.v2-custom-logo-foot{display:grid;gap:12px;padding-top:4px;border-top:1px solid rgba(255,255,255,.08)}.v2-custom-logo-upload{display:grid;gap:8px;cursor:pointer}.v2-custom-logo-upload>span{font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:rgba(255,255,255,.55)}.v2-custom-logo-upload input[type=file]{width:100%;padding:12px 14px;border-radius:12px;border:1px dashed rgba(255,255,255,.16);background:rgba(255,255,255,.04);color:rgba(255,255,255,.72);font-size:13px}.v2-custom-logo-actions{display:flex;flex-wrap:wrap;gap:10px}.v2-custom-logo-actions .v2-btn{min-height:44px;padding:0 18px}.v2-custom-logo-note{margin:0;font-size:12px;line-height:1.4;color:rgba(255,255,255,.45)}.v2-host-brand-logo{object-fit:contain;object-position:left center}.v2-side .v2-host-brand-logo,.v2-app-mobile-brand .v2-host-brand-logo{max-width:190px;max-height:42px;width:auto;height:auto}.v2-tv-brand .v2-host-brand-logo{max-width:min(340px,24vw);max-height:64px;width:auto;height:auto}.v2-join-brand{display:flex;justify-content:center;margin-bottom:8px}.v2-join-brand .v2-host-brand-logo{max-height:52px;max-width:min(240px,70vw)}

.v2-sponsors-modal{max-width:520px}.v2-sponsors-head{margin-bottom:4px}.v2-sponsors-head h2{margin:0 0 6px;font-size:1.35rem}.v2-sponsors-head .muted{margin:0;font-size:13px;line-height:1.45;color:rgba(255,255,255,.55)}.v2-sponsors-form{display:grid;gap:20px;margin-top:8px}.v2-sponsor-slots{display:grid;gap:16px}.v2-sponsor-slot{border-radius:16px;background:rgba(255,255,255,.03);padding:16px 16px 18px}.v2-sponsor-slot-head{display:flex;align-items:center;gap:10px;margin-bottom:14px}.v2-sponsor-slot-num{display:grid;place-items:center;width:28px;height:28px;border-radius:999px;background:rgba(200,248,48,.15);color:#c8f830;font-size:12px;font-weight:800;flex-shrink:0}.v2-sponsor-slot-title{flex:1;min-width:0;font-size:14px;font-weight:700;color:#fff;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.v2-sponsor-slot-clear{margin-left:auto;padding:6px 10px;border:none;border-radius:8px;background:transparent;color:rgba(255,255,255,.45);font-size:12px;font-weight:700;cursor:pointer;text-decoration:underline;text-underline-offset:3px}.v2-sponsor-slot-clear:hover{color:#ff6b8a}.v2-sponsor-slot-body{display:grid;gap:14px}.v2-sponsor-preview{display:flex;align-items:center;justify-content:center;min-height:96px;padding:20px;border-radius:14px;border:1px solid rgba(255,255,255,.1);background:linear-gradient(145deg,#0a0812,#12101c)}.v2-sponsor-preview img{max-width:min(220px,100%);max-height:64px;object-fit:contain}.v2-sponsor-preview-empty{font-size:13px;color:rgba(255,255,255,.4)}.v2-sponsor-field{display:grid;gap:8px}.v2-sponsor-field>span{font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:rgba(255,255,255,.55)}.v2-sponsor-upload{display:grid;gap:8px;cursor:pointer}.v2-sponsor-upload>span{font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:rgba(255,255,255,.55)}.v2-sponsor-upload input[type=file]{width:100%;padding:12px 14px;border-radius:12px;border:1px dashed rgba(255,255,255,.16);background:rgba(255,255,255,.04);color:rgba(255,255,255,.72);font-size:13px}.v2-sponsors-foot{display:grid;gap:10px;padding-top:4px;border-top:1px solid rgba(255,255,255,.08)}.v2-sponsors-foot .v2-btn{min-height:48px;width:100%}.v2-sponsors-note{margin:0;font-size:12px;line-height:1.4;color:rgba(255,255,255,.45);text-align:center}@media(max-width:720px){.v2-sponsors-foot .v2-btn{min-height:52px}.v2-custom-logo-actions .v2-btn{flex:1;min-width:0}}

/* V2 account pro dashboard — Jul 2026 */
.v2-account-pro{--acc-lime:#c8f830;--acc-panel:#121218;--acc-line:rgba(255,255,255,.08)}
.v2-account-hero{position:relative;padding:28px 24px 32px;margin:0 0 24px;border-radius:24px;border:1px solid rgba(200,248,48,.16);background:linear-gradient(145deg,rgba(200,248,48,.08),rgba(18,18,24,.95) 55%,#0a0a10);overflow:hidden}
.v2-account-hero__glow{position:absolute;top:-40%;right:-10%;width:320px;height:320px;border-radius:50%;background:rgba(200,248,48,.12);filter:blur(60px);pointer-events:none}
.v2-account-hero__main{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;flex-wrap:wrap;position:relative;z-index:1}
.v2-account-hero__title{font-size:clamp(1.75rem,4vw,2.5rem);font-weight:800;margin:8px 0 6px;line-height:1.1}
.v2-account-hero__email{color:rgba(255,255,255,.55);font-size:.95rem;margin:0}
.v2-account-plan-badge{display:grid;gap:4px;padding:16px 20px;border-radius:16px;border:1px solid rgba(200,248,48,.35);background:rgba(0,0,0,.35);min-width:160px}
.v2-account-plan-badge__label{font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.45)}
.v2-account-plan-badge strong{font-size:1.35rem;color:var(--acc-lime)}
.v2-account-plan-badge small{color:rgba(255,255,255,.5);font-size:12px}
.v2-account-plan-badge[data-plan="premium"] strong{color:#fff}
.v2-account-plan-badge[data-plan="pro"] strong{color:var(--acc-lime)}
.v2-account-section-head{margin-bottom:18px}
.v2-account-section-head h2{margin:0 0 6px;font-size:1.25rem}
.v2-account-plans,.v2-account-tools{margin-bottom:28px}
.v2-tier-grid--account .v2-tier-card{border-radius:18px;border:1px solid var(--acc-line);background:var(--acc-panel);padding:20px;transition:border-color .2s,transform .2s}
.v2-tier-grid--account .v2-tier-card.is-featured{border-color:rgba(200,248,48,.45);box-shadow:0 0 0 1px rgba(200,248,48,.12)}
.v2-tier-grid--account .v2-tier-card em{font-size:1.75rem;font-style:normal;font-weight:800;color:#fff;display:block;margin:8px 0}
.v2-account-grid--pro{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:14px}
.v2-account-card{border-radius:20px;border:1px solid var(--acc-line);background:var(--acc-panel);padding:22px 24px;margin-bottom:20px}
.v2-account-tile{border-radius:16px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03);padding:18px;text-align:left;cursor:pointer;transition:border-color .2s,background .2s}
.v2-account-tile:hover{border-color:rgba(200,248,48,.35);background:rgba(200,248,48,.04)}
.v2-account-tile__icon{width:40px;height:40px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:rgba(200,248,48,.12);color:var(--acc-lime);margin-bottom:12px}
.v2-account-tile h3{margin:0 0 6px;font-size:1rem}
.v2-account-tile p{margin:0;font-size:.85rem;color:rgba(255,255,255,.55);line-height:1.45}
.v2-account-tile.is-locked{opacity:.72}
.v2-account-tile__tag{display:inline-block;margin-top:10px;font-size:10px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--acc-lime);padding:4px 8px;border-radius:999px;border:1px solid rgba(200,248,48,.3)}
@media(max-width:720px){.v2-account-hero__main{flex-direction:column}.v2-account-plan-badge{width:100%}.v2-account-grid--pro{grid-template-columns:1fr}}
