/* infinity-pool.css - New Cyber Design */
:root {
  --bg-deep: #050810;
  --bg-card: rgba(255, 255, 255, 0.03);
  --gold: #f0a500;
  --gold-light: #ffd166;
  --blue-neon: #00c6ff;
  --purple-neon: #9b59ff;
  --pink-neon: #ff4daa;
  --red-neon: #ff3b3b;
  --cyan: #00f5d4;
  --white: #e8eaf6;
  --muted: #5a6080;
  --border: rgba(255, 255, 255, 0.06);
  --glow-gold: 0 0 20px rgba(240, 165, 0, 0.4), 0 0 60px rgba(240, 165, 0, 0.15);
  --glow-blue: 0 0 20px rgba(0, 198, 255, 0.4), 0 0 60px rgba(0, 198, 255, 0.15);
  --glow-purple: 0 0 20px rgba(155, 89, 255, 0.4), 0 0 60px rgba(155, 89, 255, 0.15);
  --glow-pink: 0 0 20px rgba(255, 77, 170, 0.4), 0 0 60px rgba(255, 77, 170, 0.15);
  --glow-red: 0 0 20px rgba(255, 59, 59, 0.4), 0 0 60px rgba(255, 59, 59, 0.15);
}

.pool-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* ── HEADER ── */
.pool-header {
  position: relative;
  text-align: center;
  margin-bottom: 54px;
  padding-top: 20px;
  animation: fadeDown 0.8s ease both;
}

/* High-End Ambient Backlight behind the title */
.pool-header::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(200px, 60%, 500px);
  height: 200px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

.header-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 6px 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.header-badge::before {
  content: '[';
  color: var(--gold);
  font-weight: bold;
  font-size: 12px;
  margin-right: 4px;
}

.header-badge::after {
  content: ']';
  color: var(--gold);
  font-weight: bold;
  font-size: 12px;
  margin-left: 4px;
}

.pool-title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

h1.pool-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  background: linear-gradient(135deg, #ffffff 0%, #ffd166 35%, #f0a500 75%, #b57c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(240, 165, 0, 0.2);
}

.pool-subtitle-container {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.subtitle-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sub-line {
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(240, 165, 0, 0.4));
}

.sub-line.right {
  background: linear-gradient(90deg, rgba(240, 165, 0, 0.4), transparent);
}

.sub-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 8px var(--gold);
}

.pool-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin: 0 auto;
  max-width: 480px;
}

/* ── ADVANCED CYBER ANALYTICS STATS GRID ── */
.enhanced-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  animation: fadeDown 0.8s 0.15s ease both;
}


.enhanced-stat-card {
  position: relative;
  background: linear-gradient(145deg, rgba(12, 15, 24, 0.95) 0%, rgba(6, 7, 10, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-stat-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

/* Dynamic Accent Notches matching pools */
.card-accent-notch {
  position: absolute;
  top: 0;
  left: 20px;
  width: 40px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--accent-color, var(--gold));
  box-shadow: 0 0 8px var(--accent-color, var(--gold));
  opacity: 0.8;
  z-index: 3;
}

/* Decorative Geometric Grid Overlay */
.stat-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.stat-inner-wrap {
  position: relative;
  padding: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Header Row containing Label and tech pill */
.stat-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.enhanced-stat-card .stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.mini-status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* Pulsing dot for real-time pools */
.mini-status-pill .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
  animation: statPulse 2s infinite;
}

@keyframes statPulse {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

/* Main Content Row pairing Large font with Badge */
.stat-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.stat-value-display {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.stat-value-display.timer-font {
  font-family: 'Orbitron', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.stat-unit-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 4px;
}

/* Hex/Rounded badge containing clean icons */
.stat-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent-color, #fff);
  transition: background 0.3s;
  flex-shrink: 0;
}

/* Footer graphical progress bars */
.stat-footer-progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 14px;
}

.stat-progress-bg {
  height: 3px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 2px;
  overflow: hidden;
}

.stat-progress-bar {
  height: 100%;
  background: var(--accent-color, var(--gold));
  box-shadow: 0 0 6px var(--accent-color);
  border-radius: 2px;
}

.stat-caption {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Color Schemes Override per Card Type */
.cyber-card-gold {
  --accent-color: var(--gold);
}

.cyber-card-gold .stat-value-display {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(240, 165, 0, 0.15);
}

.cyber-card-gold .pill-gold {
  color: var(--gold);
  border-color: rgba(240, 165, 0, 0.2);
  background: rgba(240, 165, 0, 0.03);
}

.cyber-card-blue {
  --accent-color: var(--blue-neon);
}

.cyber-card-blue .stat-value-display {
  color: #ffffff;
}

.cyber-card-blue .pill-blue {
  color: var(--blue-neon);
  border-color: rgba(0, 198, 255, 0.2);
  background: rgba(0, 198, 255, 0.03);
}

.cyber-card-purple {
  --accent-color: var(--purple-neon);
}

.cyber-card-purple .stat-value-display {
  color: var(--purple-neon);
  text-shadow: 0 0 20px rgba(155, 89, 255, 0.15);
}

.cyber-card-purple .pill-purple {
  color: var(--purple-neon);
  border-color: rgba(155, 89, 255, 0.2);
  background: rgba(155, 89, 255, 0.03);
}

.cyber-card-cyan {
  --accent-color: var(--cyan);
}

.cyber-card-cyan .stat-value-display {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 245, 212, 0.15);
}

.cyber-card-cyan .pill-cyan {
  color: var(--cyan);
  border-color: rgba(0, 245, 212, 0.2);
  background: rgba(0, 245, 212, 0.03);
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.8s 0.2s ease both;
}

.eligible-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
}

.eligible-label::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s infinite;
}

