/* ============================================================
   TOPBOARD — Premium Design System
   A cinematic, futuristic global leaderboard monument
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=Orbitron:wght@700;900&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  /* Atmosphere */
  --bg-deep:       #04060d;
  --bg-mid:        #070b17;
  --bg-surface:    #0d1220;

  /* Gold (for #1 champion) */
  --gold-bright:   #ffd700;
  --gold-warm:     #f0a500;
  --gold-glow:     rgba(240, 165, 0, 0.35);
  --gold-subtle:   rgba(240, 165, 0, 0.08);

  /* Accent palette */
  --accent-blue:   #3b82f6;
  --accent-indigo: #6366f1;
  --accent-violet: #8b5cf6;
  --accent-cyan:   #06b6d4;
  --accent-teal:   #14b8a6;

  /* Text hierarchy */
  --text-primary:   #f0f4ff;
  --text-secondary: #8b95b0;
  --text-muted:     #4a5568;
  --text-accent:    #a5b4fc;

  /* Glass / surface */
  --glass-bg:       rgba(255,255,255,0.03);
  --glass-border:   rgba(255,255,255,0.07);
  --glass-hover:    rgba(255,255,255,0.06);

  /* Monument */
  --ring-base:      rgba(255,255,255,0.04);
  --ring-hover:     rgba(255,255,255,0.09);
  --ring-glow:      rgba(99,102,241,0.25);

  /* Spacing */
  --header-h: 68px;

  /* Typography */
  --font-sans: 'Inter', 'Space Grotesk', system-ui, sans-serif;
  --font-display: 'Orbitron', 'Space Grotesk', sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── Atmospheric Background ─────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(99,102,241,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(240,165,0,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 20% 60%, rgba(6,182,212,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.015) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

main { position: relative; z-index: 1; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', var(--font-sans);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.font-display { font-family: var(--font-display); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ─── Header / Navigation ────────────────────────────────── */
/* ─── Global Top Navigation Bar (Matches Homepage Exactly) ──────── */
[x-cloak] { display: none !important; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 3.5vw, 48px);
  background: rgba(4, 6, 13, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.stage-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}

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

.stage-logo,
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 900;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.stage-logo:hover,
.logo:hover {
  opacity: 0.9;
}

.stage-logo-crown,
.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(11px, 0.95vw, 14px);
  font-weight: 600;
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
  font-family: var(--font-sans, 'Inter', sans-serif);
}

.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, #f5af2d);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--gold-primary, #f5af2d);
}

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

.stage-search-box-wrapper {
  position: relative;
}

.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);
  -webkit-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(10px, 0.85vw, 13px);
  width: 100%;
  font-family: var(--font-sans, 'Inter', sans-serif);
}

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

.stage-search-box-wrapper {
  position: relative;
}

.stage-search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: rgba(8, 12, 22, 0.96);
  border: 1px solid rgba(245, 175, 45, 0.35);
  border-radius: 12px;
  overflow: hidden;
  z-index: 500;
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.88), 0 0 20px rgba(245, 175, 45, 0.15);
}

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

.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;
  font-family: var(--font-sans, 'Inter', sans-serif);
}

.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(10.5px, 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;
  font-family: var(--font-sans, 'Inter', sans-serif);
  white-space: nowrap;
}

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

.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: 68px;
  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: 1000;
  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;
  font-family: var(--font-sans, 'Inter', sans-serif);
}

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

@media (max-width: 1200px) {
  .stage-nav-links {
    display: none !important;
  }
  .stage-search-box-wrapper,
  .stage-search-box {
    display: none !important;
  }
  .stage-mobile-menu-btn {
    display: inline-flex !important;
  }
  .stage-btn-claim {
    padding: 7px 12px;
    font-size: 12px;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .site-header {
    height: 56px;
    padding: 0 12px;
  }
  .stage-mobile-drawer {
    top: 60px;
  }
  .stage-logo span:last-child {
    font-size: 15px;
  }
  .stage-btn-claim {
    padding: 6px 10px;
    font-size: 11px;
    gap: 4px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  font-family: var(--font-sans);
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover {
  background: var(--glass-hover);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.12);
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(99,102,241,0.35), 0 2px 8px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(99,102,241,0.5), 0 4px 16px rgba(0,0,0,0.3);
}

.btn-gold {
  background: linear-gradient(135deg, #f0a500 0%, #ffd700 100%);
  color: #1a0e00;
  font-weight: 700;
  box-shadow: 0 0 20px var(--gold-glow), 0 2px 8px rgba(0,0,0,0.3);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 35px var(--gold-glow), 0 4px 16px rgba(0,0,0,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.25);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 10px;
}

/* ─── Page Layout ────────────────────────────────────────── */
.page-body {
  padding-top: var(--header-h);
  min-height: 100vh;
}

/* ─── Homepage Grid ──────────────────────────────────────── */
.homepage-grid {
  display: grid;
  grid-template-columns: 340px 1fr 300px;
  grid-template-rows: auto;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  position: relative;
  align-items: start;
}

/* ─── Hero Panel (Left) ──────────────────────────────────── */
.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 32px 40px 0;
  position: sticky;
  top: calc(var(--header-h) + 40px);
  height: fit-content;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-indigo);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #6366f1, #a5b4fc, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 16px 0 28px;
  max-width: 300px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-ctas-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Stats Bar ──────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 14px 16px;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
}

.stat-value.gold { color: var(--gold-warm); }

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Monument Area (Center) ─────────────────────────────── */
.monument-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.monument-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}

/* ─── THE MONUMENT ───────────────────────────────────────── */
.monument {
  width: 100%;
  max-width: 620px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Vertical connector line through the tower */
.monument::before {
  content: '';
  position: absolute;
  top: 60px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--gold-warm) 0%,
    rgba(99,102,241,0.5) 20%,
    rgba(99,102,241,0.2) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow behind the monument */
.monument-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Crown / Apex ───────────────────────────────────────── */
.monument-apex {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: -8px;
}

.apex-crown {
  font-size: 2.2rem;
  filter: drop-shadow(0 0 16px var(--gold-bright)) drop-shadow(0 0 32px var(--gold-warm));
  animation: crownPulse 3s ease-in-out infinite;
  line-height: 1;
  margin-bottom: 4px;
}

@keyframes crownPulse {
  0%, 100% { filter: drop-shadow(0 0 16px var(--gold-bright)) drop-shadow(0 0 32px var(--gold-warm)); }
  50% { filter: drop-shadow(0 0 24px var(--gold-bright)) drop-shadow(0 0 48px var(--gold-warm)) drop-shadow(0 0 64px rgba(255,215,0,0.3)); }
}

.apex-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold-warm);
  text-transform: uppercase;
  font-weight: 700;
}

