/* =========================================================
   BoomArena — Addiction Engine Styles
   Mystery Box • Lucky Wheel • Streak • Social Proof
   Events • Boosts • Near-Miss • Coin Economy
   ========================================================= */

/* ── Coin Popup (in-game floating) ── */

/* ── Streak Toast ── */
.streak-toast {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 13, 43, 0.95);
  border: 1px solid var(--neon-cyan);
  border-radius: 14px;
  padding: 14px 28px;
  z-index: 10000;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,255,213,0.15);
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
  transition: bottom 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
  max-width: calc(100vw - 2rem);
}

.streak-toast.show {
  bottom: 30px;
}

.streak-saved {
  border-color: var(--neon-purple);
  box-shadow: 0 8px 32px rgba(185,69,255,0.2);
}

.coin-popup {
  position: fixed;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 224, 102, 0.15);
  border: 1px solid rgba(255, 224, 102, 0.4);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--neon-yellow);
  pointer-events: none;
  animation: coinPopFloat 1.5s ease-out forwards;
}

.coin-popup-icon { font-size: 1rem; }
.coin-popup-amount { font-size: 0.9rem; letter-spacing: 0.05em; }

@keyframes coinPopFloat {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  60%  { opacity: 1; transform: translateY(-40px) scale(1.1); }
  100% { opacity: 0; transform: translateY(-80px) scale(0.8); }
}

/* ── Coin Display (lobby header) ── */
.coin-display {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 224, 102, 0.08);
  border: 1px solid rgba(255, 224, 102, 0.2);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--neon-yellow);
}

.coin-icon { font-size: 1.2rem; }
.coin-amount { letter-spacing: 0.05em; }

/* ── Online Count ── */
.online-count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 6px #00ff88;
  animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #00ff88; }
  50% { opacity: 0.5; box-shadow: 0 0 12px #00ff88; }
}


/* ═══════════════════════════════════════
   ██ MYSTERY BOX OVERLAY
   ═══════════════════════════════════════ */
.mbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 16, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
}

.mbox-overlay.visible { opacity: 1; }

.mbox-container {
  text-align: center;
  max-width: 420px;
  width: 92%;
  padding: 2rem;
  margin: auto;
  position: relative;
  box-sizing: border-box;
}

.mbox-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
}

.mbox-skip-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.mbox-skip-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.mbox-box-wrap {
  perspective: 600px;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.mbox-box {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 3px solid var(--box-color, var(--neon-blue));
  background: rgba(0, 0, 0, 0.4);
  box-shadow:
    0 0 30px var(--box-glow, rgba(0, 229, 255, 0.3)),
    inset 0 0 30px var(--box-glow, rgba(0, 229, 255, 0.1));
  animation: boxIdle 2s ease-in-out infinite;
  transition: all 0.5s ease;
  position: relative;
}

.mbox-box-inner {
  font-size: 3.5rem;
  transition: transform 0.5s ease;
}

.mbox-box.opening {
  animation: boxShake 0.6s ease-in-out;
}

@keyframes boxShake {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-5deg) scale(1.05); }
  40% { transform: rotate(5deg) scale(1.08); }
  60% { transform: rotate(-3deg) scale(1.1); }
  80% { transform: rotate(3deg) scale(1.12); }
}

.mbox-box.opened {
  animation: boxOpen 0.8s ease-out forwards;
}

.mbox-box.opened .mbox-box-inner {
  transform: scale(1.5) rotate(15deg);
}

.mbox-particles {
  position: absolute;
  inset: -20px;
  pointer-events: none;
}

@keyframes boxIdle {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  25% { transform: translateY(-8px) rotateY(5deg); }
  75% { transform: translateY(-4px) rotateY(-5deg); }
}

@keyframes boxOpen {
  0%   { transform: scale(1) rotateY(0); }
  30%  { transform: scale(1.1) rotateY(20deg); }
  50%  { transform: scale(1.3) rotateY(-10deg); box-shadow: 0 0 60px var(--box-glow); }
  100% { transform: scale(0) rotateY(360deg); opacity: 0; }
}

.mbox-hint {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-muted);
  animation: hintPulse 1.5s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

.mbox-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.mbox-result {
  animation: resultReveal 0.6s ease-out;
}

.mbox-result.hidden { display: none; }

@keyframes resultReveal {
  0%   { opacity: 0; transform: scale(0.5); }
  60%  { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.mbox-rarity {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px currentColor;
}

.mbox-item-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  animation: itemBounce 0.8s ease;
}

@keyframes itemBounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-15px); }
  60% { transform: translateY(-5px); }
}

.mbox-item-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.mbox-near-miss {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--neon-orange);
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  padding: 0.4rem 1rem;
  margin: 0.8rem 0;
  animation: nearMissShake 0.5s ease;
}

@keyframes nearMissShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}