.info-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 360px;
  text-align: right;
  line-height: 1.5;
  font-family: 'Rajdhani', sans-serif;
}

/* ── LEVEL TIERS GRID ── */
#level-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
  animation: fadeUp 0.8s 0.25s ease both;
}


/* ── PREMIUM STATIC TIER CARD ── */
.tier-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 25, 38, 0.9) 0%, rgba(10, 12, 18, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Unique cyber-cut border layout (Asymmetric styling) */
  border-radius: 16px 4px 16px 4px;
  overflow: hidden;
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 12px 30px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Color Accents Config without Dynamic Transitions */
.tier-card.c-gold {
  --accent: var(--gold);
  --glow-rgb: 240, 165, 0;
}

.tier-card.c-blue {
  --accent: var(--blue-neon);
  --glow-rgb: 0, 198, 255;
}

.tier-card.c-cyan {
  --accent: var(--cyan);
  --glow-rgb: 0, 245, 212;
}

.tier-card.c-purple {
  --accent: var(--purple-neon);
  --glow-rgb: 155, 89, 255;
}

.tier-card.c-pink {
  --accent: var(--pink-neon);
  --glow-rgb: 255, 0, 115;
}

.tier-card.c-red {
  --accent: var(--red-neon);
  --glow-rgb: 255, 45, 85;
}

/* Static Color Edge Marker (Unique Identifier) */
.tier-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), transparent 80%);
  opacity: 0.8;
}

/* Custom Static Shadow Injection for Unlock State handled by JS */
.tier-card[style*="glow"] {
  border-color: rgba(var(--glow-rgb), 0.25) !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 0 25px rgba(var(--glow-rgb), 0.12) !important;
}

/* Translucent Background Watermark (Extremely unique design) */
.tier-watermark {
  position: absolute;
  right: -15px;
  bottom: -35px;
  font-family: 'Outfit', sans-serif;
  font-size: 130px;
  font-weight: 900;
  color: rgba(var(--glow-rgb), 0.025);
  /* Soft tone matching tier color */
  pointer-events: none;
  z-index: 0;
  letter-spacing: -4px;
  user-select: none;
}

/* Card Header Structure */
.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.tier-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tier-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.lock-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 10px;
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.lock-badge.qualified {
  background: rgba(var(--glow-rgb), 0.1);
  border-color: rgba(var(--glow-rgb), 0.3);
  color: var(--accent);
  font-weight: 600;
  text-shadow: 0 0 8px rgba(var(--glow-rgb), 0.2);
}

.lock-badge svg,
.lock-badge i {
  font-size: 9px;
  opacity: 0.7;
}

/* Accent Icon box */
.tier-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(var(--glow-rgb), 0.05);
  border: 1px solid rgba(var(--glow-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
}

/* Large Percentage Display */
.tier-rate-display {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.rate-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1.5px;
}

.rate-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.tier-card:hover .rate-val {
  /* Very soft static brightening on mouse */
  color: var(--accent);
  transition: color 0.3s;
}

/* Distinct Data Divider */
.tier-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  margin-bottom: 24px;
}