/* ─── Ring System ────────────────────────────────────────── */
.ring-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Each ring has diminishing size as rank increases */
.ring-item {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* The ring visual itself */
.ring-body {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
}

/* Ring visual container */
.ring-container {
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  background: var(--ring-base);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Rank 1 — gold champion ring */
.ring-item[data-rank="1"] .ring-container {
  background: linear-gradient(135deg,
    rgba(240,165,0,0.15) 0%,
    rgba(255,215,0,0.08) 50%,
    rgba(240,165,0,0.12) 100%
  );
  border: 1px solid rgba(240,165,0,0.4);
  box-shadow:
    0 0 40px rgba(240,165,0,0.2),
    0 0 80px rgba(240,165,0,0.08),
    inset 0 1px 0 rgba(255,215,0,0.2);
}

.ring-item[data-rank="1"] .ring-container::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.08), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Rank 2 — silver */
.ring-item[data-rank="2"] .ring-container {
  background: rgba(192,192,192,0.06);
  border-color: rgba(192,192,192,0.25);
  box-shadow: 0 0 20px rgba(192,192,192,0.08);
}

/* Rank 3 — bronze */
.ring-item[data-rank="3"] .ring-container {
  background: rgba(205,127,50,0.08);
  border-color: rgba(205,127,50,0.25);
  box-shadow: 0 0 16px rgba(205,127,50,0.1);
}

/* Hover state for all rings */
.ring-item:hover .ring-container {
  background: var(--ring-hover);
  border-color: rgba(99,102,241,0.4);
  box-shadow: 0 0 30px rgba(99,102,241,0.2), 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.ring-item[data-rank="1"]:hover .ring-container {
  box-shadow:
    0 0 60px rgba(240,165,0,0.35),
    0 0 100px rgba(240,165,0,0.15),
    0 4px 20px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,215,0,0.3);
}

/* ─── Ring Size Scale ─────────────────────────────────────── */
/* Rings diminish in width as rank increases */
.ring-item { margin: 3px 0; }

.ring-item[data-rank="1"]  { width: 100%; }
.ring-item[data-rank="2"]  { width: 96%; }
.ring-item[data-rank="3"]  { width: 92%; }
.ring-item[data-rank="4"]  { width: 89%; }
.ring-item[data-rank="5"]  { width: 86%; }
.ring-item[data-rank="6"]  { width: 83%; }
.ring-item[data-rank="7"]  { width: 80%; }
.ring-item[data-rank="8"]  { width: 78%; }
.ring-item[data-rank="9"]  { width: 76%; }
.ring-item[data-rank="10"] { width: 74%; }
.ring-item[data-rank="11"] { width: 72%; }
.ring-item[data-rank="12"] { width: 70%; }
.ring-item[data-rank="13"] { width: 68%; }
.ring-item[data-rank="14"] { width: 67%; }
.ring-item[data-rank="15"] { width: 66%; }
.ring-item[data-rank="16"] { width: 65%; }
.ring-item[data-rank="17"] { width: 64%; }
.ring-item[data-rank="18"] { width: 63%; }
.ring-item[data-rank="19"] { width: 62%; }
.ring-item[data-rank="20"] { width: 61%; }
.ring-item[data-rank="21"] { width: 60%; }
.ring-item[data-rank="22"] { width: 59%; }
.ring-item[data-rank="23"] { width: 58%; }
.ring-item[data-rank="24"] { width: 57%; }
.ring-item[data-rank="25"] { width: 56%; }

/* Ring heights diminish slightly */
.ring-item[data-rank="1"]  .ring-container { height: 72px; }
.ring-item[data-rank="2"]  .ring-container { height: 64px; }
.ring-item[data-rank="3"]  .ring-container { height: 60px; }
.ring-item[data-rank="4"]  .ring-container,
.ring-item[data-rank="5"]  .ring-container { height: 56px; }
.ring-item[data-rank="6"]  .ring-container,
.ring-item[data-rank="7"]  .ring-container,
.ring-item[data-rank="8"]  .ring-container { height: 52px; }
.ring-item[data-rank="9"]  .ring-container,
.ring-item[data-rank="10"] .ring-container { height: 50px; }
.ring-item[data-rank="11"] .ring-container,
.ring-item[data-rank="12"] .ring-container,
.ring-item[data-rank="13"] .ring-container { height: 48px; }
.ring-item[data-rank="14"] .ring-container,
.ring-item[data-rank="15"] .ring-container,
.ring-item[data-rank="16"] .ring-container { height: 46px; }
.ring-item[data-rank="17"] .ring-container,
.ring-item[data-rank="18"] .ring-container,
.ring-item[data-rank="19"] .ring-container,
.ring-item[data-rank="20"] .ring-container,
.ring-item[data-rank="21"] .ring-container,
.ring-item[data-rank="22"] .ring-container,
.ring-item[data-rank="23"] .ring-container,
.ring-item[data-rank="24"] .ring-container,
.ring-item[data-rank="25"] .ring-container { height: 44px; }

/* ─── Ring Content ────────────────────────────────────────── */
.ring-rank-badge {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-family: 'Space Grotesk', sans-serif;
  min-width: 32px;
  text-align: right;
  margin-left: 8px;
}

.ring-item[data-rank="1"] .ring-rank-badge { color: var(--gold-warm); font-size: 0.75rem; }
.ring-item[data-rank="2"] .ring-rank-badge { color: #c0c0c0; }
.ring-item[data-rank="3"] .ring-rank-badge { color: #cd7f32; }

.ring-logo {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.ring-item[data-rank="1"] .ring-logo {
  width: 42px;
  height: 42px;
  font-size: 1.4rem;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(240,165,0,0.3);
}

.ring-item[data-rank="2"] .ring-logo,
.ring-item[data-rank="3"] .ring-logo {
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
}

.ring-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.ring-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Space Grotesk', sans-serif;
}

.ring-item[data-rank="1"] .ring-name { font-size: 1rem; }
.ring-item[data-rank="2"] .ring-name,
.ring-item[data-rank="3"] .ring-name { font-size: 0.9rem; }

.ring-url {
  font-size: 0.65rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ring-bid {
  flex-shrink: 0;
  margin-right: 16px;
  text-align: right;
}

.ring-bid-amount {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
}

.ring-item[data-rank="1"] .ring-bid-amount {
  font-size: 1rem;
  color: var(--gold-warm);
}
.ring-item[data-rank="2"] .ring-bid-amount { color: #c0c0c0; }
.ring-item[data-rank="3"] .ring-bid-amount { color: #cd7f32; }

.ring-bid-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Hover Tooltip ───────────────────────────────────────── */
.ring-tooltip {
  display: none;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, calc(-100% - 16px));
  z-index: 50;
  min-width: 240px;
  background: rgba(13,18,32,0.95);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 12px;
  padding: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(99,102,241,0.1);
  pointer-events: none;
}

.ring-item:hover .ring-tooltip {
  display: block;
  animation: tooltipFadeIn 0.15s ease;
}

@keyframes tooltipFadeIn {
  from { opacity: 0; transform: translate(-50%, calc(-100% - 8px)); }
  to   { opacity: 1; transform: translate(-50%, calc(-100% - 16px)); }
}

.tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.tooltip-name {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.tooltip-rank-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(99,102,241,0.2);
  color: var(--accent-indigo);
  border: 1px solid rgba(99,102,241,0.3);
}

.tooltip-url {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.tooltip-bid-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 12px;
}

.tooltip-bid-label { font-size: 0.75rem; color: var(--text-secondary); }
.tooltip-bid-value { font-size: 1.1rem; font-weight: 700; color: var(--gold-warm); }

.tooltip-cta {
  display: block;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2));
  border: 1px solid rgba(99,102,241,0.3);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-indigo);
  transition: all 0.2s;
  pointer-events: all;
}

.tooltip-cta:hover {
  background: linear-gradient(135deg, rgba(99,102,241,0.35), rgba(139,92,246,0.35));
  color: #fff;
}

/* ─── Waterfall Effect ────────────────────────────────────── */
.waterfall-container {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 620px;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.waterfall-stream {
  position: absolute;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, rgba(99,102,241,0.4), rgba(6,182,212,0.3), transparent);
  border-radius: 2px;
  animation: waterFall linear infinite;
}

@keyframes waterFall {
  0%   { transform: translateY(-200px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(120px); opacity: 0; }
}

/* Monument base */
.monument-base {
  margin-top: 8px;
  text-align: center;
  padding: 16px 32px 12px;
  background: linear-gradient(180deg, rgba(99,102,241,0.1) 0%, transparent 100%);
  border-top: 1px solid rgba(99,102,241,0.2);
  width: 70%;
  border-radius: 0 0 16px 16px;
}

.monument-base-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--text-primary);
}

.monument-base-sub {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ─── Live Bids Panel (Right) ────────────────────────────── */
.live-panel {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  height: fit-content;
  padding: 0 0 0 24px;
}

.live-panel-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
}

.live-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--glass-border);
}

.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: livePulse 2s ease infinite;
}

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.live-panel-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-badge {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.3);
  font-weight: 600;
}

.live-activity-list {
  padding: 8px 0;
}

.live-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.live-activity-item:last-child { border-bottom: none; }
.live-activity-item:hover { background: var(--glass-hover); }

.live-activity-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.live-activity-info { flex: 1; min-width: 0; }

.live-activity-name {
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-activity-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.live-activity-amount {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-warm);
  font-family: 'Space Grotesk', sans-serif;
  flex-shrink: 0;
}

.live-panel-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.live-panel-cta {
  font-size: 0.75rem;
  color: var(--accent-indigo);
  font-weight: 600;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.live-panel-cta:hover { color: #a5b4fc; }

/* ─── Search Results Dropdown ─────────────────────────────── */
.search-results,
.stage-search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: rgba(8, 12, 22, 0.96);
  border: 1px solid rgba(245, 175, 45, 0.35);
  border-radius: 12px;
  overflow: hidden;
  z-index: 200;
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.88), 0 0 20px rgba(245, 175, 45, 0.15);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: rgba(245, 175, 45, 0.12); }

.search-result-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.search-result-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.search-result-url { font-size: 0.72rem; color: #94a3b8; }
.search-result-rank {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary, #f5af2d);
}

.search-empty {
  padding: 20px 16px;
  text-align: center;
  font-size: 0.82rem;
  color: #94a3b8;
}
.search-empty a {
  color: var(--gold-primary, #f5af2d) !important;
  font-weight: 700;
}

.stage-search-clear-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 11px;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
}

.stage-search-clear-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.search-dropdown-view-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(245, 175, 45, 0.08);
  border-top: 1px solid rgba(245, 175, 45, 0.2);
  color: #f5af2d;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.search-dropdown-view-all:hover {
  background: rgba(245, 175, 45, 0.18);
  color: #ffd700;
}

/* ─── Modern Company Detail Page (Two Distinct Cards) ────────────── */
.company-detail-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  position: relative;
  z-index: 2;
}

.company-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s ease;
}

.breadcrumb-back:hover {
  color: #f8be43;
}

.breadcrumb-sep {
  color: #475569;
}

.breadcrumb-current {
  color: #f1f5f9;
  font-weight: 600;
}