.mbox-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.mbox-collect {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

.mbox-reroll {
  font-size: 0.85rem;
}


/* ═══════════════════════════════════════
   ██ STREAK WIDGET
   ═══════════════════════════════════════ */
.streak-widget {
  padding: 1.2rem 1.5rem !important;
}

.streak-widget-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.streak-fire { font-size: 1.4rem; }

.streak-days {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--neon-orange);
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

.streak-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.streak-mult {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-yellow);
  background: rgba(255, 224, 102, 0.1);
  border: 1px solid rgba(255, 224, 102, 0.2);
  border-radius: 50px;
  padding: 0.15rem 0.6rem;
}

.streak-progress {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.streak-progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.streak-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-orange), var(--neon-yellow));
  border-radius: 3px;
  transition: width 0.6s ease;
}

.streak-next {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.streak-protectors {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}


/* ═══════════════════════════════════════
   ██ STREAK RECOVERY OVERLAY
   ═══════════════════════════════════════ */
.streak-recovery-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 16, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.streak-recovery-box {
  text-align: center;
  max-width: 380px;
  padding: 2.5rem 2rem !important;
}

.streak-recovery-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.streak-recovery-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--neon-pink);
  margin-bottom: 0.5rem;
}

.streak-recovery-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.streak-recovery-box button {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
}


/* ═══════════════════════════════════════
   ██ LUCKY WHEEL OVERLAY
   ═══════════════════════════════════════ */
.wheel-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 16, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
}

.wheel-overlay.visible { opacity: 1; }

.wheel-container {
  text-align: center;
  max-width: 480px;
  width: 92%;
  padding: 1.5rem 1rem;
  margin: auto;
  max-height: 100vh;
  max-height: 100dvh;
  box-sizing: border-box;
}

.wheel-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.wheel-canvas-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  max-width: 100%;
}

.wheel-canvas-wrap canvas {
  display: block;
  border-radius: 50%;
  max-width: 100%;
  height: auto;
  box-shadow:
    0 0 30px rgba(0, 229, 255, 0.2),
    0 0 60px rgba(185, 69, 255, 0.1);
}

.wheel-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--neon-pink);
  filter: drop-shadow(0 0 8px rgba(255, 45, 149, 0.5));
  z-index: 2;
}

.wheel-spin-info {
  margin-bottom: 1rem;
  min-height: 2rem;
}

.wheel-free-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #00ff88;
  letter-spacing: 0.08em;
}

.wheel-spin-btn {
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.wheel-close-btn {
  font-size: 0.8rem;
}

.wheel-result {
  margin-top: 1rem;
  animation: resultReveal 0.6s ease-out;
}

.wheel-result.hidden { display: none; }

.wheel-result-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.wheel-result-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neon-cyan);
}


/* ═══════════════════════════════════════
   ██ WHEEL BUTTON (lobby)
   ═══════════════════════════════════════ */
.wheel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem !important;
  cursor: pointer;
  border: 1px solid rgba(185, 69, 255, 0.2) !important;
  transition: all var(--transition-fast);
  position: relative;
}

.wheel-btn:hover {
  border-color: rgba(185, 69, 255, 0.4) !important;
  box-shadow: 0 0 20px rgba(185, 69, 255, 0.2);
}

.wheel-btn-free {
  border-color: rgba(0, 255, 136, 0.3) !important;
  animation: wheelBtnGlow 2s ease-in-out infinite;
}

@keyframes wheelBtnGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.1); }
  50% { box-shadow: 0 0 25px rgba(0, 255, 136, 0.3); }
}

.wheel-btn-icon { font-size: 1.3rem; }

.wheel-btn-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pulse {
  animation: pulseBadge 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}


/* ═══════════════════════════════════════
   ██ EVENT BANNER
   ═══════════════════════════════════════ */
.event-banner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem !important;
  border-color: rgba(var(--event-color), 0.3) !important;
  background: rgba(0, 0, 0, 0.3) !important;
  animation: eventFlash 3s ease-in-out infinite;
  overflow: hidden;
  position: relative;
}

.event-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--event-color, #ffe066), transparent);
  opacity: 0.04;
  animation: eventShimmer 3s linear infinite;
}

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

@keyframes eventFlash {
  0%, 100% { border-color: rgba(255, 224, 102, 0.15); }
  50% { border-color: rgba(255, 224, 102, 0.35); }
}

.event-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.event-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neon-yellow);
  flex: 1;
}

.event-timer {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-pink);
  flex-shrink: 0;
  letter-spacing: 0.08em;
}


/* ═══════════════════════════════════════
   ██ SOCIAL PROOF FEED
   ═══════════════════════════════════════ */
.social-feed-section h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.social-feed {
  max-height: 180px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  position: relative;
}

.social-feed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--bg-primary));
  pointer-events: none;
}

.social-feed-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  animation: feedSlideIn 0.5s ease-out;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.social-feed-item.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

@keyframes feedSlideIn {
  0%   { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.social-feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cyan);
  flex-shrink: 0;
  animation: dotFade 2s ease-out forwards;
}

@keyframes dotFade {
  0% { background: var(--neon-cyan); box-shadow: 0 0 6px var(--neon-cyan); }
  100% { background: var(--text-muted); box-shadow: none; }
}


