@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&display=swap');

/* ═══════════════════════════════════════════════════════════════
   TOPBOARD — PINPOINT ARENA STAGE STYLES
   Using media_1788737973673.png as pristine clean stage backdrop
   ═══════════════════════════════════════════════════════════════ */

:root {
  --gold-primary: #f5af2d;
  --gold-glow: rgba(245, 175, 45, 0.6);
  --cyan-neon: #00c3ff;
  --cyan-glow: rgba(0, 195, 255, 0.7);
  --bg-deep: #020409;
}

/* ─── Page Body Reset for Multi-Section Arena ─────────────────── */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
}

body {
  background-color: var(--bg-deep) !important;
  color: #fff;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-y: auto !important;
  scroll-behavior: smooth;
}

.page-body {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  min-height: 100vh;
  display: block;
  background-color: var(--bg-deep);
}

.pinpoint-app-container {
  width: 100%;
  position: relative;
  background-color: var(--bg-deep);
}

/* ─── Master Viewport Container (Top Hero Section) ──────────── */
.pinpoint-hero-viewport {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  position: relative;
  background-color: var(--bg-deep);
  background-image: url('../images/monument_arena_clean.png');
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  box-sizing: border-box;
}

/* ─── 1. VISIBLE TOP NAVIGATION BAR ──────────────────────────── */
.stage-top-nav {
  position: absolute;
  top: 2.5%;
  left: 3.5%;
  right: 3.5%;
  height: 8.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 150;
}

.stage-nav-left {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.0vw, 32px);
}

.stage-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-size: clamp(13px, 1.4vw, 20px);
  font-weight: 900;
  letter-spacing: 0.5px;
}

.stage-logo-crown {
  font-size: clamp(16px, 1.7vw, 24px);
  filter: drop-shadow(0 0 8px #f5af2d);
}

.stage-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 24px);
}

.stage-nav-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: clamp(10px, 0.95vw, 14px);
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.stage-nav-link:hover,
.stage-nav-link.active {
  color: #ffffff;
}

.stage-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--gold-primary);
}

.stage-nav-right {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 18px);
}

.stage-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 14, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: clamp(3px, 0.4vw, 6px) clamp(10px, 1.0vw, 16px);
  backdrop-filter: blur(12px);
  width: clamp(140px, 16vw, 240px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stage-search-box:focus-within {
  border-color: rgba(245, 175, 45, 0.6);
  box-shadow: 0 0 12px rgba(245, 175, 45, 0.3);
}

.stage-search-icon {
  color: #64748b;
  font-size: 12px;
}

.stage-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: clamp(9px, 0.85vw, 13px);
  width: 100%;
}

.stage-search-input::placeholder {
  color: #64748b;
}

.stage-btn-login {
  color: #e2e8f0;
  text-decoration: none;
  font-size: clamp(10px, 0.95vw, 14px);
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s ease;
}

.stage-btn-login:hover {
  color: #fff;
}

.stage-btn-claim {
  background: linear-gradient(135deg, #f5af2d 0%, #e29410 100%);
  color: #04060d;
  text-decoration: none;
  font-size: clamp(10px, 0.95vw, 13.5px);
  font-weight: 800;
  padding: clamp(5px, 0.5vw, 8px) clamp(12px, 1.2vw, 18px);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 15px rgba(245, 175, 45, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stage-btn-claim:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 0 25px rgba(245, 175, 45, 0.9);
}

/* ─── 2. LEFT HERO CONTENT BLOCK ─────────────────────────────── */
.stage-hero-left {
  position: absolute;
  left: 3.5%;
  top: 17.0%;
  width: 25.0%;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  font-size: clamp(7.5px, 0.8vw, 11px);
  font-weight: 800;
  letter-spacing: 1.8px;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: clamp(3px, 0.4vw, 6px);
}

.hero-headline {
  font-size: clamp(20px, 2.6vw, 40px);
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -1px;
  margin: 0 0 clamp(6px, 0.7vw, 12px) 0;
}

.hero-headline-gold {
  background: linear-gradient(135deg, #ffffff 0%, #f5af2d 60%, #e29410 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-desc {
  font-size: clamp(8.5px, 0.9vw, 13px);
  line-height: 1.45;
  color: #94a3b8;
  margin: 0 0 clamp(10px, 1.1vw, 18px) 0;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.7vw, 10px);
  width: 100%;
  max-width: 200px;
}

.btn-hero-claim {
  background: linear-gradient(135deg, #f5af2d 0%, #e29410 100%);
  color: #04060d;
  text-decoration: none;
  font-size: clamp(10px, 1.0vw, 14px);
  font-weight: 800;
  padding: clamp(6px, 0.65vw, 10px) 16px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 18px rgba(245, 175, 45, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(245, 175, 45, 1);
}

.btn-hero-video {
  background: rgba(8, 14, 28, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: clamp(9px, 0.85vw, 12.5px);
  font-weight: 600;
  padding: clamp(5px, 0.55vw, 8px) 14px;
  border-radius: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-hero-video:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.02);
}

/* ─── 3. CENTER MONUMENT THRONE & APEX CROWN ─────────────────── */
.monument-crown-container {
  position: absolute;
  left: 50%;
  top: clamp(145px, 18vh, 195px);
  transform: translateX(-50%);
  width: clamp(130px, 11vw, 170px);
  height: clamp(52px, 6.8vh, 70px);
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.monument-crown-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 0 20px rgba(245, 175, 45, 0.85)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9));
}

/* Unified Fully Transparent Hall of Fame Card on Monument Wall */
.monument-unified-card {
  position: absolute;
  left: 50%;
  top: clamp(218px, 26.5vh, 280px);
  transform: translateX(-50%);
  width: clamp(340px, 30vw, 480px);
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(4px, 0.6vh, 8px);
  padding: 0 clamp(12px, 1.5vw, 22px);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  text-align: center;
  pointer-events: auto;
  box-sizing: border-box;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease, filter 0.22s ease;
}

.monument-unified-card.switching {
  transform: translateX(-50%) translateY(-10px) scale(0.94);
  opacity: 0;
  filter: blur(5px);
}

/* Rank Badge inside Card - Sits cleanly below Crown */
.monument-card-rank {
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 900;
  color: #f8be43;
  letter-spacing: 0.5px;
  line-height: 1;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.95), 0 0 24px rgba(245, 175, 45, 0.9);
  user-select: none;
  margin: 0 auto 2px auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Clickable Company Identity Card */
.monument-company-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 20px;
  padding: 8px 16px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  box-sizing: border-box;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, filter 0.2s ease;
  user-select: none;
}

.monument-company-link:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.06);
  filter: brightness(1.15);
}

.monument-company-link:hover .monument-name {
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.95);
}

.monument-company-link:hover .external-link-arrow {
  transform: translate(3px, -3px);
  color: var(--gold-primary);
}

/* Company Logo Box - Fixed Constant Dimension Container */
.monument-logo-wrap {
  width: clamp(250px, 22vw, 290px);
  height: clamp(68px, 8.2vh, 84px);
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.9));
  position: relative;
  box-sizing: border-box;
}

.monument-logo-wrap svg {
  width: 100%;
  height: 100%;
}

.monument-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  padding: 8px 20px;
  background: rgba(10, 14, 24, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7), 0 0 18px rgba(248, 190, 67, 0.22);
  box-sizing: border-box;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.monument-logo-wrap:hover .monument-logo-img {
  transform: scale(1.04);
  border-color: rgba(248, 190, 67, 0.8);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.9), 0 0 28px rgba(248, 190, 67, 0.45);
}

.monument-brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