/* Base Card Style */
.company-card {
  background: rgba(15, 20, 32, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px;
  margin-bottom: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* CARD 1: Company Profile & About */
.company-main-card {
  position: relative;
  overflow: hidden;
}

.company-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f8be43, #e5a825, #6366f1, #06b6d4);
}

.company-header-grid {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
}

.company-logo-box {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.company-logo-box svg {
  width: 52px !important;
  height: 52px !important;
}

.company-logo-box .brand-svg {
  width: 52px !important;
  height: 52px !important;
}

.company-logo-box .vcard-logo-ms {
  width: 50px;
  height: 50px;
  gap: 5px;
}

.company-logo-box .brand-emoji {
  font-size: 42px;
}

.company-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-header-meta {
  flex: 1;
  min-width: 0;
}

.company-badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.company-rank-pill {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rank-pill-1 {
  background: rgba(248, 190, 67, 0.15);
  color: #f8be43;
  border: 1px solid rgba(248, 190, 67, 0.4);
}

.rank-pill-2, .rank-pill-3 {
  background: rgba(203, 213, 225, 0.15);
  color: #cbd5e1;
  border: 1px solid rgba(203, 213, 225, 0.35);
}

.rank-pill-other {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.35);
}

.company-status-pill {
  font-size: 0.74rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.company-status-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.company-heading-name {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.company-website-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.company-website-chip:hover {
  background: rgba(248, 190, 67, 0.15);
  border-color: rgba(248, 190, 67, 0.4);
  color: #f8be43;
  transform: translateY(-1px);
}

.chip-arrow {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Stats Row inside Card 1 */
.company-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.company-stat-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
}

.stat-box-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 6px;
}

.stat-box-val {
  font-size: 1.55rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  margin-bottom: 4px;
}

.stat-box-val.text-gold {
  color: #f8be43;
}

.stat-box-val.text-cyan {
  color: #38bdf8;
}

.stat-box-val.text-white {
  color: #ffffff;
}

.stat-box-hint {
  font-size: 0.72rem;
  color: #64748b;
}

/* Dedicated About Section */
.company-about-card-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 24px 26px;
  margin-bottom: 28px;
}

.section-subheading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 12px;
  font-family: 'Space Grotesk', sans-serif;
}

.section-subheading svg {
  color: #f8be43;
}

.about-text-body {
  font-size: 0.94rem;
  line-height: 1.75;
  color: #cbd5e1;
}

.about-lead-desc {
  font-size: 1.05rem;
  font-weight: 500;
  color: #e2e8f0;
  margin-bottom: 10px;
}

.about-detail-desc {
  color: #94a3b8;
  margin: 0;
}

/* Action Bar in Card 1 */
.company-action-bar {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary-action {
  background: linear-gradient(135deg, #f8be43 0%, #e5a825 100%);
  color: #0b0f19;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(248, 190, 67, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248, 190, 67, 0.5);
  color: #000000;
}

.btn-secondary-action {
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 24px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s ease;
}

.btn-secondary-action:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-1px);
}

/* CARD 2: Supporters & Backers Card */
.company-supporters-card {
  position: relative;
}

.supporters-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 20px;
  flex-wrap: wrap;
}

.supporters-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  margin: 0 0 6px;
}

.supporters-title svg {
  color: #38bdf8;
}

.supporters-subtitle {
  font-size: 0.88rem;
  color: #94a3b8;
  margin: 0;
}

.supporters-summary-badge {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: #e0f2fe;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.summary-count {
  font-weight: 800;
  color: #38bdf8;
}

.summary-total {
  font-weight: 700;
  color: #f8be43;
}

.summary-divider {
  opacity: 0.4;
}

/* Support History Filter Toolbar */
.supporters-filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.supporters-filter-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.supporters-filter-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px;
  border-radius: 12px;
  gap: 6px;
}

.supporter-filter-btn {
  background: transparent;
  border: 1px solid transparent;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 9px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.supporter-filter-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.supporter-filter-btn.active {
  background: rgba(248, 190, 67, 0.16);
  color: #f8be43;
  border-color: rgba(248, 190, 67, 0.4);
  box-shadow: 0 2px 12px rgba(248, 190, 67, 0.18);
}

/* Supporters Table */
.supporters-table-wrap {
  margin-bottom: 36px;
}

.supporters-table {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
}

.supporters-thead {
  display: grid;
  grid-template-columns: 2.2fr 1.6fr 1.8fr 1.4fr;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #64748b;
  text-transform: uppercase;
}

.supporter-row {
  display: grid;
  grid-template-columns: 2.2fr 1.6fr 1.8fr 1.4fr;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s ease;
}

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

.supporter-row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.supporter-row.winning-row {
  background: rgba(248, 190, 67, 0.035);
  border-left: 3px solid #f8be43;
}

.supporter-name-col {
  display: flex;
  align-items: center;
  gap: 12px;
}

.supporter-avatar {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.supporter-avatar.avatar-gold {
  background: linear-gradient(135deg, #f8be43 0%, #d97706 100%);
  color: #0f172a;
}

.supporter-name-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.supporter-name-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f1f5f9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.winner-crown-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #f8be43;
}

.supporter-amount-col {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #f8be43;
}

.amount-currency {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-right: 2px;
}

.supporter-date-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.date-primary {
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
}

.date-secondary {
  font-size: 0.72rem;
  color: #64748b;
}

.supporter-status-col {
  display: flex;
  align-items: center;
}

.status-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-winning {
  background: rgba(248, 190, 67, 0.15);
  color: #f8be43;
  border: 1px solid rgba(248, 190, 67, 0.35);
}

.status-winning .status-dot {
  background: #f8be43;
  box-shadow: 0 0 6px #f8be43;
}

.status-verified {
  background: rgba(56, 189, 248, 0.1);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.status-verified .status-dot {
  background: #38bdf8;
}

/* Empty State */
.supporters-empty-state {
  padding: 48px 24px;
  text-align: center;
}

.empty-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.empty-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.empty-subtitle {
  font-size: 0.85rem;
  color: #94a3b8;
  max-width: 440px;
  margin: 0 auto;
}

/* Support Form Section in Card 2 */
.support-form-container {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 30px;
}

.support-form-header {
  margin-bottom: 20px;
}

.support-form-title {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  margin: 0 0 4px;
}

.support-form-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
}

.form-inputs-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
}

.field-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 8px;
}

.form-field-group input {
  background: rgba(11, 15, 25, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field-group input:focus {
  border-color: #f8be43;
  box-shadow: 0 0 0 3px rgba(248, 190, 67, 0.15);
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.submit-support-btn {
  background: linear-gradient(135deg, #f8be43 0%, #e5a825 100%);
  color: #0b0f19;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(248, 190, 67, 0.35);
  transition: all 0.2s ease;
}

.submit-support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248, 190, 67, 0.5);
  color: #000000;
}

.support-disclaimer {
  font-size: 0.75rem;
  color: #64748b;
  max-width: 440px;
}

/* Backwards compatibility aliases */
.detail-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .company-detail-container {
    padding: 24px 16px 60px;
  }
  .company-card {
    padding: 24px 18px;
  }
  .company-header-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .company-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-inputs-row {
    grid-template-columns: 1fr;
  }
  .supporters-thead {
    display: none;
  }
  .supporter-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 14px;
  }
  .supporters-header {
    flex-direction: column;
  }
}

/* ─── Claim Page ──────────────────────────────────────────── */
.claim-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 24px;
}

.form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.form-input, .bid-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: all 0.2s;
  -webkit-appearance: none;
}

.form-input:focus, .bid-input:focus {
  outline: none;
  border-color: var(--accent-indigo);
  background: rgba(99,102,241,0.06);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

.form-input::placeholder, .bid-input::placeholder {
  color: var(--text-muted);
}

.form-group { margin-bottom: 20px; }

.emoji-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.emoji-option {
  padding: 8px;
  text-align: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.2s;
}
.emoji-option:hover, .emoji-option.selected {
  background: rgba(99,102,241,0.15);
  border-color: rgba(99,102,241,0.4);
}

.color-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.color-option {
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.color-option:hover, .color-option.selected {
  border-color: #fff;
  transform: scale(1.15);
}

/* ─── How It Works / Pricing / About ────────────────────────── */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 60px;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.step-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: rgba(99,102,241,0.3);
  background: var(--glass-hover);
  transform: translateY(-2px);
}

.step-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-indigo);
  font-family: var(--font-display);
  opacity: 0.5;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Account Pages ───────────────────────────────────────── */
.auth-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.auth-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(8px);
}

/* ─── Alerts / Messages ───────────────────────────────────── */
.messages-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 360px;
}

.message {
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
  border: 1px solid;
  animation: messageSlide 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

@keyframes messageSlide {
  from { transform: translateX(100px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.message.success {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: #86efac;
}
.message.error {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.3);
  color: #fca5a5;
}
.message.info {
  background: rgba(99,102,241,0.1);
  border-color: rgba(99,102,241,0.3);
  color: #a5b4fc;
}

/* ─── Disclaimer ──────────────────────────────────────────── */
.disclaimer-bar {
  text-align: center;
  padding: 10px 24px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--glass-border);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ─── Utility Classes ─────────────────────────────────────── */
.text-gold { color: var(--gold-warm); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-accent { color: var(--accent-indigo); }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-display { font-family: var(--font-display); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

.hidden { display: none !important; }
.w-full { width: 100%; }

/* ─── Particle Animation ──────────────────────────────────── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(99,102,241,0.4);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 0.5; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ─── Responsive ──────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1100px) {
  .homepage-grid {
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto auto;
  }

  .live-panel {
    grid-column: 1 / -1;
    position: relative;
    top: 0;
    padding: 0;
    margin-top: 32px;
  }

  .live-activity-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 720px) {
  .homepage-grid {
    grid-template-columns: 1fr;
    padding: 24px 16px 48px;
  }

  .hero-panel {
    position: relative;
    top: 0;
    padding: 24px 0;
    text-align: center;
    align-items: center;
  }

  .hero-sub { max-width: 100%; }

  .monument-column { padding: 0; }

  .nav-links { display: none; }

  .search-input { width: 140px; }

  .live-activity-list { display: block; }

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

  .hero-ctas-row { justify-content: center; }

  .ring-tooltip { display: none !important; }
}

/* ─── HTMX Loading States ─────────────────────────────────── */
.htmx-indicator {
  display: none;
}
.htmx-request .htmx-indicator {
  display: inline-block;
}
.htmx-request.htmx-indicator {
  display: inline-block;
}

/* Loading spinner */
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent-indigo);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Bid Form Specific ───────────────────────────────────── */
.bid-section {
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.06));
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 16px;
  padding: 24px;
}

.bid-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ─── Scroll Indicator ────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.4;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.scroll-hint-text {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Mobile Nav ──────────────────────────────────────────── */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 720px) {
  .mobile-nav-toggle { display: block; }
}

/* ─── Ambient Light Animations ───────────────────────────── */
@keyframes ambientPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.ambient-light {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  animation: ambientPulse 6s ease-in-out infinite;
}

/* ============================================================
   TOPBOARD — CINEMATIC MONUMENT HERO & 3D CYLINDRICAL TOWER
   ============================================================ */

/* Brand SVGs */
.brand-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.brand-emoji {
  font-size: 1.2rem;
  line-height: 1;
}

/* Nav Active Link Indicator */
.nav-links a.nav-active {
  color: #fff !important;
  position: relative;
}
.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #06b6d4);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
}

/* Header Glass Tuning */
.site-header {
  background: rgba(4, 6, 13, 0.45) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.search-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  color: #fff;
  padding: 8px 16px 8px 36px;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}
.search-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(99, 102, 241, 0.6);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.3);
}