/* ═══════════════════════════════════════
   ██ MICRO PROGRESS BARS
   ═══════════════════════════════════════ */
.micro-progress-bars {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.micro-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.micro-bar-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 100px;
}

.micro-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.micro-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s ease;
}

.micro-bar-fill.xp-fill {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

.micro-bar-fill.box-fill {
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
}

.micro-bar-value {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  min-width: 35px;
  text-align: right;
}


/* ═══════════════════════════════════════
   ██ ENGAGEMENT STATS (SUNK COST)
   ═══════════════════════════════════════ */
.engagement-section h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.engagement-stat {
  text-align: center;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.engagement-stat .e-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.engagement-stat .e-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.2rem;
}


/* ═══════════════════════════════════════
   ██ PRE-LEVEL BOOST OVERLAY (Premium)
   ═══════════════════════════════════════ */
.boost-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 16, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
}
.boost-overlay.visible { opacity: 1; }
.boost-overlay.visible .boost-panel {
  transform: scale(1);
  opacity: 1;
}

/* Ambient orbs */
.boost-ambient-orb {
  position: fixed;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.35;
}
.boost-orb-cyan {
  top: -10%;
  left: -10%;
  background: var(--neon-blue);
  filter: blur(120px);
}
.boost-orb-purple {
  bottom: -10%;
  right: -10%;
  background: var(--neon-purple);
  filter: blur(120px);
}

/* Main panel */
.boost-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  background: rgba(25, 27, 50, 0.6);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 1.5rem;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.12), inset 0 0 12px rgba(0, 229, 255, 0.04);
  padding: 2.5rem 2rem;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

/* Header */
.boost-header {
  text-align: center;
  margin-bottom: 2rem;
}
.boost-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.boost-hint {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--neon-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: hintPulse 2s ease-in-out infinite;
}

/* Section */
.boost-section {
  margin-bottom: 1.5rem;
}
.boost-section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.boost-section-icon { font-size: 0.9rem; }

/* Floating animation */
@keyframes boostFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.boost-floating {
  animation: boostFloat 3s ease-in-out infinite;
}

/* ── Inventory Items ── */
.boost-inv-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.boost-inv-card {
  width: 130px;
  background: rgba(25, 27, 50, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}
.boost-inv-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 229, 255, 0.2);
}
.boost-inv-card.boost-active {
  border-color: rgba(0, 255, 136, 0.5);
  background: rgba(0, 255, 136, 0.06);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.12);
}
.boost-inv-visual {
  position: relative;
  margin-bottom: 0.8rem;
}
.boost-inv-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.8rem;
  background: rgba(100, 100, 180, 0.12);
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.4));
}
.boost-inv-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--neon-blue);
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 99px;
}
.boost-inv-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.7rem;
}
.boost-inv-use-btn {
  width: 100%;
  padding: 0.45rem 0;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neon-blue);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.boost-inv-use-btn:hover {
  background: var(--neon-blue);
  color: var(--bg-primary);
}
.boost-inv-use-btn:disabled {
  opacity: 0.5;
  cursor: default;
  background: rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.25);
  color: #22c55e;
}

/* ── Ad Power-Up Cards ── */
.boost-ad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.boost-ad-card {
  background: rgba(25, 27, 50, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: inset 0 0 14px rgba(255, 215, 0, 0.04);
  border-radius: 1rem;
  padding: 1.2rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.boost-ad-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.15);
}
.boost-ad-card.boost-active {
  border-color: rgba(0, 255, 136, 0.5);
  background: rgba(0, 255, 136, 0.06);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.12);
}
.boost-ad-icon-wrap {
  margin-bottom: 0.6rem;
}
.boost-ad-emoji {
  font-size: 2.5rem;
  display: block;
}
.boost-ad-red { filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.4)); }
.boost-ad-orange { filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.4)); }
.boost-ad-yellow { filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.4)); }

.boost-ad-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

/* ── Watch Ad button (REMOVED — ad system disabled) ── */

/* ── Start Game Button ── */
.boost-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
.boost-start-btn {
  width: 100%;
  max-width: 360px;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.boost-start-btn:hover {
  opacity: 0.92;
  transform: scale(1.02);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.4);
}
.boost-start-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--bg-primary);
  letter-spacing: 0.02em;
}
.boost-start-arrow {
  font-size: 1.5rem;
  color: var(--bg-primary);
  transition: transform 0.3s ease;
}
.boost-start-btn:hover .boost-start-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════
   ██ SHOP OVERLAY
   ═══════════════════════════════════════ */
.shop-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 16, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
}
.shop-overlay.visible { opacity: 1; }

.shop-container {
  text-align: center;
  max-width: 440px;
  width: 92%;
  margin: auto;
  box-sizing: border-box;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.shop-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-coins {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--neon-yellow);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.shop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all var(--transition-fast);
}
.shop-item-disabled { opacity: 0.45; }