/* Bigger Company Name */
.monument-name {
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 auto 3px auto;
  letter-spacing: -0.5px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.95);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: color 0.18s ease;
}

.monument-name:hover {
  color: #f8be43;
  text-decoration: underline;
}

.monument-domain {
  font-size: clamp(13px, 1.05vw, 16px);
  color: #cbd5e1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  margin: 0 auto;
  text-align: center;
  transition: color 0.18s ease;
}

.monument-domain:hover {
  color: #f8be43;
}

.external-link-arrow {
  font-size: 14px;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Current Bid Above Stairs */
.monument-bid-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 4px auto 0 auto;
  width: 100%;
}

.monument-bid-label {
  font-size: clamp(9px, 0.72vw, 10.5px);
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 2px;
  text-align: center;
  width: 100%;
}

.monument-bid-val {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 900;
  color: #f8be43;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(248, 190, 67, 0.88), 0 3px 8px rgba(0, 0, 0, 0.95);
  text-align: center;
  width: 100%;
}

/* Challenge Button Positioned Directly Inside Unified Card */
.monument-stair-btn-container {
  position: relative;
  margin-top: clamp(8px, 1.0vh, 14px);
  margin-left: auto;
  margin-right: auto;
  z-index: 35;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: clamp(220px, 16vw, 280px);
  text-align: center;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease;
}

.monument-stair-btn-container.switching {
  transform: translateY(8px) scale(0.95);
  opacity: 0;
}

.monument-outbid-btn {
  width: 100%;
  height: clamp(38px, 4.4vh, 42px);
  background: linear-gradient(180deg, #fbc958 0%, #e2981a 100%);
  color: #050505;
  font-size: clamp(13px, 0.92vw, 15px);
  font-weight: 900;
  letter-spacing: -0.2px;
  padding: 0 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.85), 0 0 20px rgba(249, 199, 85, 0.45);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  overflow: hidden;
  position: relative;
  animation: chestBreathing 3.2s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.monument-outbid-btn:hover {
  animation-play-state: paused;
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.95), 0 0 42px rgba(249, 199, 85, 0.9);
}

.monument-outbid-btn:active {
  transform: scale(1.02);
}

.monument-outbid-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: sweepGold 3s infinite ease-in-out;
}

.monument-min-increment-hint {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 6px;
  text-align: center;
  width: 100%;
  letter-spacing: 0.3px;
  display: block;
}

/* Chest Breathing Animation (Smooth Ambient Glow) */
@keyframes chestBreathing {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.85), 0 0 20px rgba(249, 199, 85, 0.45);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.95), 0 0 35px rgba(249, 199, 85, 0.8);
  }
}

/* ─── WALL OF FAME SOLO / STANDALONE MODE (When bottom sliding cards are hidden) ─── */
.monument-crown-container.monument-solo-mode {
  top: clamp(140px, 17.5vh, 190px);
  width: clamp(140px, 12vw, 185px);
  height: clamp(60px, 7.8vh, 80px);
}

.monument-unified-card.monument-solo-mode {
  top: clamp(212px, 26vh, 275px);
  width: clamp(360px, 34vw, 540px);
  gap: clamp(6px, 0.8vh, 10px);
}

.monument-unified-card.monument-solo-mode .monument-card-rank {
  font-size: clamp(30px, 2.8vw, 40px);
  letter-spacing: 0.5px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.95), 0 0 32px rgba(245, 175, 45, 0.95);
  margin: 0 auto 4px auto;
}

.monument-unified-card.monument-solo-mode .monument-company-link {
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(248, 190, 67, 0.08);
}

.monument-unified-card.monument-solo-mode .monument-logo-wrap {
  width: clamp(280px, 26vw, 340px);
  height: clamp(78px, 9.5vh, 98px);
  max-width: 92%;
  margin: 0 auto 8px auto;
  box-sizing: border-box;
}

.monument-unified-card.monument-solo-mode .monument-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px 24px;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.8), 0 0 24px rgba(248, 190, 67, 0.3);
  box-sizing: border-box;
}

.monument-unified-card.monument-solo-mode .monument-name {
  font-size: clamp(28px, 2.8vw, 40px);
  letter-spacing: -0.6px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 0 30px rgba(255, 255, 255, 0.35);
  margin: 0 auto 4px auto;
}

.monument-unified-card.monument-solo-mode .monument-domain {
  font-size: clamp(14px, 1.15vw, 18px);
  gap: 6px;
}

.monument-unified-card.monument-solo-mode .monument-bid-label {
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 2px;
  margin-bottom: 3px;
}

.monument-unified-card.monument-solo-mode .monument-bid-val {
  font-size: clamp(32px, 3vw, 42px);
  text-shadow: 0 0 28px rgba(248, 190, 67, 0.95), 0 4px 12px rgba(0, 0, 0, 0.95);
}

.monument-unified-card.monument-solo-mode .monument-stair-btn-container {
  max-width: clamp(240px, 18vw, 300px);
  margin-top: clamp(10px, 1.2vh, 16px);
}

.monument-unified-card.monument-solo-mode .monument-outbid-btn {
  height: clamp(40px, 4.6vh, 46px);
  font-size: clamp(13.5px, 0.95vw, 15.5px);
  border-radius: 11px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.9), 0 0 28px rgba(249, 199, 85, 0.55);
}

.monument-unified-card.monument-solo-mode .monument-min-increment-hint {
  font-size: 11.5px;
  color: #cbd5e1;
  margin-top: 7px;
}


.stage-stats-right {
  position: absolute;
  right: 3.5%;
  top: 17.0%;
  width: 15.5%;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.7vw, 11px);
}