/* Hero Stage Wrapper */
.homepage-stage-wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

/* Fullscreen Cinematic Hero Stage — Realistic 3D Monument */
.cinematic-monument-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #050816;
  background-image:
    linear-gradient(to bottom, rgba(4,6,15,0.18) 0%, rgba(4,6,15,0.02) 40%, rgba(4,6,15,0.72) 100%),
    url('/static/images/clean-tower-backdrop.jpg');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--header-h) + 8px) 24px 40px;
  overflow: hidden;
}

/* Ambient Canvas Layer (Waterfalls, Mist, Sky Drones) */
.ambient-canvas-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Top Spire Apex Beacon */
.monument-spire-apex {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spire-crown-glow {
  font-size: 2.2rem;
  filter: drop-shadow(0 0 20px #ffd700) drop-shadow(0 0 40px #f0a500);
  animation: crownPulse 3s ease-in-out infinite alternate;
}
@keyframes crownPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 15px #ffd700); }
  100% { transform: scale(1.1); filter: drop-shadow(0 0 35px #ffd700) drop-shadow(0 0 60px #f0a500); }
}

/* Handwritten Callout Note with Curved Arrow */
.callout-annotation {
  position: absolute;
  top: 90px;
  left: calc(50% + 180px);
  z-index: 15;
  pointer-events: none;
}
.callout-handwritten {
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.15;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.4), 0 2px 8px rgba(0, 0, 0, 0.8);
  transform: rotate(-3deg);
  letter-spacing: 0.02em;
}
.callout-curved-arrow {
  width: 90px;
  height: 70px;
  margin-top: -6px;
  margin-left: 20px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
  animation: arrowGlow 3s ease-in-out infinite alternate;
}
@keyframes arrowGlow {
  0% { opacity: 0.75; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(3px); }
}

/* Stone Monolith Engravings */
.stone-monolith {
  position: absolute;
  bottom: 50px;
  z-index: 4;
  pointer-events: none;
}
.stone-left {
  left: 28px;
}
.stone-right {
  right: 28px;
  text-align: right;
}
.monolith-engraved {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: rgba(226, 232, 240, 0.42);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9), -1px -1px 2px rgba(255, 255, 255, 0.08);
}

/* Monument Base Entrance Canopy */
.monument-base-entrance-sign {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  text-align: center;
  padding: 6px 20px;
  background: rgba(10, 15, 28, 0.75);
  border: 1px solid rgba(240, 165, 0, 0.3);
  border-radius: 6px;
  box-shadow: 0 0 25px rgba(240, 165, 0, 0.2);
}
.entrance-gold-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}
.entrance-gold-sub {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

/* Three.js 3D Monument Viewport Container */
.three-monument-container {
  width: 100%;
  max-width: 580px;
  height: 760px;
  position: relative;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
}
.three-monument-container canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  outline: none;
}

/* 3D Monument Floating HUD Tooltip */
.three-monument-hud-tooltip {
  position: absolute;
  width: 290px;
  padding: 14px 16px;
  background: rgba(8, 14, 30, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255, 215, 0, 0.55);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 25px rgba(240, 165, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate(-50%, -100%);
  z-index: 9999;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hud-tooltip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.hud-tooltip-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hud-tooltip-logo {
  font-size: 1.3rem;
}
.hud-tooltip-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}
.hud-tooltip-domain {
  font-size: 0.7rem;
  color: #94a3b8;
}
.hud-tooltip-rank {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffd700;
}
.hud-tooltip-desc {
  font-size: 0.74rem;
  color: #cbd5e1;
  line-height: 1.35;
  margin-bottom: 10px;
}
.hud-tooltip-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.hud-stat-label {
  font-size: 0.65rem;
  color: #94a3b8;
  display: block;
}
.hud-stat-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}
.hud-stat-val.gold {
  color: #ffd700;
}
.hud-outbid-btn {
  display: block;
  width: 100%;
  padding: 8px 12px;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
  transition: all 0.2s;
}
.hud-outbid-btn:hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
}

/* Three-Column Hero Grid (Center is mathematically dead-center) */
.hero-stage-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  gap: 20px;
}

/* Left Hero Column */
.hero-stage-left {
  justify-self: start;
  width: 100%;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 55px;
}
.hero-stage-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(147, 197, 253, 0.5);
}
.hero-stage-title {
  font-size: clamp(2.8rem, 3.8vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 16px;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.45));
}
.hero-stage-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 350px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* CTA Buttons */
.hero-stage-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.5), 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-hero-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 35px rgba(99, 102, 241, 0.7), 0 8px 25px rgba(0, 0, 0, 0.5);
  color: #fff;
}
.cta-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s;
}
.btn-hero-primary:hover .cta-arrow {
  transform: translateX(4px);
}

.btn-hero-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #f1f5f9;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-hero-video:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.play-icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
  padding-left: 2px;
}

/* 4 Live Stat Badges */
.hero-stage-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 360px;
}
.stat-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(13, 18, 32, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.stat-badge-icon {
  font-size: 1.3rem;
}
.stat-badge-body {
  display: flex;
  flex-direction: column;
}
.stat-badge-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.1;
}
.stat-badge-num.stat-gold {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
.stat-badge-label {
  font-size: 0.68rem;
  color: #94a3b8;
  line-height: 1.15;
}
.hero-disclaimer-note {
  font-size: 0.68rem;
  color: #64748b;
  margin-top: 14px;
}

/* ═════════════════════════════════════════════════════
   CENTER COLUMN: 3D CYLINDRICAL TOWER MONUMENT (Pure Code)
   ══════════════════════════════════════════════════ */
.hero-stage-center {
  justify-self: center;
  width: 100%;
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}

/* High-Tech Apex Spire & Crystalline Crown */
.tower-apex-crown {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  z-index: 10;
}
.apex-needle-spire {
  width: 3px;
  height: 48px;
  background: linear-gradient(to top, #ffd700, #38bdf8 60%, #fff 100%);
  box-shadow: 0 0 12px #38bdf8, 0 0 24px #ffd700;
  border-radius: 2px;
}
.apex-energy-halo {
  width: 64px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.6);
  margin-top: -6px;
  margin-bottom: 2px;
  animation: haloPulse 2.5s ease-in-out infinite alternate;
}
@keyframes haloPulse {
  0% { transform: scale(0.92); opacity: 0.6; }
  100% { transform: scale(1.08); opacity: 1; filter: drop-shadow(0 0 8px #ffd700); }
}
.crown-spire-glow {
  font-size: 2.2rem;
  filter: drop-shadow(0 0 20px #ffd700) drop-shadow(0 0 45px #f0a500);
  animation: crownPulse 3s ease-in-out infinite alternate;
  line-height: 1;
}
.crown-beacon-beam {
  width: 140px;
  height: 14px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.75) 0%, transparent 80%);
  filter: blur(4px);
}

/* Flanking Structural Cyber Energy Pylons */
.tower-flank-pylon {
  position: absolute;
  top: 70px;
  bottom: 40px;
  width: 12px;
  background: linear-gradient(180deg, #111827 0%, #0b1120 50%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.pylon-left {
  left: -20px;
}
.pylon-right {
  right: -20px;
}
.pylon-conduit-glow {
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 1px;
}
.conduit-cyan {
  background: #06b6d4;
  box-shadow: 0 0 10px #06b6d4, 0 0 20px rgba(6, 182, 212, 0.6);
  animation: conduitPulse 2s ease-in-out infinite alternate;
}
.conduit-amber {
  background: #f59e0b;
  box-shadow: 0 0 10px #f59e0b, 0 0 20px rgba(245, 158, 11, 0.6);
  animation: conduitPulse 2.5s ease-in-out infinite alternate;
}
@keyframes conduitPulse {
  0% { opacity: 0.5; filter: brightness(0.9); }
  100% { opacity: 1; filter: brightness(1.3); }
}
.pylon-node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff;
  z-index: 2;
}

/* Callout Annotation (Anchored next to #1 tier) */
.hero-stage-center .callout-annotation {
  position: absolute;
  top: 85px;
  right: -190px;
  z-index: 30;
  pointer-events: none;
  width: 200px;
}
.callout-handwritten {
  font-family: 'Caveat', cursive, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5), 0 2px 8px rgba(0, 0, 0, 0.9);
  transform: rotate(-3deg);
}
.callout-curved-arrow {
  width: 90px;
  height: 68px;
  margin-top: -6px;
  margin-left: 10px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
  animation: arrowGlow 3s ease-in-out infinite alternate;
}

/* Cylindrical Monument Stack */
.cylinder-stage-viewport {
  width: 100%;
  max-width: 580px;
  position: relative;
  z-index: 10;
}
.cylinder-monument-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

/* Monument Architectural Cyber Podium Foundation */
.tower-podium-plinth {
  position: relative;
  width: 100%;
  max-width: 610px;
  height: 48px;
  margin-top: 8px;
  background: linear-gradient(180deg, #111827 0%, #090e1a 100%);
  border-top: 2px solid rgba(255, 215, 0, 0.6);
  border-bottom: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(240, 165, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 8;
}
.plinth-top-ring {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd700 50%, transparent);
  box-shadow: 0 0 10px #ffd700;
}
.plinth-exhaust-vents {
  display: flex;
  align-items: center;
  gap: 16px;
}
.vent-slot {
  width: 28px;
  height: 5px;
  border-radius: 2px;
  background: rgba(6, 182, 212, 0.25);
  border: 1px solid rgba(6, 182, 212, 0.5);
  box-shadow: inset 0 0 6px #06b6d4, 0 0 8px rgba(6, 182, 212, 0.4);
}
.plinth-neon-wash {
  position: absolute;
  bottom: -15px;
  left: 15%;
  right: 15%;
  height: 15px;
  background: radial-gradient(ellipse at 50% 0%, rgba(6, 182, 212, 0.45) 0%, transparent 80%);
  filter: blur(6px);
}

/* Individual Cylinder Tier with progressive floor tapering */
.cylinder-tier {
  position: relative;
  width: 100%;
  height: 52px;
  border-radius: 26px;
  margin: 0 auto;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}
.cylinder-tier[data-rank="1"]  { max-width: 440px; }
.cylinder-tier[data-rank="2"]  { max-width: 455px; }
.cylinder-tier[data-rank="3"]  { max-width: 470px; }
.cylinder-tier[data-rank="4"]  { max-width: 485px; }
.cylinder-tier[data-rank="5"]  { max-width: 500px; }
.cylinder-tier[data-rank="6"]  { max-width: 515px; }
.cylinder-tier[data-rank="7"]  { max-width: 530px; }
.cylinder-tier[data-rank="8"]  { max-width: 545px; }
.cylinder-tier[data-rank="9"]  { max-width: 560px; }
.cylinder-tier[data-rank="10"] { max-width: 575px; }

/* Architectural Floor Rim under Tier */
.tier-slab {
  position: absolute;
  inset: -2px 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.12) 0%, rgba(240, 165, 0, 0.02) 50%, rgba(255, 215, 0, 0.15) 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.4);
  border-bottom: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 14px rgba(240, 165, 0, 0.2);
  pointer-events: none;
  z-index: 1;
}