.shop-item-icon { font-size: 1.6rem; }
.shop-item-name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.shop-buy-btn {
  padding: 0.35rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-yellow);
  background: rgba(255, 224, 102, 0.08);
  border: 1px solid rgba(255, 224, 102, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.shop-buy-btn:hover:not(:disabled) {
  background: rgba(255, 224, 102, 0.15);
  border-color: rgba(255, 224, 102, 0.4);
}
.shop-buy-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.shop-close-btn {
  padding: 0.7rem 2rem;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   ██ SHOP & KEY LOBBY BUTTONS
   ═══════════════════════════════════════ */
.shop-btn, .key-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  border: 1px solid rgba(255, 224, 102, 0.12);
  transition: all var(--transition-fast);
}
.shop-btn:hover, .key-btn:hover {
  border-color: rgba(255, 224, 102, 0.3);
  transform: translateY(-2px);
}
.shop-btn-icon, .key-btn-icon { font-size: 1.3rem; }
.shop-btn-text, .key-btn-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.key-btn-count {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
}
.key-btn {
  margin: 0.5rem auto;
  justify-content: center;
  max-width: 280px;
}

/* ═══════════════════════════════════════
   ██ INVENTORY DISPLAY
   ═══════════════════════════════════════ */
.inventory-display {
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
}
.inv-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.inv-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.inv-item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}


/* ═══════════════════════════════════════
   ██ NEAR-MISS SECTION (game-over)
   ═══════════════════════════════════════ */
.go-nearmiss-slot { margin: 1rem 0; }

.nearmiss-section {
  text-align: center;
  margin: 0.5rem 0;
}

.nearmiss-progress-ring {
  width: 90px;
  height: 90px;
  position: relative;
  margin: 0 auto 0.8rem;
}

.nearmiss-progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.nearmiss-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 6;
}

.nearmiss-fill {
  fill: none;
  stroke: var(--neon-cyan);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
}

.nearmiss-percent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--neon-cyan);
}

.nearmiss-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neon-orange);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.nearmiss-stats {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.nearmiss-revenge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--neon-pink);
  background: rgba(255, 45, 149, 0.08);
  border: 1px solid rgba(255, 45, 149, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
  animation: revengeGlow 2s ease-in-out infinite;
}

@keyframes revengeGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(255, 45, 149, 0.1); }
  50% { box-shadow: 0 0 15px rgba(255, 45, 149, 0.2); }
}

.nearmiss-best {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.nearmiss-hint {
  font-size: 0.75rem;
  color: var(--neon-yellow);
  background: rgba(255, 224, 102, 0.06);
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  margin-top: 0.5rem;
  animation: hintPulse 2s ease-in-out infinite;
}


/* ── Reward Ad Button (REMOVED — ad system disabled) ── */


/* ═══════════════════════════════════════
   ██ SKIN SHOP OVERLAY v2.0
   ═══════════════════════════════════════ */
.skin-shop-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
  padding: 1rem;
}
.skin-shop-overlay.sk-visible {
  background: rgba(0,0,0,0.88);
}