.stage-stat-card {
  background: rgba(8, 14, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: clamp(6px, 0.6vw, 10px) clamp(10px, 0.9vw, 14px);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.9vw, 14px);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.stage-stat-card:hover {
  transform: translateX(-4px);
  border-color: rgba(245, 175, 45, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(245, 175, 45, 0.2);
}

.stat-icon {
  font-size: clamp(14px, 1.5vw, 22px);
  color: #94a3b8;
}

.stat-meta {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: clamp(12px, 1.3vw, 19px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.stat-label {
  font-size: clamp(7.5px, 0.75vw, 11px);
  color: #94a3b8;
  font-weight: 500;
}

/* ─── 5. BOTTOM CAROUSEL & CARDS ─────────────────────────────── */
.stage-bottom-carousel {
  position: absolute;
  bottom: 3.0%;
  left: 3.5%;
  right: 3.5%;
  height: 25.5%;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.0vw, 16px);
}

.btn-carousel-arrow {
  width: clamp(28px, 3.2vw, 44px);
  height: clamp(28px, 3.2vw, 44px);
  border-radius: 50%;
  background: rgba(8, 14, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: clamp(14px, 1.6vw, 22px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.btn-carousel-arrow:hover {
  transform: scale(1.12);
  border-color: var(--cyan-neon);
  box-shadow: 0 0 16px var(--cyan-neon);
  background: rgba(0, 195, 255, 0.2);
}

.carousel-cards-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 18px);
  flex: 1;
  height: 100%;
}

.carousel-card {
  flex: 1;
  max-width: 320px;
  height: 100%;
  background: rgba(6, 12, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: clamp(8px, 0.8vw, 12px) clamp(10px, 1.0vw, 16px);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.carousel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

/* Active card neon cyan pulsing border */
.carousel-card.active-card {
  border: 1.5px solid rgba(0, 195, 255, 0.9);
  animation: cyanPulse 2.8s infinite ease-in-out;
}

@keyframes cyanPulse {
  0% {
    box-shadow: 0 0 16px rgba(0, 195, 255, 0.6), inset 0 0 8px rgba(0, 195, 255, 0.2);
    border-color: rgba(0, 195, 255, 0.8);
  }

  50% {
    box-shadow: 0 0 32px rgba(0, 220, 255, 0.95), 0 0 50px rgba(0, 195, 255, 0.35), inset 0 0 14px rgba(0, 220, 255, 0.4);
    border-color: rgba(100, 235, 255, 1);
  }

  100% {
    box-shadow: 0 0 16px rgba(0, 195, 255, 0.6), inset 0 0 8px rgba(0, 195, 255, 0.2);
    border-color: rgba(0, 195, 255, 0.8);
  }
}

.card-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
}

.card-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-rank {
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: 800;
  color: #fff;
}

.card-logo {
  width: clamp(20px, 2.0vw, 28px);
  height: clamp(20px, 2.0vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-logo svg {
  width: 100%;
  height: 100%;
}

.card-meta {
  display: flex;
  flex-direction: column;
}

.card-name {
  font-size: clamp(11px, 1.1vw, 15px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.card-domain {
  font-size: clamp(8px, 0.75vw, 10.5px);
  color: #94a3b8;
}

.card-bid-wrap {
  margin-top: auto;
}

.card-bid-label {
  font-size: clamp(7px, 0.65vw, 9px);
  color: #94a3b8;
  font-weight: 600;
}

.card-bid-val {
  font-size: clamp(13px, 1.4vw, 19px);
  font-weight: 900;
  color: #fff;
}

.card-tagline {
  font-size: clamp(7px, 0.65vw, 9px);
  color: #64748b;
  margin-top: 3px;
}

.card-building-img {
  width: 45%;
  height: 90%;
  object-fit: cover;
  border-radius: 8px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
  pointer-events: none;
}

/* ─── 6. PAGINATION DOTS ─────────────────────────────────────── */
.stage-pagination-dots {
  position: absolute;
  bottom: 0.8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 40;
}

.dash-dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.dash-dot.active {
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  transform: scaleX(1.15);
}

.dash-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ─── LIVE MODALS ────────────────────────────────────────────── */
.pinpoint-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 10, 0.88);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pinpoint-modal-box {
  background: #080e1c;
  border: 1px solid rgba(245, 175, 45, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(245, 175, 45, 0.25);
  border-radius: 20px;
  padding: 32px;
  max-width: 520px;
  width: 90%;
  position: relative;
  color: #fff;
}

.pinpoint-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #aaa;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.pinpoint-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.modal-badge-crown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 175, 45, 0.15);
  border: 1px solid rgba(245, 175, 45, 0.4);
  color: var(--gold-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.modal-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #fff;
}

.modal-subtitle {
  font-size: 14px;
  color: #94a3b8;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.modal-bid-card {
  background: rgba(2, 6, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-bid-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-primary);
}

.modal-input-group {
  margin-bottom: 20px;
}

.modal-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
  margin-bottom: 8px;
}

.modal-input {
  width: 100%;
  background: rgba(2, 6, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
}

.modal-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(245, 175, 45, 0.3);
}

.btn-modal-action {
  width: 100%;
  background: linear-gradient(135deg, #f5af2d 0%, #e29410 100%);
  color: #04060d;
  font-size: 16px;
  font-weight: 800;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(245, 175, 45, 0.4);
}

.btn-modal-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 175, 45, 0.6);
}

.pinpoint-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(8, 14, 28, 0.95);
  border: 1px solid rgba(0, 195, 255, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 195, 255, 0.4);
  border-radius: 12px;
  padding: 14px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── 4. VERTICAL SIDEWAYS CARDS LIST (MATCHING USER REFERENCE) ─── */
.sideways-cards-section {
  position: absolute;
  bottom: 0.6%;
  left: 0;
  right: 0;
  height: clamp(236px, 26.6vh, 268px);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.sideways-cards-wrapper {
  position: relative;
  width: 100%;
  max-width: 1680px;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
  pointer-events: auto;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.sideways-cards-wrapper.is-dragging {
  cursor: grabbing !important;
}

.sideways-cards-track {
  display: flex;
  align-items: center;
  width: max-content;
  user-select: none;
  -webkit-user-select: none;
  will-change: transform;
  touch-action: pan-y;
}

.sideways-cards-set {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.9vw, 16px);
  padding: 0 clamp(8px, 0.8vw, 14px);
}

/* Vertical Glass Card matching reference design */
.sideways-company-card {
  width: clamp(134px, 9.6vw, 154px);
  height: clamp(226px, 25.5vh, 256px);
  background: rgba(8, 12, 20, 0.90);
  border: 1.2px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 11px 10px 12px 10px;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.75);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  outline: none;
  text-align: center;
}

.sideways-company-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.92);
}

.sideways-cards-wrapper.is-dragging {
  cursor: grabbing !important;
}

.sideways-cards-wrapper.is-dragging .sideways-company-card {
  cursor: grabbing !important;
}

/* Active Card: Glowing Golden / Amber Border with Top Highlight */
.sideways-company-card.active-card {
  border: 1.8px solid #f8be43 !important;
  box-shadow: 0 0 20px rgba(248, 190, 67, 0.45), inset 0 0 10px rgba(248, 190, 67, 0.15) !important;
}

.sideways-company-card.active-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2.2px;
  background: linear-gradient(90deg, transparent, #ffffff, #ffe494, transparent);
  box-shadow: 0 0 10px #f8be43, 0 0 20px #f8be43;
  border-radius: 2px;
  z-index: 5;
}

.sideways-company-card.active-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #f8be43;
  box-shadow: 0 0 28px rgba(248, 190, 67, 0.8), 0 14px 36px rgba(0, 0, 0, 0.95) !important;
}

/* Rank in top-left */
.vcard-rank {
  position: absolute;
  top: 9px;
  left: 11px;
  font-size: 13px;
  font-weight: 700;
  color: #cbd5e1;
  line-height: 1;
  letter-spacing: -0.3px;
  user-select: none;
}

/* External Link Arrow Button in top-right */
.vcard-redirect-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  z-index: 5;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.vcard-redirect-btn svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.2px;
  transition: transform 0.2s ease;
}

.vcard-redirect-btn:hover {
  background: rgba(248, 190, 67, 0.25);
  border-color: #f8be43;
  color: #f8be43;
  transform: translateY(-1px) scale(1.12);
  box-shadow: 0 0 12px rgba(248, 190, 67, 0.45);
}

.vcard-redirect-btn:hover svg {
  transform: translate(1px, -1px);
}

.vcard-redirect-btn:active {
  transform: scale(0.92);
}

/* Center Logo Area */
.vcard-logo-wrap {
  margin-top: 14px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  user-select: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
  position: relative;
  z-index: 5;
}

.vcard-logo-wrap:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(248, 190, 67, 0.5));
}

.vcard-logo-svg {
  display: block;
}

.vcard-logo-ms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5px;
  width: 32px;
  height: 32px;
}

.vcard-logo-ms span {
  border-radius: 1.5px;
}

/* Fallback Logo for Custom/User Added Companies */
.vcard-logo-custom {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

/* Brand Name */
.vcard-name {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-top: 8px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  cursor: pointer;
  transition: color 0.18s ease;
  position: relative;
  z-index: 5;
}

.vcard-name:hover {
  color: #f8be43;
  text-decoration: underline;
}

/* Domain Row with Globe Icon & Arrow */
.vcard-domain-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5px;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.18s ease;
  position: relative;
  z-index: 5;
}

.vcard-domain-row:hover {
  color: #f8be43;
}