/* The Curved Glass Cylinder LED Band */
.cylinder-band-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  background: linear-gradient(90deg, 
    rgba(12, 18, 32, 0.88) 0%, 
    rgba(22, 34, 60, 0.72) 15%, 
    rgba(32, 48, 82, 0.75) 50%, 
    rgba(22, 34, 60, 0.72) 85%, 
    rgba(12, 18, 32, 0.88) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 2px solid rgba(255, 220, 110, 0.92);
  border-bottom: 2px solid rgba(255, 220, 110, 0.85);
  box-shadow: 
    0 0 24px rgba(245, 180, 50, 0.45),
    0 4px 16px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    inset 0 0 20px rgba(245, 180, 50, 0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3D Cylindrical Edge Shading Masks */
.cylinder-edge-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 5;
  pointer-events: none;
}
.cylinder-edge-mask.mask-left {
  left: 0;
  background: linear-gradient(90deg, rgba(4, 7, 16, 0.85) 0%, rgba(4, 7, 16, 0.4) 50%, transparent 100%);
}
.cylinder-edge-mask.mask-right {
  right: 0;
  background: linear-gradient(270deg, rgba(4, 7, 16, 0.85) 0%, rgba(4, 7, 16, 0.4) 50%, transparent 100%);
}

/* Endless Animated Floor Marquee Track */
.cylinder-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: floorSlide 22s linear infinite;
}
.cylinder-marquee-track.reverse-glide {
  animation: floorSlideReverse 26s linear infinite;
}
@keyframes floorSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes floorSlideReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.cylinder-tier:hover .cylinder-marquee-track {
  animation-play-state: paused;
}

/* Floor Marquee Sets & Items */
.cylinder-marquee-set {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}

/* Main Badge Segment on Floor */
.cylinder-item-segment {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  flex-shrink: 0;
}
.tier-rank-pill {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
  min-width: 32px;
}
.tier-brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tier-brand-meta {
  display: flex;
  flex-direction: column;
  min-width: 125px;
}
.tier-brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.tier-brand-domain {
  font-size: 0.72rem;
  color: #94a3b8;
  white-space: nowrap;
}
.tier-brand-bid {
  margin-left: 8px;
}
.tier-bid-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  white-space: nowrap;
}

/* Side Balcony Repetition Segment */
.cylinder-item-side {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  flex-shrink: 0;
}
.side-logo {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}
.side-brand-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

/* Rank 1 Special Crown & Aura (OpenAI) */
.tier-rank-1 .cylinder-band-inner {
  background: linear-gradient(90deg, 
    rgba(240, 165, 0, 0.18) 0%, 
    rgba(255, 215, 0, 0.28) 50%, 
    rgba(240, 165, 0, 0.18) 100%
  ), rgba(16, 24, 46, 0.94);
  border-top: 2px solid #ffd700;
  border-bottom: 2px solid #ffd700;
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.55), inset 0 0 30px rgba(255, 215, 0, 0.25);
}

/* Hover Glow & Lift */
.cylinder-tier:hover {
  transform: scale(1.025);
  z-index: 999;
}
.cylinder-tier:hover .cylinder-band-inner {
  border-color: #ffd700;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.7), inset 0 0 25px rgba(255, 215, 0, 0.3);
}

/* Tier Tooltip Popover Card */
.tier-tooltip-card {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.95);
  width: 300px;
  padding: 16px;
  background: rgba(8, 14, 30, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 215, 0, 0.5);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 30px rgba(240, 165, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}
/* Tier 1 pops below so it does not obscure the crown apex */
.tier-rank-1 .tier-tooltip-card {
  top: calc(100% + 10px);
  bottom: auto;
  transform: translateX(-50%) translateY(-8px) scale(0.95);
}
.cylinder-tier:hover .tier-tooltip-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.tooltip-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.tooltip-card-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tooltip-card-logo {
  width: 24px;
  height: 24px;
}
.tooltip-card-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.tooltip-card-domain {
  font-size: 0.68rem;
  color: #94a3b8;
}
.tooltip-card-rank {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffd700;
}
.tooltip-card-desc {
  font-size: 0.74rem;
  color: #cbd5e1;
  line-height: 1.35;
  margin-bottom: 12px;
}
.tooltip-card-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}
.tooltip-stat-label {
  font-size: 0.65rem;
  color: #94a3b8;
  display: block;
}
.tooltip-stat-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.tooltip-stat-val.gold {
  color: #ffd700;
}

/* ═════════════════════════════════════════════════════
   RIGHT COLUMN: LIVE BIDS FLOATING CARD
   ══════════════════════════════════════════════════ */
.hero-stage-right {
  justify-self: end;
  width: 100%;
  max-width: 340px;
  display: flex;
  justify-content: flex-end;
  padding-top: 40px;
}
.live-bids-floating-card {
  width: 100%;
  max-width: 340px;
  background: rgba(13, 18, 35, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.live-bids-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.live-bids-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
}
.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulseGreen 2s ease-in-out infinite;
}
@keyframes pulseGreen {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-size: 0.7rem;
  font-weight: 700;
  color: #34d399;
}
.live-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d399;
}

/* Feed Rows */
.live-activity-list {
  display: flex;
  flex-direction: column;
}
.live-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}
.live-activity-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.live-activity-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.live-activity-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.live-activity-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.15;
}
.live-activity-desc {
  font-size: 0.72rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-activity-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.live-activity-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.15;
}
.live-activity-time {
  font-size: 0.68rem;
  color: #64748b;
}

.live-bids-card-footer {
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
}
.live-bids-view-all-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}
.live-bids-view-all-btn:hover {
  color: #ffffff;
}

/* ═════════════════════════════════════════════════════
   EXPLORE ALL 25 POSITIONS SECTION
   ══════════════════════════════════════════════════ */