/* ── Modal Container ── */
.sk-modal {
  background: linear-gradient(160deg, #12082a 0%, #0a1628 50%, #0f0825 100%);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 20px;
  max-width: 700px; width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 0 60px rgba(168,85,247,0.15), 0 0 120px rgba(0,229,255,0.05);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
}
.sk-visible .sk-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* ── Header ── */
.sk-header {
  display: flex; align-items: center;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(168,85,247,0.15);
  gap: 0.8rem;
}
.sk-title {
  font-family: 'Orbitron', 'Exo 2', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  background: linear-gradient(135deg, #a855f7, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex: 1; margin: 0;
}
.sk-coins {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: #ffe066;
  background: rgba(255,224,102,0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255,224,102,0.2);
}
.sk-close-x {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #888;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.sk-close-x:hover { background: rgba(255,45,149,0.15); color: #ff2d95; border-color: rgba(255,45,149,0.3); }

/* ── Body Layout ── */
.sk-body {
  display: flex;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

/* ── Preview Panel (left) ── */
.sk-preview-panel {
  width: 230px; min-width: 230px;
  display: flex; flex-direction: column;
  align-items: center;
  padding: 1.3rem 1rem;
  border-right: 1px solid rgba(168,85,247,0.1);
  background: rgba(168,85,247,0.03);
}
.sk-canvas-wrap {
  width: 170px; height: 170px;
  border-radius: 50%;
  padding: 5px;
  background: conic-gradient(from 0deg, var(--rc), transparent 40%, var(--rc) 60%, transparent);
  animation: skRotateBorder 4s linear infinite;
  position: relative;
}
.sk-canvas-wrap::before {
  content: '';
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, #12082a 60%, #0a0a1a);
}
#sk-preview-canvas {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  border-radius: 50%;
}
@keyframes skRotateBorder { to { transform: rotate(360deg); } }

/* ── Info Section ── */
.sk-info {
  text-align: center;
  margin-top: 1rem;
  width: 100%;
}
.sk-info-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.sk-info-rarity {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.sk-traits {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.25rem; margin-bottom: 0.7rem;
}
.skt {
  font-size: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.15rem 0.45rem;
  border-radius: 10px;
  color: #aaa;
}

/* ── Action Buttons ── */
.sk-action {
  display: block; width: 100%;
  padding: 0.55rem 1rem;
  border: none; border-radius: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.2rem;
}
.sk-act-equip {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  box-shadow: 0 0 18px rgba(168,85,247,0.3);
}
.sk-act-equip:hover { transform: translateY(-2px); box-shadow: 0 4px 22px rgba(168,85,247,0.5); }
.sk-act-buy {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  box-shadow: 0 0 18px rgba(245,158,11,0.3);
}
.sk-act-buy:hover { transform: translateY(-2px); box-shadow: 0 4px 22px rgba(245,158,11,0.5); }
.sk-act-buy.sk-disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; box-shadow: none; }
.sk-act-equipped {
  background: rgba(168,85,247,0.15);
  color: #a855f7;
  cursor: default;
  border: 1px solid rgba(168,85,247,0.3);
}
.sk-lock-req {
  text-align: center;
  font-size: 0.75rem; color: #888;
  padding: 0.45rem;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── Grid Panel (right) ── */
.sk-grid-panel {
  flex: 1;
  display: flex; flex-direction: column;
  overflow: hidden;
  min-width: 0;
}
.sk-filters {
  display: flex; gap: 0.35rem;
  padding: 0.7rem 0.9rem;
  overflow-x: auto;
  flex-shrink: 0;
}
.sk-filter {
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: transparent;
  color: var(--fc, #e0e0ff);
  font-size: 0.65rem; font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: 'Orbitron', sans-serif;
}
.sk-filter:hover { background: rgba(255,255,255,0.06); }
.sk-filter.sk-filter-on {
  background: rgba(255,255,255,0.1);
  border-color: var(--fc);
  box-shadow: 0 0 8px rgba(255,255,255,0.08);
}

/* ── Skin Card Grid ── */
.sk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
  gap: 0.55rem;
  padding: 0 0.9rem 0.9rem;
  overflow-y: auto;
  flex: 1;
}
.sk-grid::-webkit-scrollbar { width: 4px; }
.sk-grid::-webkit-scrollbar-track { background: transparent; }
.sk-grid::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.3); border-radius: 4px; }

/* ── Individual Skin Card ── */
.skc {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--rb, rgba(156,163,175,0.2));
  border-radius: 14px;
  padding: 0.55rem 0.35rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.skc::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, var(--rb), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s;
}
.skc:hover { transform: translateY(-3px); border-color: var(--rc); }
.skc:hover::before { opacity: 0.15; }
.skc.skc-sel {
  border-color: var(--rc);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 18px var(--rb);
}
.skc.skc-sel::before { opacity: 0.2; }
.skc.skc-eq {
  border-color: var(--rc);
  box-shadow: 0 0 14px var(--rb), inset 0 0 12px rgba(255,255,255,0.03);
}
.skc.skc-locked { opacity: 0.45; }
.skc.skc-locked:hover { opacity: 0.7; }

/* Card rarity label */
.skc-rarity {
  font-size: 0.45rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rc);
  margin-bottom: 0.2rem;
  font-family: 'Orbitron', sans-serif;
}
/* Card orb */
.skc-orb {
  width: 48px; height: 48px;
  margin: 0 auto 0.35rem;
  border-radius: 50%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.skc-glow {
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sc), transparent 70%);
  opacity: 0.25;
  transition: opacity 0.25s;
}
.skc:hover .skc-glow { opacity: 0.4; }
.skc.skc-sel .skc-glow { opacity: 0.5; }
.skc-icon {
  font-size: 1.5rem;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 6px var(--sc));
}
/* Card name */
.skc-name {
  font-size: 0.65rem; font-weight: 600;
  color: #ccc;
  font-family: 'Exo 2', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Card badges */
.skc-badge { position: absolute; font-size: 0.5rem; font-weight: 700; font-family: 'Orbitron', sans-serif; }
.skc-badge-eq {
  top: 5px; right: 5px;
  background: rgba(168,85,247,0.9);
  color: #fff;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  box-shadow: 0 0 8px rgba(168,85,247,0.5);
}
.skc-badge-price {
  bottom: 3px; right: 3px; left: 3px;
  text-align: center;
  background: rgba(255,224,102,0.12);
  color: #ffe066;
  border-radius: 7px;
  padding: 1px 3px;
}
.skc-badge-lock {
  top: 5px; left: 5px;
  color: #888; font-size: 0.65rem;
}

/* ── Close Button ── */
.sk-close-btn {
  display: block; margin: 0 auto 1rem;
  padding: 0.55rem 2.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: #aaa;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 1px;
}
.sk-close-btn:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }


/* ═══════════════════════════════════════
   ██ BATTLE PASS OVERLAY
   ═══════════════════════════════════════ */
.bp-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.3s ease;
}