.vcard-domain-arrow {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.75;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.vcard-domain-row:hover .vcard-domain-arrow {
  transform: translate(1.5px, -1.5px);
  opacity: 1;
  color: #f8be43;
}

.vcard-globe-icon {
  flex-shrink: 0;
  opacity: 0.85;
}

/* Subtle Divider */
.vcard-divider {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin: 11px 0 8px 0;
}

/* Current Bid */
.vcard-bid-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.9px;
  color: #8e9ba9;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  margin-bottom: 3px;
}

.vcard-bid-val {
  font-size: clamp(17.5px, 1.35vw, 21px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.4px;
  text-align: center;
}

/* Challenge Button on Every Card */
.vcard-challenge-btn {
  margin-top: 8px;
  width: 100%;
  height: 27px;
  background: linear-gradient(135deg, #fbc958 0%, #e2981a 100%);
  color: #050505;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 3px 10px rgba(249, 199, 85, 0.35);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.2s ease,
    filter 0.2s ease;
  user-select: none;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}

.vcard-challenge-btn:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 16px rgba(249, 199, 85, 0.65);
  filter: brightness(1.1);
}

.vcard-challenge-btn:active {
  transform: scale(0.97);
}

/* ─── 5. RESPONSIVE VIEWPORT HEIGHT ADAPTATIONS ─────────────────── */
@media (max-height: 740px) {

  /* Scale Apex Crown and Monument Card to guarantee clean spacing on compact screens */
  .monument-crown-container {
    top: clamp(36px, 5.0vh, 56px);
    height: clamp(44px, 6.2vh, 60px);
    width: clamp(120px, 11vw, 150px);
  }

  .monument-unified-card {
    top: clamp(96px, 13.0vh, 126px);
    gap: 3px;
    width: clamp(320px, 28vw, 420px);
  }

  .monument-card-rank {
    font-size: clamp(22px, 2.8vh, 26px);
    margin: 0 auto 2px auto;
  }

  .monument-logo-wrap {
    width: 100%;
    max-width: 220px;
    height: clamp(48px, 6.5vh, 64px);
    margin: 0 auto 4px auto;
  }

  .monument-name {
    font-size: clamp(20px, 2.8vh, 26px);
    margin-bottom: 2px;
  }

  .monument-domain {
    font-size: clamp(12px, 1.8vh, 14px);
  }

  .monument-bid-label {
    font-size: 9px;
    margin-bottom: 1px;
  }

  .monument-bid-val {
    font-size: clamp(22px, 3.2vh, 28px);
  }

  .monument-stair-btn-container {
    margin-top: 4px;
    width: clamp(190px, 14vw, 240px);
  }

  .monument-outbid-btn {
    height: clamp(32px, 4.0vh, 36px);
    font-size: clamp(11.5px, 1.5vh, 13px);
  }

  /* Compact Sideways Slider Cards */
  .sideways-cards-section {
    height: clamp(170px, 24.5vh, 215px);
  }

  .sideways-company-card {
    width: clamp(118px, 8.5vw, 138px);
    height: clamp(165px, 23.5vh, 205px);
    padding: 8px 7px 9px 7px;
  }

  .vcard-rank {
    top: 7px;
    left: 8px;
    font-size: 11.5px;
  }

  .vcard-redirect-btn {
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
  }

  .vcard-logo-wrap {
    margin-top: 8px;
    height: 34px;
  }

  .vcard-logo-wrap svg,
  .vcard-logo-ms {
    width: 26px;
    height: 26px;
  }

  .vcard-name {
    font-size: 13px;
    margin-top: 4px;
  }

  .vcard-domain-row {
    font-size: 10px;
    margin-top: 2px;
  }

  .vcard-divider {
    margin: 6px 0 5px 0;
  }

  .vcard-bid-label {
    font-size: 8.5px;
    margin-bottom: 1px;
  }

  .vcard-bid-val {
    font-size: 15.5px;
  }

  .vcard-challenge-btn {
    margin-top: 5px;
    height: 23px;
    font-size: 10px;
  }
}

/* ─── 6. FULL-PAGE CELEBRATION FIREWORKS & AMBIENT CANVAS BACKGROUND ─────────── */
.fireworks-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10; /* Strictly behind hero, cards, and UI, above page background */
  display: block;
}

/* HTML Hero In-Place Winner Celebration (No Dark Modals / No Dimming / 100% Interactive) */
.coronation-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(245, 175, 45, 0.28) 0%, rgba(255, 215, 0, 0.15) 100%);
  border: 1.5px solid #f8be43;
  color: #ffd700;
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(10px, 1.0vw, 13px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 6px;
  box-shadow: 0 0 20px rgba(248, 190, 67, 0.55), inset 0 0 10px rgba(248, 190, 67, 0.2);
  animation: coronationPillPulse 1.2s ease-in-out infinite alternate;
}

@keyframes coronationPillPulse {
  0% { transform: scale(0.98); box-shadow: 0 0 15px rgba(248, 190, 67, 0.4); }
  100% { transform: scale(1.03); box-shadow: 0 0 30px rgba(255, 215, 0, 0.85); }
}

.monument-crown-container.coronation-champion-active .monument-crown-img {
  animation: apexCrownTriumph 1.4s ease-in-out infinite alternate;
}

@keyframes apexCrownTriumph {
  0% {
    filter: drop-shadow(0 0 24px rgba(245, 175, 45, 0.85)) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.9));
    transform: translateY(0) scale(1);
  }
  100% {
    filter: drop-shadow(0 0 50px rgba(255, 215, 0, 1)) drop-shadow(0 0 80px rgba(245, 175, 45, 0.9));
    transform: translateY(-6px) scale(1.08);
  }
}

.monument-unified-card.coronation-champion-active {
  animation: heroCardCoronationAura 1.4s ease-in-out infinite alternate;
}

@keyframes heroCardCoronationAura {
  0% {
    filter: drop-shadow(0 0 15px rgba(245, 175, 45, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 35px rgba(255, 215, 0, 0.65)) drop-shadow(0 0 55px rgba(245, 175, 45, 0.4));
  }
}

/* ─── 7. POST-CORONATION SHAREABLE CARD & FLOATING DOCKED PILL ────────────────── */
.floating-share-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(245, 175, 45, 0.25) 0%, rgba(13, 17, 28, 0.95) 100%);
  border: 1.5px solid #f8be43;
  color: #ffd700;
  padding: 10px 20px;
  border-radius: 9999px;
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(248, 190, 67, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: floatingPillPulse 2.4s ease-in-out infinite;
}

.floating-share-pill:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85), 0 0 35px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, rgba(245, 175, 45, 0.35) 0%, rgba(20, 26, 42, 0.98) 100%);
}

@keyframes floatingPillPulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(248, 190, 67, 0.3);
  }
  50% {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 32px rgba(255, 215, 0, 0.55);
  }
}

.coronation-share-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 12, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.coronation-share-modal {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: 92vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #111625 0%, #080b13 100%);
  border: 1.5px solid rgba(245, 175, 45, 0.45);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 60px rgba(245, 175, 45, 0.2);
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  animation: shareModalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shareModalIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.share-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-modal-close:hover {
  background: rgba(245, 175, 45, 0.2);
  color: #ffd700;
  border-color: #f8be43;
}

.share-modal-layout {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 768px) {
  .share-modal-layout {
    flex-direction: column;
    gap: 24px;
  }
  .coronation-share-modal {
    padding: 24px 18px;
  }
}

.share-card-canvas-wrap {
  flex-shrink: 0;
  width: 360px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(245, 175, 45, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 175, 45, 0.25);
  background: #06080d;
}

@media (max-width: 768px) {
  .share-card-canvas-wrap {
    width: 290px;
    height: 290px;
    margin: 0 auto;
  }
}

.share-card-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.share-modal-info {
  flex: 1;
  min-width: 0;
}

.share-modal-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 175, 45, 0.15);
  border: 1px solid #f8be43;
  color: #ffd700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.share-modal-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 8px 0;
  color: #ffffff;
}