.explore-directory-section {
  padding: 80px 24px;
  background: #04060d;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.explore-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.explore-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.explore-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #6366f1;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.explore-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.explore-sub {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-top: 4px;
}
.directory-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.directory-row {
  display: grid;
  grid-template-columns: 60px 220px 1fr 140px 100px;
  align-items: center;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s;
}
.directory-row:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateX(4px);
}
.directory-rank-1 {
  background: linear-gradient(90deg, rgba(240, 165, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
  border-color: rgba(240, 165, 0, 0.3);
}
.directory-rank {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #ffd700;
}
.directory-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.directory-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.directory-info {
  display: flex;
  flex-direction: column;
}
.directory-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.directory-name:hover {
  color: #93c5fd;
}
.directory-domain {
  font-size: 0.72rem;
  color: #64748b;
}
.directory-desc {
  font-size: 0.82rem;
  color: #94a3b8;
}
.directory-bid {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.directory-bid-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffd700;
}
.directory-bid-label {
  font-size: 0.65rem;
  color: #64748b;
}
.directory-cta {
  display: flex;
  justify-content: flex-end;
}

/* ═════════════════════════════════════════════════════
   CINEMATIC VIDEO MODAL
   ══════════════════════════════════════════════════ */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.video-modal-backdrop.modal-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.video-modal-dialog {
  width: 100%;
  max-width: 720px;
  background: #0d1222;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(99, 102, 241, 0.25);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-modal-backdrop.modal-active .video-modal-dialog {
  transform: scale(1);
}
.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.video-modal-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
}
.video-modal-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.2rem;
  cursor: pointer;
}
.video-modal-close:hover {
  color: #fff;
}
.video-modal-body {
  padding: 32px 24px;
}
.cinematic-video-preview {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(135deg, #111827 0%, #1e1b4b 100%);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 48px 32px;
  text-align: center;
  overflow: hidden;
}
.video-ambient-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.video-badge-live {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.video-banner-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.video-banner-sub {
  font-size: 0.95rem;
  color: #cbd5e1;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.video-stats-strip {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ═════════════════════════════════════════════════════
   RESPONSIVE LAYOUT (Tablets & Mobile)
   ══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero-stage-grid {
    grid-template-columns: 300px minmax(360px, 420px) 280px;
    gap: 16px;
  }
  .callout-annotation {
    left: calc(50% + 140px);
  }
}

@media (max-width: 992px) {
  .cinematic-monument-hero {
    min-height: auto;
    padding: calc(var(--header-h) + 20px) 16px 40px;
  }
  .hero-stage-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 40px;
  }
  .hero-stage-left {
    align-items: center;
  }
  .hero-stage-desc {
    max-width: 500px;
  }
  .hero-stage-ctas {
    justify-content: center;
  }
  .hero-stage-stats {
    justify-content: center;
  }
  .callout-annotation {
    display: none;
  }
  .stone-monolith {
    display: none;
  }
  .directory-row {
    grid-template-columns: 40px 160px 1fr 100px;
  }
  .directory-desc {
    display: none;
  }
}

/* ============================================================
   ISOMETRIC 3D DIGITAL SKYSCRAPER THEME (GetTopFloor Style)
   ============================================================ */

.iso-skyscraper-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 10%, #fff1ea 0%, #fde8db 40%, #fbd9c5 100%);
  padding: calc(var(--header-h) + 24px) 24px 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Atmospheric Ambient Floating Clouds */
.iso-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  filter: blur(20px);
  pointer-events: none;
  animation: cloudDrift 60s linear infinite;
}
.iso-cloud-1 { width: 300px; height: 120px; top: 15%; left: -100px; animation-duration: 75s; }
.iso-cloud-2 { width: 450px; height: 180px; top: 35%; right: -150px; animation-duration: 90s; }
.iso-cloud-3 { width: 250px; height: 100px; top: 65%; left: 5%; animation-duration: 65s; }

@keyframes cloudDrift {
  0% { transform: translateX(0); }
  50% { transform: translateX(80px); }
  100% { transform: translateX(0); }
}

/* ─── Top Control Bar ──────────────────────────────────────── */
.iso-control-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 20;
}

.iso-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 12px 24px;
  box-shadow: 0 10px 30px rgba(224, 102, 50, 0.1);
  flex: 1;
  max-width: 320px;
  transition: all 0.2s ease;
}
.iso-input-wrap:focus-within {
  border-color: #ff6b35;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.25);
}
.iso-input-icon {
  font-size: 1.15rem;
  color: #94a3b8;
}
.iso-domain-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  color: #1e293b;
  width: 100%;
  font-family: inherit;
}
.iso-domain-input::placeholder {
  color: #94a3b8;
}

.iso-category-select-wrap {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 12px 20px;
  box-shadow: 0 10px 30px rgba(224, 102, 50, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.iso-category-select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  color: #334155;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.iso-claim-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6332 0%, #ff8342 100%);
  color: #ffffff;
  border: none;
  outline: none;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 99, 50, 0.45);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}
.iso-claim-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(255, 99, 50, 0.6);
  color: #fff;
}

.iso-hero-subtitle {
  font-size: 0.95rem;
  color: #78716c;
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
  z-index: 20;
}

.iso-nav-mini-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.78rem;
  color: #a8a29e;
  margin-bottom: 42px;
  position: relative;
  z-index: 20;
}
.iso-nav-mini-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.iso-nav-mini-links a:hover {
  color: #ea580c;
}

/* Floating View Switcher Toggle */
.hero-view-toggle-pill {
  position: absolute;
  top: calc(var(--header-h) + 14px);
  right: 28px;
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 4px;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  z-index: 50;
}
.hero-view-toggle-monument {
  background: rgba(13, 18, 32, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
  top: calc(var(--header-h) + 14px);
}
.hero-view-toggle-pill .toggle-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.hero-view-toggle-pill .toggle-btn.active {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.hero-view-toggle-monument .toggle-btn {
  color: #94a3b8;
}
.hero-view-toggle-monument .toggle-btn.active {
  background: #6366f1;
  color: #ffffff;
}

/* ─── Isometric Skyscraper Container ───────────────────────── */
.iso-skyscraper-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 0 0 80px;
}

/* Left Altitude Ruler (Positioned neatly to left of skyscraper) */
.iso-altitude-ruler {
  position: absolute;
  left: calc(50% - 370px);
  top: 190px;
  bottom: 80px;
  width: 60px;
  pointer-events: none;
  z-index: 20;
}
.ruler-line {
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  width: 5px;
  background: #facc15;
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.6);
}
.ruler-tag {
  position: absolute;
  right: 22px;
  background: #fef08a;
  border: 2px solid #ca8a04;
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #713f12;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transform: rotate(-3deg);
  white-space: nowrap;
}
.tag-top { top: 10px; }
.tag-mid { top: 48%; }
.tag-bottom { bottom: 30px; }

/* Building Stage (Generous margin-top for hovering helicopter) */
.iso-building-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 155px;
  z-index: 10;
}

/* ─── Rooftop Structure ────────────────────────────────────── */
.iso-rooftop-structure {
  position: relative;
  width: 570px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 25;
}

/* ─── Hovering Helicopter Directly Over Helipad ────────────── */
.iso-helicopter-rig {
  position: absolute;
  top: -125px;
  left: 145px;
  z-index: 45;
  animation: heliBobbing 3s ease-in-out infinite alternate;
}
@keyframes heliBobbing {
  0%   { transform: translateY(0) rotate(-1.5deg); }
  50%  { transform: translateY(-10px) rotate(0.5deg); }
  100% { transform: translateY(-18px) rotate(2deg); }
}

.helicopter-body {
  position: relative;
  width: 150px;
  height: 60px;
}
.heli-main-rotor {
  position: absolute;
  top: 1px;
  left: 2px;
  width: 140px;
  height: 4px;
  background: #0f172a;
  border-radius: 2px;
  animation: rotorSpin 0.07s linear infinite;
  transform-origin: center center;
}
@keyframes rotorSpin {
  0%   { transform: rotate(0deg) scaleY(0.35); }
  100% { transform: rotate(360deg) scaleY(0.35); }
}
.heli-rotor-shaft {
  position: absolute;
  top: 4px;
  left: 68px;
  width: 4px;
  height: 5px;
  background: #475569;
}
.heli-cabin {
  position: absolute;
  top: 8px;
  left: 25px;
  width: 80px;
  height: 42px;
  background: #0f172a;
  border-radius: 22px 34px 14px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}
.heli-cockpit-glass {
  position: absolute;
  top: 5px;
  left: 42px;
  width: 32px;
  height: 26px;
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  border-radius: 4px 18px 4px 8px;
  opacity: 0.95;
  box-shadow: inset 0 0 6px rgba(255,255,255,0.4);
}
.heli-skids {
  position: absolute;
  bottom: -4px;
  left: 28px;
  width: 68px;
  height: 12px;
}
.skid-leg {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 10px;
  background: #334155;
}
.skid-leg-1 { left: 14px; }
.skid-leg-2 { right: 14px; }
.skid-runner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #334155;
  border-radius: 2px;
}
.heli-tail-boom {
  position: absolute;
  top: 18px;
  left: -42px;
  width: 70px;
  height: 8px;
  background: #0f172a;
}
.heli-tail-fin {
  position: absolute;
  top: -14px;
  left: 0;
  width: 14px;
  height: 28px;
  background: #f97316;
  border-radius: 2px;
}
.heli-tail-rotor {
  position: absolute;
  top: -10px;
  left: -6px;
  width: 4px;
  height: 24px;
  background: #475569;
  animation: rotorSpin 0.05s linear infinite;
}

/* ─── Rooftop Deck Elements (Helipad, Billboard, Pizzeria) ─── */
.iso-rooftop-deck-elements {
  position: relative;
  width: 570px;
  height: 90px;
  margin-bottom: -15px;
  z-index: 30;
}