.bp-container {
  background: linear-gradient(135deg, #0a1628 0%, #1a0a2e 100%);
  border: 1px solid rgba(255,215,0,0.35);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 600px; width: 94%;
  max-height: 85vh; overflow-y: auto;
  box-shadow: 0 0 50px rgba(255,215,0,0.15);
}

.bp-header {
  text-align: center;
  margin-bottom: 1rem;
}

.bp-header h2 {
  font-size: 1.5rem; font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bp-tier-info {
  font-size: 0.85rem; color: #aaa;
  margin-top: 0.3rem;
}

.bp-progress-bar {
  width: 100%; height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  margin: 0.8rem 0;
  overflow: hidden;
}

.bp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ff8c00);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.bp-tiers-scroll {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,215,0,0.3) transparent;
}

.bp-tier {
  flex: 0 0 100px;
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 10px;
  padding: 0.6rem;
  text-align: center;
  transition: all 0.2s;
}

.bp-tier.current {
  border-color: #ffd700;
  background: rgba(255,215,0,0.12);
  box-shadow: 0 0 12px rgba(255,215,0,0.2);
}

.bp-tier.completed {
  border-color: rgba(0,255,136,0.3);
  background: rgba(0,255,136,0.05);
}

.bp-tier-num { font-size: 0.7rem; color: #888; margin-bottom: 0.3rem; }
.bp-tier-reward { font-size: 1.2rem; margin-bottom: 0.2rem; }
.bp-tier-label { font-size: 0.65rem; color: #ccc; }

.bp-tier-claim {
  margin-top: 0.3rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.65rem;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000; border: none;
  border-radius: 6px; cursor: pointer;
  font-weight: 600;
}
.bp-tier-claim:hover { filter: brightness(1.2); }

.bp-premium-btn {
  display: block; margin: 0.5rem auto;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff; border: none;
  border-radius: 10px; cursor: pointer;
  font-size: 0.85rem; font-weight: 600;
  transition: all 0.2s;
}
.bp-premium-btn:hover { filter: brightness(1.15); }

.bp-premium-active {
  background: rgba(168,85,247,0.2);
  color: #a855f7;
  cursor: default;
}

.bp-close {
  display: block; margin: 0.8rem auto 0;
  padding: 0.5rem 2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #ccc; font-size: 0.85rem;
  cursor: pointer;
}
.bp-close:hover { background: rgba(255,255,255,0.15); }


/* ═══════════════════════════════════════
   ██ BATTLE PASS MISSIONS WIDGET
   ═══════════════════════════════════════ */
.bp-missions-widget {
  background: rgba(255,215,0,0.04);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 12px;
  padding: 0.8rem;
  margin-top: 0.8rem;
}

.bp-missions-title {
  font-size: 0.9rem; font-weight: 600;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.bp-mission-section-label {
  font-size: 0.7rem; font-weight: 600;
  color: #aaa; text-transform: uppercase;
  margin: 0.4rem 0 0.2rem;
}

.bp-mission-item {
  display: flex; align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.8rem; color: #ddd;
}

.bp-mission-item:last-child { border-bottom: none; }

.bp-mission-progress {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  min-width: 40px;
}

.bp-mission-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ff8c00);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.bp-claim-btn {
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000; border: none;
  border-radius: 6px; cursor: pointer;
  font-weight: 600;
}
.bp-claim-btn:hover { filter: brightness(1.2); }

.bp-mission-done {
  color: #00ff88; font-size: 0.7rem;
}


/* ═══════════════════════════════════════
   ██ PRESTIGE SYSTEM
   ═══════════════════════════════════════ */
.prestige-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9100;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.3s ease;
}

.prestige-container {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
  border: 2px solid rgba(255,215,0,0.4);
  border-radius: 20px;
  padding: 2rem;
  max-width: 420px; width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(255,215,0,0.2), 0 0 120px rgba(168,85,247,0.1);
}

.prestige-icon {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}

.prestige-container h2 {
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, #ffd700, #ff8c00, #ffd700);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.prestige-desc {
  font-size: 0.9rem; color: #bbb;
  margin-bottom: 1rem;
}

.prestige-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.prestige-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.6rem;
}

.prestige-info-card.resets { border-color: rgba(255,68,68,0.3); }
.prestige-info-card.keeps { border-color: rgba(0,255,136,0.3); }

.prestige-info-label {
  font-size: 0.65rem; color: #888;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 0.3rem;
}

.prestige-info-value {
  font-size: 0.8rem; color: #ddd;
}

.prestige-rewards {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px;
  padding: 0.6rem;
  margin-bottom: 1rem;
}

.prestige-rewards h4 {
  font-size: 0.8rem; color: #ffd700;
  margin-bottom: 0.3rem;
}

.prestige-reward-item {
  font-size: 0.8rem; color: #ccc;
  padding: 0.2rem 0;
}

.prestige-btns {
  display: flex; gap: 0.8rem;
  justify-content: center;
}

.prestige-confirm-btn {
  padding: 0.7rem 1.8rem;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000; border: none;
  border-radius: 12px; cursor: pointer;
  font-size: 0.9rem; font-weight: 700;
  transition: all 0.2s;
}
.prestige-confirm-btn:hover { filter: brightness(1.15); transform: scale(1.03); }