/* Integrated Static Metric Info Grid */
.tier-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}

.metric-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

/* Elegant Nested Requirements Sub-Container */
.req-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 12px 14px;
}

.req-hdr {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  font-weight: 600;
}

.req-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.req-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.3s ease;
}

.req-text {
  font-weight: 500;
}

.req-status {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

/* Highlighted/Completed States */
.req-item.met {
  color: #ffffff;
}

.req-item.met .req-status {
  color: var(--accent);
  background: rgba(var(--glow-rgb), 0.12);
  border-color: rgba(var(--glow-rgb), 0.3);
  font-weight: bold;
  text-shadow: 0 0 8px rgba(var(--glow-rgb), 0.3);
}

/* Tier Footer & Compact Static Button */
.tier-action {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.tier-claim-btn {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.25);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tier-claim-btn:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  color: #050810;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(var(--glow-rgb), 0.25);
}

/* KEYFRAMES */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE FIXES (Consolidated) */
@media (max-width: 768px) {
  .pool-container {
    padding: 15px 10px;
  }
  
  .enhanced-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 30px;
  }

  .stat-inner-wrap {
    padding: 12px 10px;
    gap: 8px;
  }

  /* Show secondary elements on mobile for 2x2 grid - with compact styling */
  .mini-status-pill {
    display: flex !important;
    font-size: 8px;
    padding: 2px 6px;
  }
  
  .stat-footer-progress {
    display: block !important;
    margin-top: 6px;
  }

  .stat-progress-bg {
    height: 3px;
  }

  .stat-caption {
    font-size: 8px;
    margin-top: 2px;
  }

  .card-accent-notch {
    display: none !important;
  }

  .stat-label {
    font-size: 9px !important;
    letter-spacing: 1px !important;
  }

  .stat-value-display {
    font-size: 16px !important;
  }

  .stat-value-display.timer-font {
    font-size: 13px !important;
  }

  .stat-icon-badge {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 6px;
  }

  .stat-main-content {
    gap: 5px;
  }

  #level-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .tier-card {
    padding: 10px;
    border-radius: 10px 4px 10px 4px;
  }

  .tier-name {
    font-size: 9px;
  }

  .rate-val {
    font-size: 18px;
  }

  .metric-row {
    margin-bottom: 5px;
  }

  .metric-lbl {
    font-size: 8px;
  }

  .metric-val {
    font-size: 10px;
  }

  .req-container {
    padding: 5px;
    border-radius: 6px;
  }

  .req-hdr {
    font-size: 8px;
    margin-bottom: 2px;
  }

  .req-item {
    font-size: 9px;
    gap: 2px;
  }

  .req-status {
    font-size: 8px;
    padding: 1px 3px;
  }

  .tier-claim-btn {
    padding: 8px;
    font-size: 9px;
    border-radius: 6px;
  }

  .tier-watermark {
    font-size: 50px;
    bottom: -10px;
    right: -5px;
  }

  .info-note, .section-header .eligible-label::before {
    display: none;
  }
}
/* -- CARD INNER LAYOUT (Level Pool style) -- */
.card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* "Eligible User" top tag */
.card-eligible-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  opacity: 0.75;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* "LEVEL X POOL" name */
.card-lvl-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* Giant percentage */
.card-big-pct {
  font-family: 'Orbitron', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(var(--glow-rgb), 0.3);
  transition: text-shadow 0.3s;
}
.tier-card:hover .card-big-pct {
  text-shadow: 0 0 50px rgba(var(--glow-rgb), 0.55);
}

/* Estimated share row */
.share-row-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.share-lbl-v2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.share-val-v2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.card-eligible-tag.not-eligible {
  color: #ef4444 !important;
  text-shadow: 0 0 8px rgba(239, 68, 68, 0.35);
}

.card-eligible-tag.eligible {
  color: #10b981 !important;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.35);
}

#pool-card-10 {
  grid-column: 1 / -1;
}

/* -- Mobile tweaks for new card layout -- */
@media (max-width: 768px) {
  .card-lvl-name { font-size: 10px; margin-bottom: 8px; }
  .card-big-pct  { font-size: 28px; margin-bottom: 10px; }
  .card-eligible-tag { font-size: 8px; letter-spacing: 1px; }
  .share-lbl-v2  { font-size: 10px; }
  .share-val-v2  { font-size: 12px; }
}