/* Rooftop Pizzeria (Rear Center) */
.iso-rooftop-cafe {
  position: absolute;
  top: -20px;
  left: 175px;
  z-index: 32;
}
.cafe-building {
  position: relative;
  width: 96px;
  height: 52px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.cafe-awning {
  position: absolute;
  top: -7px;
  left: -5px;
  right: -5px;
  height: 15px;
  background: repeating-linear-gradient(90deg, #ef4444 0px, #ef4444 11px, #ffffff 11px, #ffffff 22px, #22c55e 22px, #22c55e 33px);
  border-radius: 3px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.cafe-sign {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 900;
  color: #dc2626;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cafe-door {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 25px;
  background: #3b82f6;
  border: 1px solid #1d4ed8;
  border-radius: 3px 3px 0 0;
}
.cafe-menu-board {
  position: absolute;
  bottom: 3px;
  left: -14px;
  width: 11px;
  height: 17px;
  background: #78350f;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

/* Helipad on Left Deck Surface */
.iso-deck-helipad {
  position: absolute;
  top: 15px;
  left: 80px;
  z-index: 33;
}
.helipad-outer-ring {
  width: 115px;
  height: 52px;
  background: #facc15;
  border: 3px solid #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.helipad-inner-dashed {
  width: 95px;
  height: 40px;
  border: 2px dashed #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.helipad-letter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: #0f172a;
  transform: scaleY(0.9);
}

/* Rooftop Billboard (Front-Right Deck) */
.iso-rooftop-billboard {
  position: absolute;
  top: -15px;
  right: 40px;
  z-index: 38;
}
.billboard-frame {
  background: #ffffff;
  border: 3px solid #0f172a;
  border-radius: 8px;
  padding: 8px 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.billboard-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.billboard-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.03em;
}
.billboard-legs {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
}
.b-leg {
  width: 6px;
  height: 18px;
  background: #0f172a;
}

/* ─── Concrete Roof Slab Over Penthouse (3D Corner Ledge) ──── */
.iso-roof-slab-3d {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 570px;
  z-index: 28;
}
.slab-top-surface {
  width: 570px;
  height: 16px;
  background: #e2e8f0;
  border-radius: 6px 6px 0 0;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.8);
}
.slab-faces {
  display: flex;
  width: 570px;
}
.slab-face-left {
  width: 250px;
  height: 14px;
  background: #cbd5e1;
  transform: skewY(18deg);
  border-radius: 4px 0 0 0;
}
.slab-face-right {
  width: 320px;
  height: 14px;
  background: #e2e8f0;
  transform: skewY(-18deg);
  border-radius: 0 4px 0 0;
}

/* ─── Glass Penthouse Floor (3D Corner Glass Structure) ────── */
.iso-penthouse-level-3d {
  display: flex;
  position: relative;
  z-index: 26;
  margin-top: -12px;
}

.penthouse-face {
  position: relative;
  height: 100px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.5), 0 8px 20px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  overflow: visible;
}

.penthouse-face-left {
  width: 250px;
  transform: skewY(18deg);
  border-right: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px 0 0 0;
  padding: 0 10px;
  justify-content: center;
}

.penthouse-face-right {
  width: 320px;
  transform: skewY(-18deg);
  border-left: 1px solid rgba(255,255,255,0.4);
  border-radius: 0 6px 0 0;
  padding: 0 12px;
  justify-content: center;
}

/* Glass Mullion Lines */
.penthouse-glass-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
}
.mullion {
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}

/* Interior Furniture */
.interior-item {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.mini-sofa {
  left: 45px;
  bottom: 12px;
  width: 48px;
  height: 22px;
  background: #b91c1c;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}
.mini-figure {
  left: 65px;
  bottom: 26px;
  width: 8px;
  height: 18px;
  background: #0f172a;
  border-radius: 4px 4px 0 0;
}
.mini-plant-1 {
  left: 14px;
  bottom: 14px;
  font-size: 1.1rem;
}
.mini-plant-2 {
  right: 18px;
  bottom: 14px;
  font-size: 1.1rem;
}
.mini-desk {
  position: absolute;
  left: 40px;
  bottom: 12px;
  width: 44px;
  height: 20px;
  background: #334155;
  border-radius: 3px;
}
.mini-monitors {
  position: absolute;
  top: -10px;
  left: 6px;
  width: 32px;
  height: 10px;
  background: #38bdf8;
  border-radius: 1px;
  box-shadow: 0 0 10px #38bdf8;
}

/* Showcase Video Screens Mounted on Faces */
.penthouse-screen {
  position: relative;
  background: #090d16;
  border: 2px solid #475569;
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
  z-index: 10;
}
.screen-mounted-left {
  width: 190px;
  height: 68px;
}
.screen-mounted-right {
  width: 210px;
  height: 68px;
}
.penthouse-screen:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: #ff6b35;
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.45);
}
.screen-content-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.screen-play-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f97316;
  color: #fff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
}
.screen-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.screen-progress {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.screen-progress::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: #f97316;
}

/* ─── Stacked Isometric Floors ─────────────────────────────── */
.iso-floors-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 4px;
  position: relative;
  z-index: 15;
}

/* Floor Block Container */
.iso-floor-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  width: max-content;
}
.iso-floor-block:hover {
  transform: translateY(-6px) scale(1.02);
  z-index: 150;
}

/* Floor Faces Container */
.iso-floor-faces {
  display: flex;
  align-items: stretch;
  position: relative;
}

/* Base Face Styles */
.iso-face {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 12px 18px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: filter 0.2s ease;
}

/* Left Isometric Face */
.iso-face-left {
  width: 250px;
  height: 82px;
  transform: skewY(18deg);
  border-radius: 6px 0 0 6px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

/* Right Isometric Face (Main illuminated face) */
.iso-face-right {
  width: 320px;
  height: 82px;
  transform: skewY(-18deg);
  border-radius: 0 6px 6px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Brand Badge Layout */
.face-brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}
.face-logo-box {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
.face-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.face-company-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.face-company-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Rank & Bid Numbers */
.face-rank-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 12px;
  flex-shrink: 0;
}
.face-rank-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
}
.face-bid-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.15;
}

/* ─── Floor Rank Color Themes ─────────────────────────────── */

/* Floor 1: Top Floor Champion Orange (Exact reference style!) */
.floor-rank-1 .iso-face-left {
  background: linear-gradient(135deg, #d9531e 0%, #c2410c 100%);
  filter: brightness(0.92);
}
.floor-rank-1 .iso-face-right {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.35);
}
.floor-rank-1:hover .iso-face-right {
  box-shadow: 0 16px 40px rgba(234, 88, 12, 0.55);
}

/* Floor 2: Coral / Amber */
.floor-rank-2 .iso-face-left {
  background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
}
.floor-rank-2 .iso-face-right {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

/* Floor 3: Warm Bronze / Navy */
.floor-rank-3 .iso-face-left {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.floor-rank-3 .iso-face-right {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
}

/* Standard Floors (4 to 10) */
.floor-rank-standard .iso-face-left {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  filter: brightness(0.9);
}
.floor-rank-standard .iso-face-right {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
}

/* Popover on Hover */
.iso-floor-popover {
  position: absolute;
  top: -95px;
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.95);
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  width: 280px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 250;
}
.iso-floor-block:hover .iso-floor-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.popover-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  color: #0f172a;
}
.popover-bid {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  color: #ea580c;
}
.popover-desc {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.35;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .iso-control-bar {
    flex-direction: column;
    width: 100%;
  }
  .iso-input-wrap,
  .iso-category-select-wrap,
  .iso-claim-btn {
    width: 100%;
    max-width: 100%;
  }
  .iso-face-left { width: 170px; height: 75px; }
  .iso-face-right { width: 220px; height: 75px; }
  .iso-rooftop-structure { width: 400px; }
  .iso-roof-slab { width: 390px; }
  .iso-penthouse-level { width: 390px; }
  .iso-altitude-ruler { display: none; }
  .round-building-stage { width: 100%; }
  .round-rooftop-structure { width: 95%; }
  .round-roof-deck-slab { width: 100%; }
  .round-penthouse-rotunda { width: 96%; }
  .round-floor-block { width: 96%; }
}

/* ════════════════════════════════════════════════════════════
   ROUND CYLINDRICAL SKYSCRAPER (3D Rotunda Architecture)
   ════════════════════════════════════════════════════════════ */

/* Hero Top Controls Row (Shape Switcher + View Switcher) */
.hero-top-controls-row {
  position: absolute;
  top: calc(var(--header-h) + 14px);
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 60;
}

/* Shape Switcher Pill */
.building-shape-toggle-pill {
  display: flex;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 4px;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.shape-toggle-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.shape-toggle-btn.active {
  background: #ea580c;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.35);
}

/* Round Building Stage */
.round-building-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 155px;
  z-index: 10;
  width: 100%;
  max-width: 680px;
}

/* Round Rooftop Structure */
.round-rooftop-structure {
  position: relative;
  width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 30;
}

/* Round Rooftop Deck Slab (Circular concrete terrace) */
.round-roof-deck-slab {
  position: relative;
  width: 580px;
  height: 52px;
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 55%, #cbd5e1 100%);
  border-radius: 50% / 26px;
  border: 2px solid #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12), inset 0 2px 8px rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 25;
}

/* Circular Helipad on Deck */
.round-helipad {
  position: absolute;
  top: 0px;
  left: 65px;
  width: 125px;
  height: 52px;
  background: #facc15;
  border: 3px solid #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 28;
}
.round-helipad-dashed {
  width: 105px;
  height: 40px;
  border: 2px dashed #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: helipadRotate 30s linear infinite;
}
.round-helipad-letter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  color: #0f172a;
  transform: scaleY(0.85);
}