.prestige-cancel-btn {
  padding: 0.7rem 1.8rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #aaa; cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.prestige-cancel-btn:hover { background: rgba(255,255,255,0.15); }

/* Prestige badge in lobby */
.prestige-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(168,85,247,0.15));
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem; font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.prestige-badge-icon { font-size: 1rem; }

/* Prestige button in lobby */
.prestige-btn {
  display: block;
  margin: 0.5rem auto;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(168,85,247,0.12));
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 10px;
  color: #ffd700;
  font-size: 0.8rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  animation: prestigePulse 2s ease-in-out infinite;
}

.prestige-btn:hover {
  background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(168,85,247,0.2));
  border-color: rgba(255,215,0,0.5);
}

@keyframes prestigePulse {
  0%, 100% { box-shadow: 0 0 8px rgba(255,215,0,0.15); }
  50% { box-shadow: 0 0 20px rgba(255,215,0,0.3); }
}

/* Prestige toast */
.prestige-toast {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #1a0a2e, #2d1b4e);
  border: 2px solid #ffd700;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  z-index: 9200;
  animation: prestigeToastIn 0.5s ease;
  box-shadow: 0 0 80px rgba(255,215,0,0.3);
}

.prestige-toast-icon { font-size: 3.5rem; }
.prestige-toast h3 {
  font-size: 1.3rem; font-weight: 800;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.5rem 0;
}
.prestige-toast p { font-size: 0.85rem; color: #ccc; }

@keyframes prestigeToastIn {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}


/* ═══════════════════════════════════════
   ██ LOBBY ENGAGEMENT BUTTONS (Skin + BP)
   ═══════════════════════════════════════ */
.lobby-skin-btn,
.lobby-bp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(168,85,247,0.3);
  background: rgba(168,85,247,0.08);
  color: #e0b0ff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.lobby-skin-btn:hover,
.lobby-bp-btn:hover {
  background: rgba(168,85,247,0.18);
  border-color: rgba(168,85,247,0.5);
  transform: translateY(-1px);
}

.lobby-bp-btn {
  border-color: rgba(255,215,0,0.3);
  background: rgba(255,215,0,0.08);
  color: #ffd700;
}

.lobby-bp-btn:hover {
  background: rgba(255,215,0,0.18);
  border-color: rgba(255,215,0,0.5);
}


/* ═══════════════════════════════════════
   ██ RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .mbox-container,
  .wheel-container {
    padding: 1.5rem;
  }

  .boost-panel {
    padding: 1.5rem 1.2rem;
  }

  .wheel-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .wheel-spin-btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }

  .mbox-box {
    width: 110px;
    height: 110px;
  }

  .mbox-box-inner { font-size: 2.5rem; }

  .boost-ad-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .boost-ad-card {
    flex-direction: row;
    padding: 0.8rem 1rem;
    gap: 0.8rem;
  }

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

  .sk-body { flex-direction: column; }
  .sk-preview-panel { width: 100%; min-width: 0; flex-direction: row; padding: 0.8rem; border-right: none; border-bottom: 1px solid rgba(168,85,247,0.1); gap: 0.8rem; }
  .sk-canvas-wrap { width: 100px; height: 100px; min-width: 100px; }
  .sk-info { text-align: left; margin-top: 0; }
  .sk-info-name { font-size: 0.9rem; }
  .sk-grid { grid-template-columns: repeat(3, 1fr); }
  .skc-orb { width: 40px; height: 40px; }
  .skc-icon { font-size: 1.3rem; }
  .sk-title { font-size: 1rem; }
  .bp-container { padding: 1rem; }
  .bp-tier { flex: 0 0 85px; }
  .prestige-container { padding: 1.2rem; }
  .prestige-info-grid { grid-template-columns: 1fr; }

  .nearmiss-progress-ring {
    width: 70px;
    height: 70px;
  }

  .nearmiss-percent { font-size: 1.1rem; }

  .social-feed { max-height: 120px; }
}

@media (max-width: 480px) {
  .mbox-container,
  .wheel-container {
    padding: 1rem;
    margin: 0.5rem;
  }

  .boost-panel {
    padding: 1.2rem 1rem;
    border-radius: 1rem;
  }
  .boost-title {
    font-size: 1.3rem;
  }
  .boost-ad-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }
  .boost-inv-card {
    width: 110px;
    padding: 0.9rem;
  }
  .boost-start-btn {
    padding: 0.9rem 1.5rem;
  }
  .boost-start-text {
    font-size: 1rem;
  }

  .mbox-grid {
    gap: 0.5rem;
  }

  .mbox-box {
    width: 85px;
    height: 85px;
  }

  .mbox-box-inner { font-size: 2rem; }

  .wheel-canvas {
    width: 240px;
    height: 240px;
  }

  #wheel-canvas {
    max-width: 240px !important;
    max-height: 240px !important;
  }

  .wheel-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .wheel-pointer {
    font-size: 1.1rem;
    top: -8px;
  }

  .wheel-spin-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .sk-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
  .skc { padding: 0.4rem 0.25rem; }
  .sk-preview-panel { padding: 0.6rem; gap: 0.6rem; }
  .sk-canvas-wrap { width: 80px; height: 80px; min-width: 80px; }
  .sk-filters { padding: 0.5rem 0.6rem; gap: 0.3rem; }
  .bp-container { padding: 0.8rem; }
  .bp-tier { flex: 0 0 75px; padding: 0.4rem; }
  .prestige-container { padding: 1rem; max-width: 95%; }
  .bp-missions-widget { padding: 0.5rem; }

  .streak-day {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }

  .flash-event-banner {
    font-size: 0.8rem;
    padding: 0.6rem;
  }
}

/* ═══════════════════════════════════════
   ██ VERY SMALL SCREENS (< 360px)
   ═══════════════════════════════════════ */
@media (max-width: 360px) {
  .wheel-container,
  .mbox-container {
    padding: 0.75rem;
    width: 96%;
  }

  .boost-panel {
    padding: 1rem 0.8rem;
    border-radius: 0.85rem;
  }

  #wheel-canvas {
    max-width: 200px !important;
    max-height: 200px !important;
  }

  .wheel-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .wheel-pointer {
    font-size: 0.9rem;
    top: -6px;
  }

  .wheel-spin-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .wheel-close-btn {
    font-size: 0.7rem;
  }

  .wheel-result-icon {
    font-size: 1.8rem;
  }

  .mbox-box {
    width: 70px;
    height: 70px;
  }

  .mbox-box-inner { font-size: 1.5rem; }

  .mbox-title {
    font-size: 1.1rem;
  }

  .boost-title {
    font-size: 1.1rem;
  }

  .mbox-collect {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .boost-start-btn {
    padding: 0.7rem 1rem;
  }
  .boost-start-text {
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════
   ██ LANDSCAPE MOBILE FIX
   ═══════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  .wheel-container {
    padding: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .wheel-title {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 0;
  }

  .wheel-canvas-wrap {
    margin-bottom: 0;
  }

  #wheel-canvas {
    max-width: 180px !important;
    max-height: 180px !important;
  }

  .wheel-spin-info {
    margin-bottom: 0;
  }

  .wheel-spin-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
  }

  .mbox-container {
    padding: 0.8rem;
  }

  .boost-panel {
    padding: 0.8rem;
  }

  .mbox-box {
    width: 60px;
    height: 60px;
  }
}

/* ═════════════════════════════════════
   DAILY GIFT CALENDAR
   ═════════════════════════════════════ */

.gift-calendar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--neon-cyan);
  margin-bottom: 0.8rem;
  text-align: center;
}