.share-modal-subtitle {
  font-size: 13.5px;
  line-height: 1.5;
  color: #94a3b8;
  margin: 0 0 22px 0;
}

.social-share-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .social-share-grid {
    grid-template-columns: 1fr;
  }
}

.btn-social-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  text-decoration: none;
}

/* X (Twitter) */
.btn-share-x {
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.btn-share-x:hover {
  background: #111111;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* LinkedIn */
.btn-share-li {
  background: #0a66c2;
  color: #ffffff;
  border: 1px solid #0077b5;
}
.btn-share-li:hover {
  background: #004182;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
}

/* Instagram */
.btn-share-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  border: none;
}
.btn-share-ig:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(220, 39, 67, 0.45);
}

.secondary-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary-action {
  flex: 1;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary-action:hover {
  background: rgba(245, 175, 45, 0.16);
  border-color: #f8be43;
  color: #ffd700;
  transform: translateY(-1px);
}

.btn-gif-progress {
  pointer-events: none;
  opacity: 0.7;
}

.share-replay-btn {
  background: transparent;
  border: 1px solid rgba(245, 175, 45, 0.4);
  color: #f5af2d;
}
.share-replay-btn:hover {
  background: rgba(245, 175, 45, 0.12);
  color: #ffd700;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SCROLL HINT (Discreet indicator to scroll down)
   ═══════════════════════════════════════════════════════════════ */
.hero-scroll-hint {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #e5b338;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(5, 7, 12, 0.85);
  border: 1px solid rgba(229, 179, 56, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  user-select: none;
}

.hero-scroll-hint:hover {
  color: #ffd700;
  border-color: rgba(229, 179, 56, 0.7);
  background: rgba(10, 14, 24, 0.95);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 179, 56, 0.25);
}

.hero-scroll-arrow {
  animation: hintArrowBounce 1.8s infinite ease-in-out;
}

/* ═══════════════════════════════════════════════════════════════
   4B. LIVE NOW TELEMETRY HUD CARD (MATCHING USER REFERENCE)
   ═══════════════════════════════════════════════════════════════ */
.live-now-hud {
  position: absolute;
  top: clamp(80px, 11.2vh, 105px);
  left: clamp(16px, 2.6vw, 38px);
  width: clamp(235px, 16.5vw, 265px);
  min-height: 442px;
  background: rgba(8, 12, 22, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 18px 16px 18px;
  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 45;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.live-now-hud:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(6, 182, 212, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Header */
.hud-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.hud-title {
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.7px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.hud-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981, 0 0 3px #34d399;
  animation: hudLivePulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

.hud-pulse-dot.hud-pulse-dot-amber {
  background-color: #f59e0b !important;
  box-shadow: 0 0 10px #f59e0b, 0 0 3px #fbbf24 !important;
}

.hud-pulse-dot.hud-pulse-dot-gold {
  background-color: #f8be43 !important;
  box-shadow: 0 0 10px #f8be43, 0 0 4px #ffd700 !important;
}

@keyframes hudLivePulse {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.85;
    box-shadow: 0 0 6px #10b981;
  }
  50% {
    transform: scale(1.22);
    opacity: 1;
    box-shadow: 0 0 14px #10b981, 0 0 5px #34d399;
  }
}

/* Stats Rows */
.hud-stats-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.hud-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hud-stat-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hud-stat-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hud-stat-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hud-stat-value {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.3px;
  display: inline-block;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.35s ease;
  will-change: transform, color, text-shadow;
}

/* Real-time Dynamic Update Flash */
.stat-flash-glow {
  color: #34d399 !important;
  text-shadow: 0 0 12px rgba(52, 211, 153, 0.9), 0 0 24px rgba(52, 211, 153, 0.5);
  transform: scale(1.06);
}

.hud-stat-label {
  font-size: 9.5px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 3px;
}

.hud-stat-trend {
  font-size: 11.5px;
  font-weight: 600;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.hud-stat-trend-arrow {
  font-size: 11px;
}

/* Bottom Activity Wave Section */
.hud-wave-wrap {
  position: relative;
  width: 100%;
  height: 38px;
  margin-top: 4px;
  overflow: hidden;
  border-radius: 4px;
}

.hud-wave-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hud-wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hud-wave-path {
  fill: none;
  stroke: url(#hudWaveStrokeGrad);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: hudWaveGlow 3s infinite ease-in-out;
}

@keyframes hudWaveGlow {
  0%, 100% {
    filter: drop-shadow(0 0 3px rgba(6, 182, 212, 0.45));
    opacity: 0.9;
  }
  50% {
    filter: drop-shadow(0 0 7px rgba(6, 182, 212, 0.75));
    opacity: 1;
  }
}

.hud-wave-fill {
  fill: url(#hudWaveAreaGrad);
}

.hud-footer-caption {
  font-size: 11px;
  color: #64748b;
  font-weight: 400;
  margin-top: 6px;
  text-align: left;
}

/* ═══════════════════════════════════════════════════════════════
   4C. FLOATING ROTATING CONTENDER CARD (MATCHING USER REFERENCE)
   ═══════════════════════════════════════════════════════════════ */
.floating-contender-hud {
  position: absolute;
  top: clamp(80px, 11.2vh, 105px);
  right: clamp(16px, 2.6vw, 38px);
  width: clamp(235px, 16.5vw, 265px);
  min-height: 442px;
  background: rgba(8, 12, 22, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 18px 16px 18px;
  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 45;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  will-change: transform, opacity;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.floating-contender-hud:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(245, 175, 45, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* Rank #1 Premium Highlight */
.floating-contender-hud.is-rank-one {
  border-color: rgba(245, 175, 45, 0.45);
  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.7),
    0 0 35px rgba(245, 175, 45, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.floating-contender-hud.is-rank-one .contender-rank-pill {
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.6);
  background: rgba(255, 215, 0, 0.15);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

/* Smooth Floating Animation States */
.floating-contender-hud.contender-entering {
  transform: translateX(140px) scale(0.95);
  opacity: 0;
  transition: none !important;
}

.floating-contender-hud.contender-visible {
  transform: translateX(0) scale(1);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-contender-hud.contender-leaving {
  transform: translateX(140px) scale(0.95);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

/* Header */
.contender-hud-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
}

.contender-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contender-rank-pill {
  font-family: 'Cinzel', 'Space Grotesk', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #f8be43;
  background: rgba(248, 190, 67, 0.12);
  border: 1px solid rgba(248, 190, 67, 0.35);
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

/* Brand Showcase Block */
.contender-brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contender-brand-block:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(245, 175, 45, 0.3);
}

.contender-logo-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease;
}

.contender-logo-wrap:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(245, 175, 45, 0.35);
}

.contender-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.contender-logo-custom {
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.contender-brand-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.contender-name {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: color 0.18s ease;
}

.contender-name:hover {
  color: #f5af2d;
}

.contender-domain {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.18s ease;
}

.contender-domain:hover {
  color: #f5af2d;
}

.contender-link-arrow {
  font-size: 10px;
  opacity: 0.8;
  transition: transform 0.18s ease;
}

.contender-domain:hover .contender-link-arrow {
  transform: translate(2px, -2px);
}

.contender-category-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Contender Stats List */
.contender-stats-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 12px;
  width: 100%;
}

/* Challenge Action Button */
.contender-action-wrap {
  width: 100%;
  margin-bottom: 8px;
}

.contender-challenge-btn {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: linear-gradient(135deg, #f8be43 0%, #f5af2d 50%, #d97706 100%);
  border: none;
  border-radius: 10px;
  color: #0b0c10;
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(245, 175, 45, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.contender-challenge-btn:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 22px rgba(245, 175, 45, 0.55);
  filter: brightness(1.06);
}

.contender-challenge-btn:active {
  transform: translateY(0);
}

/* Footer Rotation Telemetry */
.contender-footer-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contender-rotation-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.contender-rotation-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f5af2d, #f8be43);
  border-radius: 3px;
}

.contender-rotation-bar.animating {
  animation: contenderProgress 4s linear infinite;
}

@keyframes contenderProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.contender-footer-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 11px;
  color: #64748b;
  font-weight: 400;
  margin-top: 0;
}

.contender-inspect-link {
  color: #94a3b8;
  font-weight: 500;
  transition: color 0.18s ease;
}

.contender-inspect-link:hover {
  color: #f8be43;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE NAVIGATION DRAWER & BUTTON (HIDDEN ON DESKTOP)
   ═══════════════════════════════════════════════════════════════ */
.stage-mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(8, 14, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.stage-mobile-menu-btn:hover {
  background: rgba(245, 175, 45, 0.15);
  border-color: rgba(245, 175, 45, 0.5);
  color: #f5af2d;
}

.stage-mobile-drawer {
  position: fixed;
  top: 58px;
  left: 12px;
  right: 12px;
  background: rgba(8, 12, 22, 0.96);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(245, 175, 45, 0.35);
  border-radius: 16px;
  padding: 16px 14px;
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.88), 0 0 30px rgba(245, 175, 45, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 9px 12px;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
}

.mobile-drawer-link:hover,
.mobile-drawer-link.active {
  background: rgba(245, 175, 45, 0.12);
  color: #f5af2d;
}

.mobile-drawer-fireworks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  margin-top: 6px;
  background: rgba(245, 175, 45, 0.12);
  border: 1px dashed rgba(245, 175, 45, 0.4);
  border-radius: 8px;
  color: #f5af2d;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* ═══════════════════════════════════════════════════════════════
   2B. MOBILE & SMALL SCREEN LIVE TELEMETRY TICKER STRIP
   ═══════════════════════════════════════════════════════════════ */
.mobile-live-ticker-strip {
  display: none; /* Hidden on desktop */
}

@keyframes mobileTickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS: DESKTOP TIGHTENING (<= 1200px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .live-now-hud {
    width: 220px;
    min-height: 410px;
    padding: 14px 14px 12px 14px;
    left: 14px;
  }
  .floating-contender-hud {
    width: 220px;
    min-height: 410px;
    padding: 14px 14px 12px 14px;
    right: 14px;
  }
  .contender-logo-wrap {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
  }
  .hud-stat-value {
    font-size: 16px;
  }
  .hud-stats-list {
    gap: 11px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS: TABLETS & MOBILE (<= 991px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  /* 1. Switch Desktop HUD to Mobile Live Ticker Strip */
  .live-now-hud {
    display: none !important;
  }

  .floating-contender-hud {
    display: none !important;
  }

  .mobile-live-ticker-strip {
    display: flex !important;
    align-items: center;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    width: 100%;
    height: 38px;
    background: rgba(6, 10, 20, 0.94);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(245, 175, 45, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.65), 0 0 15px rgba(245, 175, 45, 0.08);
    z-index: 40;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
  }

  .ticker-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px 0 14px;
    height: 100%;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.22) 0%, rgba(6, 10, 20, 0.95) 100%);
    border-right: 1px solid rgba(16, 185, 129, 0.35);
    flex-shrink: 0;
    z-index: 2;
  }

  .ticker-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981, 0 0 3px #34d399;
    animation: hudLivePulse 2s infinite ease-in-out;
  }

  .ticker-badge-text {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.9px;
    color: #10b981;
    text-transform: uppercase;
  }

  .ticker-track-wrap {
    flex: 1;
    height: 100%;
    overflow: hidden !important;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 14px, black calc(100% - 14px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 14px, black calc(100% - 14px), transparent 100%);
  }

  .ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    height: 100%;
    animation: mobileTickerScroll 30s linear infinite;
    will-change: transform;
  }

  .ticker-track:hover,
  .ticker-track:active {
    animation-play-state: paused;
  }

  .ticker-set {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    font-size: 11.5px;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .ticker-icon {
    font-size: 12px;
    line-height: 1;
  }

  .ticker-label {
    font-size: 9.5px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .ticker-val {
    font-weight: 800;
    font-size: 12.5px;
    color: #ffffff;
    letter-spacing: -0.2px;
    transition: color 0.35s ease, transform 0.35s ease;
  }

  .ticker-val.gold {
    color: #f5af2d;
    text-shadow: 0 0 8px rgba(245, 175, 45, 0.4);
  }

  .ticker-trend {
    font-size: 10px;
    font-weight: 700;
    color: #10b981;
    margin-left: 2px;
  }

  .ticker-sep {
    color: rgba(255, 255, 255, 0.22);
    font-size: 10px;
    padding: 0 5px;
    user-select: none;
  }

  /* 2. Top Nav Adaptation */
  .stage-top-nav {
    top: 8px;
    left: 12px;
    right: 12px;
    height: 44px;
  }

  .stage-nav-links {
    display: none !important;
  }

  .stage-search-box {
    display: none !important;
  }

  .btn-fireworks-preview {
    display: none !important;
  }

  .stage-mobile-menu-btn {
    display: inline-flex !important;
  }

  .stage-btn-claim {
    padding: 7px 12px;
    font-size: 12px;
    gap: 4px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS: PHONES & SMALL TABLETS (<= 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .pinpoint-hero-viewport {
    height: 100vh;
    min-height: 640px;
  }

  /* Crown Positioning */
  .monument-crown-container {
    top: 52px;
    width: clamp(130px, 32vw, 165px);
    height: clamp(48px, 6.8vh, 62px);
  }

  /* Monument Card (#1 Apex) */
  .monument-unified-card {
    top: clamp(112px, 14.5vh, 138px);
    width: min(94vw, 420px);
    gap: 4px;
    padding: 0 12px;
  }

  .monument-logo-wrap {
    width: 100%;
    max-width: 220px;
    height: clamp(50px, 6.5vh, 65px);
    margin: 0 auto 4px auto;
  }

  .monument-card-rank {
    font-size: clamp(24px, 5.5vw, 30px);
    margin: 0 auto 2px auto;
  }

  .monument-name {
    font-size: clamp(24px, 5.8vw, 30px);
  }

  .monument-domain {
    font-size: 12px;
  }

  .monument-bid-label {
    font-size: 8.5px;
    letter-spacing: 1.2px;
  }

  .monument-bid-val {
    font-size: clamp(24px, 6.2vw, 32px);
  }

  .monument-outbid-btn {
    padding: 9px 18px;
    font-size: 13px;
    min-height: 42px;
    width: 100%;
    max-width: 290px;
  }

  /* Sideways Carousel Track */
  .sideways-cards-section {
    bottom: 10px;
    height: clamp(175px, 24vh, 205px);
  }

  .sideways-company-card {
    width: clamp(135px, 36vw, 155px);
    height: clamp(165px, 22vh, 195px);
    padding: 10px 10px 12px;
  }

  .vcard-name {
    font-size: 13px;
  }

  .vcard-bid-val {
    font-size: 14.5px;
  }

  .vcard-challenge-btn {
    padding: 5px 10px;
    font-size: 11.5px;
  }

  /* Outside Top 20 Scroll Hint */
  .hero-scroll-outside-btn {
    bottom: clamp(190px, 25.5vh, 220px);
    padding: 5px 12px;
    font-size: 10.5px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS: ULTRA COMPACT PHONES (<= 480px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .stage-top-nav {
    top: 6px;
    left: 10px;
    right: 10px;
    height: 42px;
  }

  .stage-logo span:last-child {
    font-size: 15px;
  }

  .stage-btn-claim {
    padding: 6px 10px;
    font-size: 11px;
    gap: 4px;
  }

  .mobile-live-ticker-strip {
    top: 50px;
    height: 35px;
  }

  .ticker-live-badge {
    padding: 0 9px 0 10px;
    gap: 5px;
  }

  .ticker-badge-text {
    font-size: 9.5px;
  }

  .ticker-item {
    padding: 0 8px;
    font-size: 11px;
  }

  .monument-crown-container {
    top: 48px;
    width: 130px;
    height: 48px;
  }

  .monument-unified-card {
    top: 104px;
    width: 95vw;
  }

  .monument-card-rank {
    font-size: 24px;
    margin: 0 auto 2px auto;
  }

  .monument-name {
    font-size: 22px;
  }

  .monument-bid-val {
    font-size: 24px;
  }

  .monument-outbid-btn {
    padding: 8px 14px;
    font-size: 12.5px;
    max-width: 260px;
    min-height: 38px;
  }

  .sideways-cards-section {
    bottom: 8px;
    height: 175px;
  }

  .sideways-company-card {
    width: 132px;
    height: 165px;
    padding: 8px;
  }

  .hero-scroll-outside-btn {
    bottom: 185px;
    font-size: 10px;
    padding: 4px 10px;
  }

  /* Modals on Compact Phones */
  .modal-dialog,
  .challenge-modal-card {
    max-width: 94vw !important;
    padding: 18px 14px !important;
    margin: 12px auto !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   5. OUTSIDE THE TOP 20 SECTION (MATCHING USER REFERENCE DESIGN)
   ═══════════════════════════════════════════════════════════════ */
.outside-top20-section {
  position: relative;
  background-color: #030508;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(229, 179, 56, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, #030508 0%, #060910 100%);
  padding: 54px 24px 80px;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.outside-top20-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* Header with Gold Divider Rules */
.outside-top20-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.gold-rule-left,
.gold-rule-right {
  flex: 1;
  height: 1px;
}

.gold-rule-left {
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.65) 100%);
}

.gold-rule-right {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.65) 0%, transparent 100%);
}

.outside-top20-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: 3.5px;
  color: #dfb142;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  text-shadow: 0 0 16px rgba(223, 177, 66, 0.35);
}

/* List / Table Wrapper Card */
.outside-table-card {
  background: #06080e;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), 0 0 24px rgba(212, 175, 55, 0.08);
}

/* Table Row */
@keyframes outsideRowEnter {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.outside-table-row {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  transition: background-color 0.18s ease, transform 0.18s ease;
  cursor: pointer;
  box-sizing: border-box;
  animation: outsideRowEnter 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.outside-table-row:nth-child(1) { animation-delay: 0.02s; }
.outside-table-row:nth-child(2) { animation-delay: 0.05s; }
.outside-table-row:nth-child(3) { animation-delay: 0.08s; }
.outside-table-row:nth-child(4) { animation-delay: 0.11s; }
.outside-table-row:nth-child(5) { animation-delay: 0.14s; }
.outside-table-row:nth-child(6) { animation-delay: 0.17s; }
.outside-table-row:nth-child(7) { animation-delay: 0.20s; }
.outside-table-row:nth-child(8) { animation-delay: 0.23s; }
.outside-table-row:nth-child(9) { animation-delay: 0.26s; }
.outside-table-row:nth-child(10) { animation-delay: 0.29s; }

.outside-table-row:last-child {
  border-bottom: none;
}

.outside-table-row:hover {
  background-color: rgba(212, 175, 55, 0.045);
}

/* 1. Rank Column */
.outside-col-rank {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 700;
  color: #dfb142;
  width: 76px;
  min-width: 76px;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid rgba(212, 175, 55, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 10px rgba(223, 177, 66, 0.3);
  letter-spacing: 0.5px;
}

/* 2. Brand Identity Column */
.outside-col-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 270px;
  min-width: 220px;
  flex-shrink: 0;
}

.outside-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  cursor: pointer;
}

.outside-logo-custom {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.outside-brand-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.outside-brand-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: color 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.outside-brand-name:hover {
  color: #f5af2d;
}

.outside-brand-subtitle {
  font-size: 12px;
  color: #8c97a8;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 210px;
}

/* 3. Domain Column */
.outside-col-domain {
  width: 170px;
  min-width: 130px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 13.5px;
  transition: color 0.15s ease;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}

.outside-col-domain:hover {
  color: #f5af2d;
}

.outside-link-arrow {
  opacity: 0.75;
  transition: transform 0.15s ease, opacity 0.15s ease;
  flex-shrink: 0;
}

.outside-col-domain:hover .outside-link-arrow,
.outside-col-category:hover .outside-link-arrow {
  transform: translate(2px, -2px);
  opacity: 1;
}

/* 4. Category / Tagline Column */
.outside-col-category {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 13px;
  padding: 0 16px;
  overflow: hidden;
  cursor: pointer;
}

.outside-col-category:hover {
  color: #cbd5e1;
}

.outside-col-category span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 5. Current Bid Column */
.outside-col-bid {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 125px;
  padding: 0 20px;
  flex-shrink: 0;
}

.outside-bid-label {
  font-size: 9.5px;
  font-weight: 700;
  color: #8892b0;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.outside-bid-val {
  font-size: 20px;
  font-weight: 700;
  color: #e5b338;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.3px;
}

/* 6. Action Button Column */
.outside-col-action {
  padding-left: 10px;
  min-width: 140px;
  text-align: right;
  flex-shrink: 0;
}

.outside-challenge-btn {
  background: linear-gradient(180deg, #ffd866 0%, #e8a617 50%, #b87a05 100%);
  border: 1px solid rgba(255, 235, 170, 0.45);
  border-radius: 6px;
  color: #0c0800;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232, 166, 23, 0.35);
  transition: all 0.2s ease;
  user-select: none;
}

.outside-challenge-btn:hover {
  background: linear-gradient(180deg, #ffe082 0%, #f5b027 50%, #c9880a 100%);
  box-shadow: 0 4px 14px rgba(232, 166, 23, 0.55);
  transform: translateY(-1px);
}

.outside-challenge-btn:active {
  transform: translateY(0);
}

/* Empty State */
.outside-empty-state {
  padding: 48px 24px;
  text-align: center;
  color: #94a3b8;
}

/* ═══════════════════════════════════════════════════════════════
   PAGINATION FOR OUTSIDE THE TOP 20
   ═══════════════════════════════════════════════════════════════ */
.outside-pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: rgba(4, 6, 11, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  box-sizing: border-box;
  flex-wrap: wrap;
}

.outside-pagination-info {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: #8892b0;
  letter-spacing: 0.2px;
}

.outside-info-highlight {
  color: #dfb142;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.outside-pagination-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.outside-page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.outside-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.025);
  color: #cbd5e1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  box-sizing: border-box;
}

.outside-page-btn:hover:not(:disabled) {
  background: rgba(223, 177, 66, 0.12);
  border-color: rgba(223, 177, 66, 0.65);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(223, 177, 66, 0.15);
}

.outside-page-btn:active:not(:disabled) {
  transform: translateY(0) scale(0.96);
}

.outside-page-btn.active {
  background: linear-gradient(135deg, rgba(223, 177, 66, 0.32) 0%, rgba(184, 122, 5, 0.22) 100%);
  border-color: #dfb142;
  color: #ffd866;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(223, 177, 66, 0.45), inset 0 0 8px rgba(223, 177, 66, 0.2);
  animation: activePageGlow 2.5s infinite ease-in-out;
}

@keyframes activePageGlow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(223, 177, 66, 0.4), inset 0 0 6px rgba(223, 177, 66, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(223, 177, 66, 0.7), inset 0 0 10px rgba(223, 177, 66, 0.35);
  }
}

.outside-btn-disabled,
.outside-page-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.08);
}

.outside-page-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
}

.outside-nav-label {
  font-size: 12.5px;
  letter-spacing: 0.3px;
}

.outside-page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  color: #64748b;
  font-size: 15px;
  font-weight: 600;
  user-select: none;
}

/* Page Size Pills */
.outside-pagesize-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.outside-pagesize-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: #8892b0;
}

.outside-pagesize-pills {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.02);
  padding: 3px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.16);
}

.outside-size-pill {
  height: 28px;
  min-width: 28px;
  padding: 0 8px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: #8892b0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}

.outside-size-pill:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.outside-size-pill.active {
  background: rgba(223, 177, 66, 0.25);
  color: #dfb142;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(223, 177, 66, 0.3);
}

/* Responsive Styles for Outside Top 20 */
@media (max-width: 990px) {
  .outside-col-category {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .outside-col-domain {
    display: none !important;
  }
  .outside-col-category {
    display: none !important;
  }
  .outside-table-row {
    padding: 10px 8px;
    gap: 4px;
  }
  .outside-col-rank {
    width: 38px;
    min-width: 38px;
    font-size: 16px;
    padding-right: 4px;
    margin-right: 4px;
    border-right: 1px solid rgba(212, 175, 55, 0.22);
  }
  .outside-col-brand {
    width: auto;
    flex: 1;
    min-width: 0;
    gap: 6px;
  }
  .outside-brand-logo {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }
  .outside-logo-custom {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 12px;
  }
  .outside-brand-text {
    min-width: 0;
    flex: 1;
  }
  .outside-brand-name {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .outside-brand-subtitle {
    display: none;
  }
  .outside-col-bid {
    padding: 0 4px;
    min-width: 60px;
    text-align: right;
  }
  .outside-bid-label {
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .outside-bid-val {
    font-size: 13px;
  }
  .outside-col-action {
    padding-left: 2px;
    min-width: unset;
    width: auto;
  }
  .outside-challenge-btn {
    padding: 6px 9px;
    font-size: 10.5px;
    gap: 3px;
  }
  .outside-pagination-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
  }
  .outside-pagination-info {
    font-size: 11.5px;
    text-align: center;
  }
  .outside-nav-label {
    display: none;
  }
  .outside-page-btn {
    height: 32px;
    min-width: 32px;
    font-size: 12px;
    padding: 0 8px;
  }
  .outside-pagesize-group {
    font-size: 11px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TEMPORARY REAL-TIME LIVE ACTIVITY TOAST QUEUE
   ════════════════════════════════════════════════════════════ */
.topboard-activity-area {
  position: fixed;
  top: 84px;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  width: 360px;
  max-width: calc(100vw - 32px);
}

.activity-toast-item {
  pointer-events: auto;
  position: relative;
  background: rgba(12, 17, 29, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 14px 14px 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  animation: toastSlideIn 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.activity-toast-item.toast-leaving {
  animation: toastSlideOut 0.32s ease forwards !important;
}

@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
  }
}

/* Activity Type Themes */
.activity-toast-support {
  border-left: 3.5px solid #10b981;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7), 0 0 22px rgba(16, 185, 129, 0.18);
}
.activity-toast-support .toast-progress-bar {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.activity-toast-challenge {
  border-left: 3.5px solid #f59e0b;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7), 0 0 22px rgba(245, 158, 11, 0.22);
}
.activity-toast-challenge .toast-progress-bar {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.activity-toast-won {
  border-left: 3.5px solid #00c3ff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7), 0 0 24px rgba(0, 195, 255, 0.25);
}
.activity-toast-won .toast-progress-bar {
  background: linear-gradient(90deg, #00c3ff, #38bdf8);
}

/* Internal Toast Elements */
.toast-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.toast-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.pill-support {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.pill-challenge {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.pill-won {
  background: rgba(0, 195, 255, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(0, 195, 255, 0.35);
}

.pill-payer {
  background: linear-gradient(135deg, rgba(245, 175, 45, 0.25), rgba(217, 119, 6, 0.35)) !important;
  border: 1px solid rgba(245, 175, 45, 0.7) !important;
  color: #fef08a !important;
  box-shadow: 0 0 10px rgba(245, 175, 45, 0.3);
}

/* Payer Personal Activity Enhancements */
.activity-toast-item.toast-payer {
  border: 1.5px solid rgba(245, 175, 45, 0.7) !important;
  border-left: 4px solid #f5af2d !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 30px rgba(245, 175, 45, 0.35) !important;
  background: linear-gradient(135deg, rgba(20, 24, 38, 0.98), rgba(12, 17, 29, 0.96)) !important;
}

.activity-toast-item.toast-payer .toast-progress-bar {
  background: linear-gradient(90deg, #f5af2d, #fde047) !important;
}

/* Arena Card Highlighting for Returning Payer */
@keyframes payerPulseGlow {
  0%, 100% {
    border-color: #f5af2d;
    box-shadow: 0 0 25px rgba(245, 175, 45, 0.75), 0 0 50px rgba(245, 175, 45, 0.35);
    transform: translateY(-4px) scale(1.03);
  }
  50% {
    border-color: #fde047;
    box-shadow: 0 0 35px rgba(253, 224, 71, 0.9), 0 0 65px rgba(245, 175, 45, 0.5);
    transform: translateY(-6px) scale(1.045);
  }
}

.sideways-company-card.payer-highlight-pulse {
  animation: payerPulseGlow 1.8s infinite ease-in-out !important;
  z-index: 60 !important;
}

.toast-close-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 13px;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  transition: color 0.15s ease;
}
.toast-close-btn:hover {
  color: #ffffff;
}

.toast-body-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: #e2e8f0;
}

.toast-actor-name {
  font-weight: 700;
  color: #ffffff;
}

.toast-action-text {
  color: #94a3b8;
  font-weight: 500;
}

.toast-target-name {
  font-weight: 700;
  color: #ffd700;
}

.toast-amount-row {
  margin-top: 4px;
  font-family: 'Space Grotesk', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.toast-progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.toast-progress-bar {
  height: 100%;
  width: 100%;
  transform-origin: left;
  animation: toastShrink 5s linear forwards;
}

@keyframes toastShrink {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

/* Mobile Responsiveness for Activity Toasts */
@media (max-width: 640px) {
  .topboard-activity-area {
    top: 72px;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
  }
  .activity-toast-item {
    padding: 10px 12px 12px 12px;
    animation: toastSlideDown 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes toastSlideDown {
    from {
      opacity: 0;
      transform: translateY(-16px) scale(0.97);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  .activity-toast-item.toast-leaving {
    animation: toastSlideUp 0.28s ease forwards !important;
  }
  @keyframes toastSlideUp {
    from {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    to {
      opacity: 0;
      transform: translateY(-16px) scale(0.97);
    }
  }
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY: PREFERS-REDUCED-MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .floating-contender-hud {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
  .floating-contender-hud.contender-entering,
  .floating-contender-hud.contender-leaving {
    transform: none !important;
    opacity: 0 !important;
  }
  .floating-contender-hud.contender-visible {
    transform: none !important;
    opacity: 1 !important;
  }
}