/* Round Rooftop Billboard (Mounted curved on front-right) */
.round-billboard {
  position: absolute;
  top: -46px;
  right: 48px;
  z-index: 35;
}

/* Round Pizzeria (Rear-center of roof deck) */
.round-pizzeria {
  position: absolute;
  top: -42px;
  left: 205px;
  z-index: 32;
}

/* Helicopter above Round Helipad */
.round-helicopter-rig {
  position: absolute;
  top: -125px;
  left: 60px;
  z-index: 45;
  animation: heliBobbing 3s ease-in-out infinite alternate;
}

/* ─── Curved Glass Penthouse Rotunda ────────────────────────── */
.round-penthouse-rotunda {
  position: relative;
  width: 550px;
  height: 104px;
  margin-top: -18px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.22) 0%, 
    rgba(255, 255, 255, 0.6) 25%, 
    rgba(255, 255, 255, 0.82) 50%, 
    rgba(255, 255, 255, 0.5) 75%, 
    rgba(255, 255, 255, 0.22) 100%
  );
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.7), 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  overflow: visible;
  z-index: 22;
}

/* Glass Mullion Dividers for Round Rotunda */
.round-penthouse-mullions {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
}
.round-mullion {
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}

/* Video Screens on Rotunda */
.round-screen {
  position: relative;
  background: #090d16;
  border: 2px solid #475569;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
  z-index: 10;
  width: 200px;
  height: 70px;
}
.round-screen:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: #ff6b35;
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.45);
}

/* ─── Stacked Round Cylindrical Floors ──────────────────────── */
.round-floors-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 3px;
  position: relative;
  z-index: 15;
  margin-top: -8px;
}

/* Single Round Floor Drum Container */
.round-floor-block {
  position: relative;
  width: 560px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  z-index: 10;
}
.round-floor-block:hover {
  transform: translateY(-6px) scale(1.02);
  z-index: 200;
}

/* Floor Top Balcony Rim (Cylindrical Elliptical Lip) */
.round-floor-rim {
  width: 100%;
  height: 16px;
  border-radius: 50% / 8px;
  margin-bottom: -8px;
  z-index: 2;
  box-shadow: 0 -2px 6px rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Curved Cylindrical Drum Body */
.round-floor-drum {
  position: relative;
  width: 100%;
  height: 82px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  overflow: hidden;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

/* Curvature Edge Shading Masks (Curved 3D cylinder depth illusion) */
.round-edge-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 8;
  pointer-events: none;
}
.round-mask-left {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
  border-radius: 12px 0 0 12px;
}
.round-mask-right {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
  border-radius: 0 12px 12px 0;
}

/* 3D Cylindrical Lighting Highlight Sheen */
.round-cylinder-sheen {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: linear-gradient(90deg, 
    rgba(0, 0, 0, 0.35) 0%, 
    rgba(255, 255, 255, 0.12) 18%, 
    rgba(255, 255, 255, 0.38) 48%, 
    rgba(255, 255, 255, 0.08) 75%, 
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

/* ─── Continuous Slow Rotating Marquee Track ────────────────── */
.round-marquee-track {
  display: flex;
  width: 200%;
  animation: roundRotateLeft 28s linear infinite;
  will-change: transform;
  position: relative;
  z-index: 4;
}
.round-marquee-track.rotate-reverse {
  animation: roundRotateRight 32s linear infinite;
}
.round-floor-block:hover .round-marquee-track {
  animation-play-state: paused;
}

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

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

@keyframes helipadRotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Marquee Set (Each identical 50% width) */
.round-marquee-set {
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px;
  flex-shrink: 0;
}

/* Main Brand Segment */
.round-item-segment {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}
.round-logo-frame {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
.round-brand-texts {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.round-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.round-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Rank & Bid on Right of Main Segment */
.round-rank-bid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: 12px;
}
.round-rank-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
}
.round-bid-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

/* Wrap-Around Supporting Segment */
.round-item-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.9;
  flex-shrink: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.wrap-crown {
  font-size: 1rem;
}
.wrap-domain {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Space Grotesk', sans-serif;
  white-space: nowrap;
}
.wrap-next-pill {
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  border-radius: 9999px;
  color: #ffffff;
  white-space: nowrap;
}

/* Floor Themes for Round Cylindrical Drums */
/* Floor 1: Top Floor Champion Radiant Orange */
.round-floor-block.floor-rank-1 .round-floor-rim {
  background: #fb923c;
}
.round-floor-block.floor-rank-1 .round-floor-drum {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 14px 36px rgba(234, 88, 12, 0.45);
}
.round-floor-block.floor-rank-1:hover .round-floor-drum {
  box-shadow: 0 18px 48px rgba(234, 88, 12, 0.65);
}

/* Floor 2: Warm Amber/Coral */
.round-floor-block.floor-rank-2 .round-floor-rim {
  background: #f59e0b;
}
.round-floor-block.floor-rank-2 .round-floor-drum {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

/* Floor 3: Deep Slate/Bronze */
.round-floor-block.floor-rank-3 .round-floor-rim {
  background: #475569;
}
.round-floor-block.floor-rank-3 .round-floor-drum {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
}

/* Standard Floors (4 to 10) */
.round-floor-block.floor-rank-standard .round-floor-rim {
  background: #475569;
}
.round-floor-block.floor-rank-standard .round-floor-drum {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
}

/* Round Floor Popover on Hover */
.round-floor-popover {
  position: absolute;
  top: -95px;
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.95);
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.05);
  width: 290px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 250;
}
.round-floor-block:hover .round-floor-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* ══════════════════════════════════════════════════════════════
   ARCHITECTURAL #1 PINNACLE CROWN & ENTRANCE SIGNAGE
══════════════════════════════════════════════════════════════ */
.monument-architectural-crown {
  position: relative;
  width: 130px;
  height: 54px;
  margin: 0 auto -6px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
}

.crown-beacon-lightbeam {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100px;
  background: linear-gradient(180deg, rgba(255, 235, 150, 0) 0%, rgba(255, 220, 100, 0.45) 60%, rgba(255, 240, 180, 0.9) 100%);
  filter: blur(2px);
  pointer-events: none;
}

.crown-radiant-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.45) 0%, rgba(245, 158, 11, 0.12) 50%, transparent 75%);
  filter: blur(8px);
  animation: crownPulse 3.5s ease-in-out infinite alternate;
}

@keyframes crownPulse {
  0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.crown-gold-structure {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crown-svg-monument {
  width: 110px;
  height: 44px;
  filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.65));
}

/* Monument Entrance Canopy Marquee Sign */
.monument-entrance-sign {
  position: relative;
  margin: 14px auto 0 auto;
  width: 90%;
  max-width: 480px;
  z-index: 10;
}

.entrance-marquee-box {
  background: linear-gradient(180deg, rgba(16, 22, 36, 0.92) 0%, rgba(8, 12, 22, 0.98) 100%);
  border: 1px solid rgba(245, 158, 11, 0.5);
  border-radius: 6px;
  box-shadow: 
    0 0 25px rgba(245, 158, 11, 0.25),
    0 12px 28px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 230, 150, 0.3);
  padding: 8px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.entrance-brand-name {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 3.5px;
  color: #fffbeb;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.8), 0 0 24px rgba(245, 158, 11, 0.4);
}

.entrance-brand-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: rgba(254, 243, 199, 0.85);
  text-transform: uppercase;
}

/* Tooltip Popover Two Actions */
.tooltip-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.tooltip-btn-outbid {
  flex: 1.3;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b0f19;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
  transition: all 0.2s ease;
}

.tooltip-btn-outbid:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.6);
  color: #000;
}

.tooltip-btn-view {
  flex: 1;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tooltip-btn-view:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-1px);
}

/* ─── Supporter Avatar & Photo Upload Box ─────────────────── */
.supporter-avatar {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.supporter-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.supporter-photo-upload-wrap {
  margin-bottom: 20px;
}

.supporter-photo-dropzone {
  border: 2px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.supporter-photo-dropzone:hover {
  border-color: rgba(248, 190, 67, 0.6);
  background: rgba(248, 190, 67, 0.04);
}

.supporter-photo-dropzone.photo-dropzone-drag {
  border-color: #f8be43;
  background: rgba(248, 190, 67, 0.09);
  transform: scale(1.01);
}

.supporter-photo-dropzone.photo-dropzone-ready {
  border-color: rgba(34, 197, 94, 0.6);
  background: rgba(34, 197, 94, 0.04);
}

.dropzone-empty-content .dropzone-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.dropzone-empty-content .dropzone-text-primary {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f8fafc;
}

.dropzone-empty-content .dropzone-text-sub {
  font-size: 0.76rem;
  color: #94a3b8;
  margin-top: 4px;
}

.dropzone-preview-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.photo-preview-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.35);
  flex-shrink: 0;
}

.photo-preview-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-preview-details {
  text-align: left;
}

.photo-preview-status {
  font-size: 0.82rem;
  font-weight: 700;
  color: #4ade80;
}

.photo-preview-name {
  font-size: 0.78rem;
  color: #cbd5e1;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.photo-remove-btn {
  background: none;
  border: none;
  color: #f87171;
  font-size: 0.74rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  margin-top: 3px;
}

.photo-remove-btn:hover {
  color: #ef4444;
}

.support-form-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}