.gift-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.gift-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: default;
  transition: all 0.3s ease;
  min-height: 60px;
}

.gift-cell .gift-day {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
}

.gift-cell .gift-coins {
  font-size: 0.75rem;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.gift-cell .gift-status {
  font-size: 0.7rem;
  margin-top: 2px;
}

.gift-cell.gift-today {
  border-color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.08);
  cursor: pointer;
  animation: giftPulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}

.gift-cell.gift-today:hover {
  background: rgba(0, 229, 255, 0.15);
  transform: translateY(-2px);
}

.gift-cell.gift-claimed {
  background: rgba(0, 255, 213, 0.06);
  border-color: rgba(0, 255, 213, 0.2);
  opacity: 0.7;
}

.gift-cell.gift-locked {
  opacity: 0.3;
}

.gift-cell.gift-mega {
  border-color: var(--neon-magenta);
  background: rgba(185, 69, 255, 0.08);
  box-shadow: 0 0 8px rgba(185, 69, 255, 0.15);
}

.gift-cell.gift-mega .gift-coins {
  color: var(--neon-magenta);
  font-weight: bold;
}

@keyframes giftPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(0, 229, 255, 0.2); }
  50% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.4); }
}

/* ═════════════════════════════════════
   COUNTDOWN TO REWARD WIDGET
   ═════════════════════════════════════ */

.countdown-widget {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.countdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.countdown-icon {
  font-size: 1.2rem;
}

.countdown-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

/* ═════════════════════════════════════
   POWER-UP FUSION LAB
   ═════════════════════════════════════ */

.fusion-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--neon-purple);
  margin-bottom: 0.8rem;
  text-align: center;
}

.fusion-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fusion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(185, 69, 255, 0.06);
  border: 1px solid rgba(185, 69, 255, 0.15);
  border-radius: 10px;
}

.fusion-type {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--neon-purple);
  text-transform: uppercase;
}

.fusion-count {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.fusion-btn {
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-magenta));
  border: none;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fusion-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(185, 69, 255, 0.4);
}

.fusion-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  padding: 12px;
  font-family: var(--font-body);
}

/* ═════════════════════════════════════
   PROFILE SECTION
   ═════════════════════════════════════ */

.lobby-profile-card {
  padding: 1.5rem;
}

.lobby-profile-stats {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 600px) {
  .gift-calendar-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .lobby-profile-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
