:root {
  --bg-dark: #050810;
  --bg-card: rgba(8, 12, 22, 0.9);
  --bg-card-hover: rgba(12, 18, 30, 0.95);
  --accent: #22d3ee;
  --accent-dim: rgba(34, 211, 238, 0.4);
  --accent-glow: rgba(34, 211, 238, 0.15);
  --ripple-color: rgba(200, 210, 220, 0.12);
  --ripple-border: rgba(220, 230, 240, 0.08);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.15);
  --success: #34d399;
  --danger: #f87171;
  --radius: 16px;
  --radius-sm: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Animated Ripple Background */
.ripple-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--ripple-border);
  background: radial-gradient(
    circle,
    var(--ripple-color) 0%,
    transparent 65%
  );
  animation: ripple-expand 10s cubic-bezier(0.33, 0, 0.2, 1) infinite;
  opacity: 0;
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.ripple:nth-child(1) { left: 5%; top: 15%; width: 500px; height: 500px; animation-delay: 0s; }
.ripple:nth-child(2) { left: 55%; top: 5%; width: 600px; height: 600px; animation-delay: 2s; }
.ripple:nth-child(3) { left: 25%; top: 45%; width: 550px; height: 550px; animation-delay: 4s; }
.ripple:nth-child(4) { left: 65%; top: 55%; width: 480px; height: 480px; animation-delay: 6s; }
.ripple:nth-child(5) { left: 40%; top: 75%; width: 520px; height: 520px; animation-delay: 8s; }

@keyframes ripple-expand {
  0% {
    transform: translateZ(0) scale(0.2);
    opacity: 0.5;
  }
  40% {
    opacity: 0.35;
  }
  100% {
    transform: translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/* Hero Nav */
.hero-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

/* ==================== PREMIUM WORDMARK WITH RIPPLE HALO ==================== */
.logo-wave-wrap {
  --wordmark-scale: 1;
  --halo-intensity: 0.08;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 0;
}

/* Ripple Halo - Two concentric rings */
.logo-wave-wrap::before,
.logo-wave-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(34, 211, 238, var(--halo-intensity));
  opacity: 0;
  filter: blur(2px);
  will-change: transform, opacity;
}

/* Inner ring */
.logo-wave-wrap::before {
  width: 180%;
  height: 220%;
  animation: rippleHalo 8s ease-in-out infinite;
}

/* Outer ring */
.logo-wave-wrap::after {
  width: 220%;
  height: 260%;
  animation: rippleHalo 8s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes rippleHalo {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
  20% {
    opacity: calc(var(--halo-intensity) * 5);
  }
  80% {
    opacity: calc(var(--halo-intensity) * 2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* Premium Wordmark Text */
.logo-text {
  position: relative;
  z-index: 2;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #22d3ee 0%, #93c5fd 50%, #e0f2fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.3));
  transition: filter 0.3s ease;
}

.logo:hover .logo-text {
  filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.5));
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .logo-wave-wrap::before,
  .logo-wave-wrap::after {
    animation: none;
    opacity: calc(var(--halo-intensity) * 3);
    transform: translate(-50%, -50%) scale(0.8);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  overflow: visible;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border: 1px solid var(--accent-dim);
  opacity: 0;
  pointer-events: none;
}

.nav-link:hover::before {
  animation: navRipple 0.8s ease-out;
}

@keyframes navRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  color: var(--accent);
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.btn-login {
  background: linear-gradient(135deg, var(--accent), #06b6d4);
  color: var(--bg-dark);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - 80px);
  padding: 1.5rem 2.5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page {
  display: none;
  animation: fadeIn 0.4s ease;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==================== PREMIUM FOOTER ==================== */
.site-footer {
  position: relative;
  z-index: 5;
  margin-top: 6rem;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.6) 0%, rgba(5, 8, 16, 0.95) 100%);
  border-top: 1px solid rgba(34, 211, 238, 0.15);
  box-shadow: 0 -1px 32px rgba(34, 211, 238, 0.05);
}

/* Main Footer Content */
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Column Styling */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Brand Column */
.footer-brand {
  gap: 0.75rem;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
  display: inline-block;
  width: fit-content;
}

.footer-logo:hover {
  opacity: 0.9;
}

/* Footer uses smaller scale and lower intensity for halo */
.footer-logo .logo-wave-wrap {
  --wordmark-scale: 0.85;
  --halo-intensity: 0.05;
  font-size: inherit;
}

.footer-logo .logo-text {
  font-size: inherit;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
  margin: 0.25rem 0 1rem 0;
}

.footer-brand-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.4) 0%, transparent 100%);
  border-radius: 1px;
}

/* Column Titles */
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(241, 245, 249, 0.5);
  margin: 0 0 0.5rem 0;
}

/* Navigation Links */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link {
  font-size: 0.9375rem;
  color: rgba(241, 245, 249, 0.65);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(34, 211, 238, 0.5);
  transition: width 0.2s ease;
}

.footer-link:hover {
  color: rgba(241, 245, 249, 0.95);
  transform: translateX(2px);
}

.footer-link:hover::after {
  width: 100%;
}

/* Responsible Gambling Link - Special Styling */
.footer-link-responsible {
  color: rgba(34, 211, 238, 0.75);
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
}

.footer-link-responsible:hover {
  color: rgba(34, 211, 238, 0.95);
}

.footer-link-responsible::after {
  background: rgba(34, 211, 238, 0.6);
}

.footer-icon-shield {
  flex-shrink: 0;
  opacity: 0.8;
}

/* Bottom Bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(148, 163, 184, 0.6);
  font-weight: 500;
  margin: 0;
}

.footer-disclaimer {
  font-size: 0.8125rem;
  color: rgba(148, 163, 184, 0.45);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }

  .footer-brand-divider {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .footer-main {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-link::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-link:hover::after {
    width: 80%;
  }

  .footer-bottom {
    padding: 1.5rem 1.5rem 2rem;
  }
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .footer-link {
    transition: color 0.2s ease;
  }

  .footer-link:hover {
    transform: none;
  }

  .footer-link::after {
    transition: none;
  }
}

.hidden {
  display: none !important;
}

/* Home Hero */
.hero-section {
  text-align: left;
  padding: 3.5rem 0 5.5rem;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.15), transparent);
}

.hero-content {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-content::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(148, 163, 184, 0.1), transparent);
  pointer-events: none;
}

.hero-text {
  flex: 0 1 50%;
  min-width: 0;
}

.hero-image-placeholder {
  flex: 0 0 57%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(34, 211, 238, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-image-placeholder .hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
  vertical-align: bottom;
  position: relative;
  z-index: 1;
}

.hero-section .hero-headline {
  animation: heroFadeUp 0.7s ease-out;
}

.hero-section .hero-subline {
  animation: heroFadeUp 0.7s ease-out 0.1s both;
}

.hero-section .hero-bubbles {
  animation: heroFadeUp 0.7s ease-out 0.2s both;
}

.hero-section .hero-image-placeholder {
  animation: heroFadeUp 0.7s ease-out 0.15s both;
}

.hero-section .feature-block:nth-child(1) { animation: heroFadeUp 0.6s ease-out 0.3s both; }
.hero-section .feature-block:nth-child(2) { animation: heroFadeUp 0.6s ease-out 0.4s both; }
.hero-section .feature-block:nth-child(3) { animation: heroFadeUp 0.6s ease-out 0.5s both; }

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

.hero-headline {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 600px;
}

.hero-line {
  display: block;
}

.hero-line-primary {
  font-weight: 800;
  font-size: 1em;
  color: var(--text);
  margin-bottom: 0.18em;
}

.hero-line-secondary {
  font-weight: 600;
  font-size: 0.9em;
  color: var(--text);
  margin-bottom: 0.12em;
  opacity: 0.9;
}

.hero-line-secondary:nth-child(2) {
  margin-bottom: 0.08em;
}

.hero-line-secondary:last-of-type {
  margin-bottom: 2rem;
}

.hero-highlight {
  font-weight: 700;
  padding: 0 0.02em;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) 38%,
    #67e8f9 43%,
    #a5f3fc 46%,
    #67e8f9 49%,
    var(--accent) 54%,
    var(--accent) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroAccentShimmer 6s linear infinite;
}

@keyframes heroAccentShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: 0% 0; }
}

.hero-subline {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 480px;
  text-wrap: pretty;
  font-weight: 400;
  opacity: 0.75;
}

.hero-bubbles {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  margin-bottom: 4rem;
}

.hero-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.hero-bubble:first-child {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.1));
  border-color: rgba(34, 211, 238, 0.4);
  color: #22d3ee;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.15);
}

.hero-bubble:hover {
  border-color: rgba(148, 163, 184, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-bubble:first-child:hover {
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow: 0 8px 28px rgba(34, 211, 238, 0.2);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0.12));
}

.feature-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.feature-blocks::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.12), transparent);
}

.feature-block {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.feature-block:first-child {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(148, 163, 184, 0.2);
}

.feature-block:hover {
  border-color: rgba(148, 163, 184, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.feature-block:first-child:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 32px rgba(34, 211, 238, 0.12);
}

.feature-block-hunt:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(167, 139, 250, 0.12);
}

.feature-block-ev:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(52, 211, 153, 0.12);
}

.feature-block-creator:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(145, 70, 255, 0.12);
}

.feature-block h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.feature-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
}

/* Pillars Section */
.pillars-section {
  width: 100%;
  padding: 7rem 2rem;
  margin-top: 4rem;
  position: relative;
}

.pillars-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.2), transparent);
}

.pillars-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pillars-header {
  text-align: center;
  margin-bottom: 5rem;
}

.pillars-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.pillars-subtitle {
  font-size: 1.125rem;
  color: rgba(241, 245, 249, 0.7);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

.pillars-block {
  position: relative;
  padding: 4rem 0;
}

.pillars-block:first-of-type .pillars-divider {
  display: none;
}

.pillars-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.2), transparent);
  opacity: 0.6;
}

.pillars-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pillars-block-alt .pillars-block-inner {
  direction: rtl;
}

.pillars-block-alt .pillars-block-text {
  direction: ltr;
}

.pillars-block-alt .pillars-block-mock {
  direction: ltr;
}

.pillars-block-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillars-block-heading {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.pillars-block-heading::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  margin-top: 0.75rem;
  opacity: 0.6;
}

.pillars-block-para {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(241, 245, 249, 0.7);
  margin: 0;
  max-width: 520px;
}

.pillars-bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pillars-bullets li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(241, 245, 249, 0.7);
  line-height: 1.6;
}

.pillars-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.625em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.pillars-block-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillars-mock-stats {
  flex-direction: column;
  gap: 0.75rem;
}

.mock-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.mock-stat {
  color: var(--text-muted);
}

.mock-value {
  color: var(--text);
}

.mock-positive {
  color: var(--accent);
}

.pillars-mock-leaderboard {
  flex-direction: column;
  gap: 0.5rem;
}

.mock-lead-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mock-lead-row span:first-child {
  color: var(--accent);
  font-weight: 600;
}

.mock-lead-row span:last-child {
  color: var(--text);
}

.pillars-mock-chart {
  padding: 1.5rem;
}

.mock-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 80px;
}

.mock-bar {
  width: 12px;
  min-height: 8px;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.5;
}

.pillars-mock-overlay {
  padding: 1rem;
}

.mock-overlay-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
}

.mock-overlay-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-overlay-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

/* Pillars scroll animation */
.pillars-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.33, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.33, 0, 0.2, 1);
}

.pillars-animate.pillars-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .pillars-section {
    padding: 4rem 1.5rem;
  }

  .pillars-block-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr !important;
  }

  .pillars-block-alt .pillars-block-inner {
    direction: ltr;
  }

  .pillars-block-mock {
    order: -1;
    min-height: 100px;
  }
}

@media (max-width: 900px) {
  .feature-blocks {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-blocks::before {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    gap: 2.5rem;
  }

  .hero-content::after {
    display: none;
  }

  .hero-image-placeholder {
    flex: none;
    width: 100%;
    min-height: 240px;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-section {
    padding: 2.5rem 0 4rem;
  }

  .pillars-section {
    padding: 5rem 1.5rem;
    margin-top: 3rem;
  }

  .pillars-title {
    font-size: 1.875rem;
  }
}

@media (max-width: 600px) {
  .hero-bubbles {
    flex-direction: column;
  }

  .hero-bubble {
    width: 100%;
  }
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #06b6d4);
  color: var(--bg-dark);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-secondary {
  background: rgba(148, 163, 184, 0.2);
  color: var(--text);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: rgba(148, 163, 184, 0.3);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Hunts Page */
.hunts-container {
  max-width: 1200px;
  margin: 0 auto;
}

#page-hunts:has(#phase-start:not(.hidden)) .hunts-container {
  margin-top: -1.5rem;
}

/* Hunts Hero Layout: provider showcase left, hunts-main right */
.hunts-hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 1rem;
}

.provider-showcase-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  flex: 0 0 auto;
  width: 495px;
}

.hunts-hero-content .provider-showcase-column {
  order: 1;
}

.hunts-hero-content .hunts-main {
  order: 2;
}

.hunts-hero-content.hunt-active .provider-showcase-column {
  display: none;
}

/* Start Hunt phase: button on left of reel, slightly lower than reel box */
.hunts-hero-content:has(#phase-start:not(.hidden)) {
  align-items: flex-end;
}

.hunts-main {
  flex: 1;
  min-width: 0;
  /* No max-width: extends flush with Login edge */
}

.hunts-hero-content.hunt-active .hunts-main {
  max-width: none;
}

/* Provider Showcase */
.provider-showcase:not(.loaded) {
  opacity: 0;
  visibility: hidden;
}

.provider-showcase.loaded {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.provider-showcase.showcase-hidden {
  display: none;
}

.provider-showcase-column .start-hunt-btn {
  width: 100%;
  max-width: none;
  flex: 0 0 auto;
  min-height: 3.5rem;
  padding: 1rem 1.5rem;
  margin: 0;
  justify-content: center;
  box-sizing: border-box;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(8, 12, 22, 0.95) 100%);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  transition: all 0.25s ease;
}

.provider-showcase-column .start-hunt-btn:hover {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 24px rgba(34, 211, 238, 0.15);
  transform: translateY(-1px);
}

.provider-showcase {
  flex: 0 0 auto;
  width: 495px;
  height: 518px;
  max-height: 518px;
  overflow: hidden;
  display: flex;
  gap: 4px;
  background: linear-gradient(135deg, rgba(8, 12, 22, 0.95) 0%, rgba(5, 8, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 0.75rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  position: relative;
}

.provider-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 14px;
}

.provider-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.provider-name {
  display: none;
}

.provider-scroller {
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
}

.provider-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 3px;
  animation: providerScroll 20s linear infinite;
  will-change: transform;
}

@keyframes providerScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -50%, 0);
  }
}

.game-card {
  flex-shrink: 0;
  width: 100%;
  height: 192px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
  position: relative;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .hunts-hero-content {
    flex-direction: column;
  }

  .hunts-main {
    max-width: none;
  }

  .bonus-entry-section {
    flex-direction: column;
  }

  .bonus-entry-card {
    min-width: 0;
    width: 100%;
  }

  .bonus-fields {
    grid-template-columns: 1fr;
  }

  .bonuses-list-frame {
    height: 260px;
  }

  .provider-showcase-column {
    width: 100%;
  }

  .provider-showcase {
    flex: none;
    width: 100%;
    height: 432px;
    max-height: 432px;
    flex-direction: column;
  }

  .provider-showcase::before {
    display: block;
  }

  .provider-column {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .provider-scroller {
    flex: 1;
    overflow: hidden;
  }

  .provider-scroll-track {
    flex-direction: row;
    animation: providerScrollHorizontal 20s linear infinite;
  }

  @keyframes providerScrollHorizontal {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
  }

  .game-card {
    height: 160px;
    min-width: 80px;
    object-fit: cover;
  }
}

/* Hunt Stats Bar (matches hero nav width: Ripple Hunt to Log In) */
.hunt-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: 0.75rem 1rem;
  margin: 0 auto 1rem;
  padding: 1.25rem 2.5rem;
  max-width: 1200px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.btn-edit-hunt-stats {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-edit-hunt-stats:hover {
  color: var(--accent);
  border-color: var(--accent-dim);
}

#stat-card-highest-mult.hunt-stats-mega .stat-value {
  -webkit-text-stroke: 1px #a855f7;
  text-shadow: 0 0 6px rgba(168, 85, 247, 0.6), 0 0 12px rgba(168, 85, 247, 0.4);
}

/* Top 3 bonuses - right below stats, flush right */
.top-three-bonuses-wrap {
  display: flex;
  justify-content: flex-end;
  margin: 0 auto 1.5rem;
  max-width: 1200px;
  padding: 0 2.5rem;
}

.stat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
}

.modal-currency-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.modal-currency-row label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.currency-select-modal {
  padding: 0.4rem 0.6rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  min-width: 90px;
}

.currency-select-modal:focus {
  outline: none;
  border-color: var(--accent);
}

.stat-card.highlight {
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
}

.stat-card.stat-bonus-green {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.stat-card.stat-bonus-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(202, 138, 4, 0.3) 0%, rgba(234, 179, 8, 0.4) 50%, rgba(202, 138, 4, 0.3) 100%);
  border: 1px solid rgba(234, 179, 8, 0.6);
}

.stat-card.stat-bonus-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 75%
  );
  background-size: 200% 100%;
  animation: bonus-value-shimmer 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.stat-card.stat-bonus-gold .stat-label,
.stat-card.stat-bonus-gold .stat-value {
  position: relative;
  z-index: 1;
}

@keyframes bonus-value-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.stat-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat-value.positive { color: var(--success); }
.stat-value.negative { color: var(--danger); }

/* Start Hunt Bubble */
.bubble-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  background: var(--bg-card);
  border: 2px solid var(--accent-dim);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bubble-btn:hover {
  background: rgba(52, 211, 153, 0.2);
  border-color: var(--success);
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 8px 32px rgba(52, 211, 153, 0.35), 0 0 24px rgba(52, 211, 153, 0.2);
  color: #6ee7b7;
}

.bubble-icon {
  font-size: 1.75rem;
  line-height: 1;
}

/* Start Hunt phase: columns stretch so button aligns with bottom of hunt pic */
.hunts-hero-content:has(#phase-start:not(.hidden)) {
  align-items: stretch;
}

#phase-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.start-hunt-intro {
  margin-bottom: 0;
}

.start-hunt-headline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
  color: var(--text);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  font-family: 'Outfit', -apple-system, sans-serif;
}

/* Purple shimmer on headline (same purple as 1000x+ multiplier) */
.start-hunt-word {
  font-weight: 700;
  padding: 0 0.05em;
  display: inline;
  background: linear-gradient(
    90deg,
    #f1f5f9 0%,
    #f1f5f9 30%,
    #a855f7 38%,
    #c084fc 42%,
    #fff 45%,
    #c084fc 48%,
    #a855f7 52%,
    #f1f5f9 60%,
    #f1f5f9 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: huntPurpleShimmer 6s linear infinite;
}

@keyframes huntPurpleShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: 0% 0; }
}

.start-hunt-subline {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* Hunt page image box (above text on right side, flush with Login edge) */
#phase-start .hunt-page-image-box {
  margin-bottom: 0;
}

.hunt-page-image-box {
  flex: 0 0 auto;
  width: 100%;
  margin-bottom: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hunt-page-image-box:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(34, 211, 238, 0.15);
}

.hunt-page-image-box .hunt-page-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
  vertical-align: bottom;
}

/* Start Hunt button: in provider-showcase-column, full width below showcase */

/* Login Modal */
.modal.modal-login {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  background-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    rgba(0, 255, 200, 0.03) 0%,
    transparent 50%
  );
}

.modal-login:not(.hidden) .modal-login-content {
  animation: modalLoginEnter 0.18s cubic-bezier(0.33, 0, 0.2, 1) forwards;
}

@keyframes modalLoginEnter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-login .modal-login-content {
  position: relative;
  padding: 2.25rem 2rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  margin: 0 1rem;
  backdrop-filter: blur(14px);
  background: rgba(10, 20, 35, 0.85);
  border: 1px solid rgba(0, 255, 200, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(0, 255, 200, 0.05);
  background-image: radial-gradient(
    ellipse 70% 50% at 50% 0%,
    rgba(0, 255, 200, 0.04) 0%,
    transparent 55%
  );
}

.modal-login .modal-login-title {
  margin-bottom: 1.25rem;
  font-size: 1.45rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modal-login .modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.35rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  animation: modalCloseFadeIn 0.25s ease-out 0.12s both;
}

@keyframes modalCloseFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-login .modal-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 255, 200, 0.12);
  box-shadow: 0 0 12px rgba(0, 255, 200, 0.15);
}

.modal-login .auth-block {
  margin-bottom: 1.25rem;
}

.modal-login .auth-block:last-of-type {
  margin-bottom: 0;
}

.modal-login .auth-sublabel {
  font-size: 12px;
  line-height: 1.3;
  color: var(--text-muted);
  text-align: center;
  margin: 1.25rem 0 0;
  opacity: 0.65;
  font-weight: 400;
}

.modal-login .google-signin-wrapper {
  width: 100%;
  height: 40px;
  min-height: 40px;
  padding: 0 24px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.modal-login .google-signin-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.modal-login .google-signin-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 20px;
  width: 100%;
}

.modal-login .google-signin-btn > div {
  width: 100%;
}

.modal-login .google-signin-btn iframe {
  margin: 0 auto;
}

.modal-login .google-signin-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0 24px;
  background: #fff;
  border: none;
  border-radius: 12px;
  color: #1a1a1a;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-login .btn-kick-signin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 40px;
  min-height: 40px;
  padding: 0 24px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  animation: kickButtonPulse 0.6s cubic-bezier(0.33, 0, 0.2, 1) 0.2s both;
}

@keyframes kickButtonPulse {
  0% { opacity: 0.85; }
  100% { opacity: 1; }
}

.modal-login .btn-kick-signin .btn-kick-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

.modal-login .btn-kick-signin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 40%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.06) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.modal-login .btn-kick-signin:hover {
  background: rgba(34, 197, 94, 0.16);
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.modal-login .btn-kick-signin:hover::before {
  opacity: 1;
  animation: kickShimmer 1.2s ease-in-out;
}

@keyframes kickShimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

.btn-kick-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 6px;
}

.auth-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  padding: 0.75rem 1.25rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(0, 255, 200, 0.2);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.875rem;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: calc(100% - 2rem);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.auth-toast.auth-toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.modal-login .btn-kick-signin.btn-kick-signin-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.modal-login .auth-sublabel-warn {
  color: var(--text-muted);
  opacity: 0.8;
}

/* Nav user dropdown */
.nav-user {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-user.hidden {
  display: none !important;
}

/* User menu (logged-in: avatar + username + caret + dropdown), aligned right */
.user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-left: auto;
}

.user-menu-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.35rem 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.user-menu-toggle:hover {
  border-color: var(--accent-dim);
}

.user-menu .user-avatar-wrap {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  overflow: hidden;
}

.user-menu .user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.user-menu .user-avatar.user-avatar-fallback {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  flex-shrink: 0;
}

.user-menu .user-name {
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-menu .dropdown-arrow {
  font-size: 0.7rem;
  opacity: 0.8;
}

.user-menu .user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.35rem;
  min-width: 180px;
  max-width: 220px;
  border-radius: 12px;
}

.btn-user-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-user-toggle:hover {
  border-color: var(--accent-dim);
}

.nav-user .user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-user .user-name {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-user .dropdown-arrow {
  font-size: 0.7rem;
  opacity: 0.8;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.35rem;
  min-width: 160px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 200;
  overflow: hidden;
}

.user-dropdown.hidden {
  display: none !important;
}

.user-dropdown .dropdown-item {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.user-dropdown .dropdown-item:hover {
  background: var(--bg-card-hover);
}

.user-dropdown .dropdown-item-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: var(--text);
}

/* Profile dashboard */
.profile-dashboard {
  position: relative;
  z-index: 5;
  padding: 32px 24px 48px;
  min-height: 60vh;
}

.profile-dashboard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 320px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-glow) 0%, transparent 65%);
  opacity: 0.06;
  pointer-events: none;
}

.profile-dashboard-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  position: relative;
}

/* Hero / Identity */
.profile-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  margin-bottom: 32px;
  background: linear-gradient(165deg, var(--bg-card) 0%, rgba(8, 14, 24, 0.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: box-shadow 0.2s ease-out;
}

.profile-hero-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.profile-pfp-wrap {
  flex-shrink: 0;
}

.profile-pfp {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, var(--accent-dim) 0%, transparent 50%, var(--accent) 100%) border-box;
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.15),
    0 0 28px var(--accent-glow),
    inset 0 0 20px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease-out;
}

.profile-pfp-fallback {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 3rem;
  font-weight: 700;
  border: 2px solid rgba(34, 211, 238, 0.35);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.12),
    0 0 28px var(--accent-glow),
    inset 0 0 16px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s ease-out;
}

.profile-identity {
  min-width: 0;
}

.profile-display-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.profile-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 12px 0;
}

.profile-provider-id {
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: 6px;
}

.profile-badge.profile-badge-connected {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #6ee7b7;
  border: 1px solid rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
  transition: box-shadow 0.2s ease-out;
}

.profile-hero-right {
  flex-shrink: 0;
}

.profile-account-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.2);
}

.profile-account-badge-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.profile-account-badge-value {
  font-size: 0.8rem;
  color: var(--text);
  font-family: ui-monospace, monospace;
}

.profile-hero-right .profile-clear-stats-btn {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  background: var(--danger);
  border: 1px solid rgba(248, 113, 113, 0.5);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
}
.profile-hero-right .profile-clear-stats-btn:hover {
  background: #ef4444;
  border-color: rgba(239, 68, 68, 0.6);
}

.profile-clear-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.profile-clear-modal.hidden {
  display: none;
}
.profile-clear-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.profile-clear-modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 360px;
  width: 100%;
}
.profile-clear-modal-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.profile-clear-modal-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.profile-clear-modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.profile-clear-modal-btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.profile-clear-modal-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}
.profile-clear-modal-confirm {
  background: var(--danger);
  color: #fff;
  border-color: rgba(248, 113, 113, 0.5);
}
.profile-clear-modal-confirm:hover {
  background: #ef4444;
}

/* Stats bubbles */
.profile-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

/* Profile desktop: enforce row layout above 700px */
@media (min-width: 701px) {
  .profile-hero {
    flex-wrap: nowrap;
  }
  .profile-hero-left {
    flex-wrap: nowrap;
  }
}

.profile-stat-bubble {
  padding: 24px 16px;
  background: linear-gradient(165deg, rgba(34, 211, 238, 0.04) 0%, var(--bg-card) 50%);
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: transform 0.2s ease-out, border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.profile-stat-bubble:hover {
  transform: translateY(-3px);
  border-color: var(--accent-dim);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.profile-stat-icon {
  display: block;
  margin: 0 auto 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

.profile-stat-icon svg {
  display: block;
  margin: 0 auto;
}

.profile-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  transition: color 0.2s ease-out;
}

.profile-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-stats-helper {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 24px 0;
}

.profile-stat-value[data-empty="1"] {
  color: var(--text-muted);
}

/* Tabs */
.profile-tabs {
  display: flex;
  position: relative;
  gap: 4px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 32px;
  width: fit-content;
}

.profile-tab-slider {
  position: absolute;
  bottom: 6px;
  left: 6px;
  height: calc(100% - 12px);
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--accent-dim);
  box-shadow: 0 0 16px var(--accent-glow);
  pointer-events: none;
  transition: transform 0.22s ease-out, width 0.22s ease-out;
}

.profile-tab {
  position: relative;
  z-index: 1;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s ease-out;
}

.profile-tab:hover {
  color: var(--text);
}

.profile-tab.active {
  color: var(--text);
}

.profile-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Tab panels */
.profile-tab-panel {
  display: none;
}

.profile-tab-panel.active {
  display: block;
}

.profile-section {
  margin-bottom: 32px;
}

.profile-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px 0;
}

.profile-section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 16px 0;
}

/* Hunt cards (reuse Hunts page .hunt-result-item) */
.profile-hunt-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-hunt-cards-top {
  margin-bottom: 24px;
}

.profile-hunt-results-list {
  max-height: 400px;
  overflow-y: auto;
}

.profile-hunt-results-list::-webkit-scrollbar {
  width: 8px;
}

.profile-hunt-results-list::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.25);
  border-radius: 4px;
}

.hunt-card-empty .hunt-result-slot-name,
.hunt-card-empty .hunt-result-bubble {
  color: var(--text-muted);
}


.profile-ghost-thumb {
  background: repeating-linear-gradient(
    -45deg,
    rgba(148, 163, 184, 0.06),
    rgba(148, 163, 184, 0.06) 8px,
    rgba(148, 163, 184, 0.02) 8px,
    rgba(148, 163, 184, 0.02) 16px
  ) !important;
}

.profile-ghost-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 8px 0;
}

/* Empty state */
.profile-empty-state {
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(165deg, var(--bg-card) 0%, rgba(8, 14, 24, 0.98) 100%);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 0 24px var(--accent-glow);
  transition: box-shadow 0.2s ease-out;
}

.profile-empty-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 8px 0;
}

.profile-empty-microcopy {
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0.85;
  margin: 0 0 24px 0;
}

.profile-cta {
  display: inline-block;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  position: relative;
  overflow: hidden;
}

.profile-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.profile-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.profile-cta:hover::after {
  opacity: 1;
}

.profile-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Placeholder panels */
.profile-placeholder-panel {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.profile-placeholder-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 1rem 0;
}

.profile-placeholder-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Tools grid */
.profile-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.profile-tool-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  position: relative;
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.profile-tool-card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 0 16px var(--accent-glow);
}

.profile-tool-card:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.profile-tool-name {
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 0.5rem;
}

.profile-tool-badge {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Profile responsive: stack only under 700px */
@media (max-width: 700px) {
  .profile-dashboard {
    padding: 24px 16px 48px;
  }
  .profile-dashboard-inner {
    padding: 16px;
  }
  .profile-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .profile-hero-left {
    flex-direction: column;
    align-items: flex-start;
  }
  .profile-pfp,
  .profile-pfp-fallback {
    width: 110px;
    height: 110px;
    font-size: 2.5rem;
  }
  .profile-display-name {
    font-size: 1.5rem;
  }
  .profile-stats-row {
    grid-template-columns: 1fr;
  }
  .profile-stat-value {
    font-size: 1.75rem;
  }
  .profile-tabs {
    width: 100%;
    flex-wrap: wrap;
  }
  .profile-tab {
    flex: 1;
    min-width: 0;
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 400px;
}

.modal-content h3 {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.modal-content input {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
}

.modal-content input:focus {
  outline: none;
  border-color: var(--accent);
}

.modal-content input::placeholder {
  color: var(--text-muted);
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Phase Header */
.phase-header {
  margin-bottom: 1.75rem;
}

.phase-header h2 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.phase-hint {
  color: var(--text-muted);
  font-size: 0.9375rem;
  opacity: 0.85;
}

/* Top 3 + win-amount corner */
.win-amount-corner {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.bonuses-remaining {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
}

.bonuses-remaining.last-bonus {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid var(--accent-dim);
  box-shadow: 0 0 12px var(--accent-glow), 0 0 24px rgba(34, 211, 238, 0.25);
  color: var(--accent);
}

.next-bonus-preview {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--accent-dim);
}

/* Next Bonus button - solid with hover animation */
.btn-next-bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.4), rgba(34, 211, 238, 0.25));
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(8px);
}

.btn-next-bonus:hover {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.6), rgba(34, 211, 238, 0.4));
  transform: scale(1.05);
  box-shadow: 0 0 24px var(--accent-glow), 0 0 48px rgba(34, 211, 238, 0.3);
}

.btn-next-bonus:active {
  transform: scale(0.98);
}

/* Bonus Entry Section - New Bonus card + scrollable list side by side */
.bonus-entry-section {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
  width: 100%;
  overflow: visible;
}

/* Bonus Entry Card */
.bonus-entry-card {
  flex: 0 0 auto;
  min-width: 440px;
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  overflow: visible;
  position: relative;
}

/* Bonuses List Frame - fixed size, matches New Bonus card height */
.bonuses-list-frame {
  flex: 1;
  min-width: 200px;
  height: 260px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  background: linear-gradient(135deg, rgba(8, 12, 22, 0.95) 0%, rgba(5, 8, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 0.875rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.bonuses-list-scroller {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 0;
}

.bonuses-list-scroller:not(.bonuses-scrolling) {
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.3) rgba(0, 0, 0, 0.2);
}

.bonuses-list-scroller::-webkit-scrollbar {
  width: 6px;
}

.bonuses-list-scroller::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.bonuses-list-scroller::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.3);
  border-radius: 3px;
}

.bonuses-list-scroller::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.45);
}

.bonuses-list-track {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bonuses-list-scroller.bonuses-scrolling .bonuses-list-track {
  animation: bonusesScroll 18s linear infinite;
  will-change: transform;
}

@keyframes bonusesScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, -50%, 0); }
}

.bonus-entry-card h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.slot-search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.slot-search-input:focus {
  outline: none;
  border-color: var(--accent);
}

.slot-search-input::placeholder {
  color: var(--text-muted);
}

.slot-search-results {
  display: grid;
  grid-template-columns: repeat(3, 102px);
  gap: 0.35rem;
  max-height: 200px;
  overflow-y: auto;
  padding: 0.15rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.4) rgba(0, 0, 0, 0.2);
}

.slot-search-results::-webkit-scrollbar {
  width: 6px;
}

.slot-search-results::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.slot-search-results::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.4);
  border-radius: 3px;
}

.slot-search-results::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.6);
}

.slot-search-result {
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.slot-search-result:hover {
  border-color: var(--accent-dim);
}

.slot-search-result img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.slot-search-result span {
  display: block;
  font-size: 0.65rem;
  padding: 0.15rem 0.2rem;
  color: var(--text);
  text-align: center;
}

/* New Slot Search Dropdown UI */
.slot-search-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.slot-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(8, 12, 22, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 0.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.4) rgba(0, 0, 0, 0.2);
}

.slot-search-dropdown.hidden {
  display: none;
}

.slot-search-dropdown::-webkit-scrollbar {
  width: 8px;
}

.slot-search-dropdown::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.slot-search-dropdown::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.4);
  border-radius: 4px;
}

.slot-search-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.6);
}

.slot-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.slot-dropdown-item:last-child {
  border-bottom: none;
}

.slot-dropdown-item:hover {
  background: rgba(34, 211, 238, 0.1);
}

.slot-dropdown-item-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.3);
}

.slot-dropdown-item-info {
  flex: 1;
  min-width: 0;
}

.slot-dropdown-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-dropdown-item-provider {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Selected Slot Preview */
.selected-slot-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  position: relative;
}

.selected-slot-preview.hidden {
  display: none;
}

.selected-slot-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.selected-slot-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.selected-slot-provider {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-clear-selection {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(248, 113, 113, 0.2);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: var(--danger);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-clear-selection:hover {
  background: rgba(248, 113, 113, 0.3);
  border-color: var(--danger);
}

/* Bonus Entry Fields */
.bonus-entry-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.bonus-entry-fields.hidden {
  display: none;
}

.bonus-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bonus-field label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.bonus-field input {
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.bonus-field input:focus {
  outline: none;
  border-color: var(--accent);
}

.bonus-field input::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

.bonus-field input:invalid {
  border-color: rgba(248, 113, 113, 0.4);
}

.btn-add-bonus-entry {
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-add-bonus-entry:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-fields input {
  margin-bottom: 0;
}

.modal-slot-image {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.modal-slot-name {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.bonus-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bonus-fields input {
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
}

.bonus-fields input:focus {
  outline: none;
  border-color: var(--accent);
}

.bonus-fields input::placeholder {
  color: var(--text-muted);
}

/* Bonus Bubbles List */
.bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bonus-bubble {
  flex-shrink: 0;
  height: 58px;
  min-height: 58px;
  max-height: 58px;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 2.5rem 0.5rem 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.bonus-bubble-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.bonus-bubble-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.bonus-bubble-text {
  min-width: 0;
  flex: 1;
}

.bonus-bubble:hover {
  border-color: var(--accent-dim);
}

.bonus-bubble.editable .bonus-fields-row {
  display: grid;
}

.bonus-bubble .bonus-fields-row {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.bonus-bubble .bonus-fields-row input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.85rem;
}

.bonus-bubble .bonus-fields-row input:focus {
  outline: none;
  border-color: var(--accent);
}

.bonus-bubble .bonus-display {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bonus-bubble .slot-name-display {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.btn-edit-bonus,
.btn-remove-bonus {
  position: absolute;
  top: 0.5rem;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.btn-edit-bonus {
  right: 2rem;
  background: rgba(34, 211, 238, 0.2);
  color: var(--accent);
}

.btn-edit-bonus:hover {
  background: rgba(34, 211, 238, 0.35);
}

.btn-remove-bonus {
  right: 0.5rem;
  background: rgba(248, 113, 113, 0.2);
  color: var(--danger);
}

.btn-remove-bonus:hover {
  background: rgba(248, 113, 113, 0.4);
}

/* Hunt page gold shimmer (1000x+) */
.hunt-page-shimmer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(234, 179, 8, 0.5) 40%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(234, 179, 8, 0.5) 60%,
    transparent 75%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.1s;
}

.hunt-page-shimmer.shimmer-active {
  opacity: 1;
  animation: hunt-shimmer-sweep 1s ease-out forwards;
}

@keyframes hunt-shimmer-sweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Top 3 completed bonuses - high up near stats, flush right */
.top-three-bonuses {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0.75rem;
  min-height: 100px;
  flex-shrink: 0;
}

.top-three-bonuses .completed-bonus-bubble {
  flex: 0 0 auto;
}

.top-three-bonuses .completed-bonus-bubble.slot-2 {
  order: 1;
  margin-top: 24px;
}

.top-three-bonuses .completed-bonus-bubble.slot-1 {
  order: 2;
}

.top-three-bonuses .completed-bonus-bubble.slot-3 {
  order: 3;
  margin-top: 24px;
}

/* Phase 4 wrap */
.win-amount-phase-wrap {
  display: block;
}

/* Win Amount Current (Phase 4 - one bonus at a time) */
.win-amount-current {
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: stretch;
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.completed-bonus-bubble {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  border: 2px solid;
  min-width: 70px;
}

.completed-bonus-bubble.mult-bronze { border-color: #cd7f32; background: rgba(205, 127, 50, 0.25); }
.completed-bonus-bubble.mult-green { border-color: #22c55e; background: rgba(34, 197, 94, 0.25); }
.completed-bonus-bubble.mult-silver { border-color: #94a3b8; background: rgba(148, 163, 184, 0.25); }
.completed-bonus-bubble.mult-gold { border-color: #eab308; background: rgba(234, 179, 8, 0.25); }
.completed-bonus-bubble.mult-purple { border-color: #a855f7; background: rgba(168, 85, 247, 0.25); }

.completed-bonus-bubble img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.25rem;
}

.completed-bonus-bubble .completed-win-amount {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.win-amount-image-wrap {
  flex: 0 0 200px;
}

.win-amount-slot-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

.win-amount-input-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.win-amount-input-wrap .win-amount-slot-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.win-amount-input-wrap .win-amount-input {
  width: 100%;
  max-width: 200px;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
}

.win-amount-input-wrap .win-amount-input:focus {
  outline: none;
  border-color: var(--accent);
}

.win-amount-input-wrap .multiplier-display {
  font-weight: 600;
  color: var(--accent);
  font-size: 1.1rem;
}

/* Win Amount Input (Phase 4) - legacy rows */
.win-amount-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.win-amount-row label {
  flex: 1;
  min-width: 120px;
  font-size: 0.95rem;
}

.win-amount-row input {
  width: 140px;
  padding: 0.6rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
}

.win-amount-row input:focus {
  outline: none;
  border-color: var(--accent);
}

.multiplier-display {
  min-width: 80px;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

/* Phase Actions */
.phase-actions {
  margin-top: 2rem;
}

/* Complete Message */
.complete-message {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.complete-message h2 {
  margin-bottom: 0.75rem;
}

.complete-message p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hunt-results-list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-bottom: 2rem;
  max-height: 52vh;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.3) rgba(0, 0, 0, 0.2);
  padding-right: 0.5rem;
}

.hunt-results-list::-webkit-scrollbar {
  width: 6px;
}

.hunt-results-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.hunt-results-list::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.3);
  border-radius: 3px;
  transition: background 0.2s ease;
}

.hunt-results-list::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.45);
}

/* ==================== PREMIUM HUNT CARDS - REDESIGNED ==================== */
.hunt-result-item {
  /* Used for spacing/layout only - actual styling on .hunt-card */
}

.hunt-card {
  position: relative;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hunt-card:hover {
  transform: translateY(-4px);
  border-color: rgba(100, 116, 139, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 48px rgba(6, 182, 212, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Gold glow for high profit hunts */
.hunt-card-gold {
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 32px rgba(251, 191, 36, 0.15), inset 0 1px 0 rgba(251, 191, 36, 0.1);
}

.hunt-card-gold:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 56px rgba(251, 191, 36, 0.25), inset 0 1px 0 rgba(251, 191, 36, 0.15);
}

/* Image container */
.hunt-card-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.hunt-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.hunt-card:hover .hunt-card-image {
  transform: scale(1.03);
}

/* Subtle gradient overlay for text contrast */
.hunt-card-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  pointer-events: none;
}

/* Multiplier badge - floating on image */
.hunt-card-multi-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  background: rgba(6, 182, 212, 0.25);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #22d3ee;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.2);
  transition: all 0.2s ease;
  z-index: 10;
}

.hunt-card:hover .hunt-card-multi-badge {
  background: rgba(6, 182, 212, 0.35);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
  transform: translateY(-1px);
}

/* Stats container */
.hunt-card-stats {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Profit - primary focus */
.hunt-card-profit {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: all 0.2s ease;
}

.hunt-card-profit.profit-positive {
  color: #4ade80;
  text-shadow: 0 0 24px rgba(74, 222, 128, 0.3), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hunt-card-profit.profit-negative {
  color: #f87171;
  text-shadow: 0 0 24px rgba(248, 113, 113, 0.3), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hunt-card:hover .hunt-card-profit.profit-positive {
  text-shadow: 0 0 32px rgba(74, 222, 128, 0.4), 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hunt-card:hover .hunt-card-profit.profit-negative {
  text-shadow: 0 0 32px rgba(248, 113, 113, 0.4), 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Subtle shimmer animation on positive profit */
@keyframes shimmer {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.8; }
}

.hunt-card-profit.profit-positive {
  animation: shimmer 3s ease-in-out infinite;
}

/* Starting balance - small and muted */
.hunt-card-start {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.7);
  letter-spacing: 0.01em;
}

/* Empty card state */
.hunt-card-empty {
  opacity: 0.4;
  border: 1px dashed rgba(100, 116, 139, 0.2);
  background: rgba(15, 23, 42, 0.5);
}

.hunt-card-empty:hover {
  transform: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hunt-card-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.3) 0%, rgba(51, 65, 85, 0.3) 100%);
}

.hunt-card-empty-text {
  font-size: 0.875rem;
  color: rgba(148, 163, 184, 0.6);
  text-align: center;
}



.hunt-result-item.mult-bronze {
  border-color: rgba(205, 127, 50, 0.6);
  background: rgba(205, 127, 50, 0.12);
}

.hunt-result-item.mult-green {
  border-color: rgba(34, 197, 94, 0.6);
  background: rgba(34, 197, 94, 0.12);
}

.hunt-result-item.mult-silver {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(148, 163, 184, 0.12);
}

.hunt-result-item.mult-gold {
  border-color: rgba(234, 179, 8, 0.6);
  background: rgba(234, 179, 8, 0.12);
}

.hunt-result-item.mult-gold .hunt-result-bubble {
  border-color: #f59e0b;
  color: #fbbf24;
}

.hunt-result-item.mult-silver .hunt-result-bubble {
  border-color: #94a3b8;
  color: #cbd5e1;
}

.hunt-result-item.mult-green .hunt-result-bubble {
  border-color: #22c55e;
  color: #4ade80;
}

.hunt-result-item.mult-purple {
  border-color: rgba(168, 85, 247, 0.6);
  background: rgba(168, 85, 247, 0.12);
}

.hunt-result-item.mult-purple .hunt-result-bubble {
  border-color: #a855f7;
  color: #c084fc;
}

.hunt-result-item.mult-bronze .hunt-result-bubble {
  border-color: #b45309;
  color: #d97706;
}

/* ==================== PREMIUM TOOLKIT / PRICING PAGE ==================== */
.toolkit-page {
  padding: 2rem 0 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Premium Hero Section */
.toolkit-hero {
  position: relative;
  text-align: center;
  margin-bottom: 5rem;
  padding: 3rem 2rem;
}

.toolkit-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: heroGlowPulse 8s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.toolkit-hero-title {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(34, 211, 238, 0.2));
}

.toolkit-hero-subtitle {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  color: rgba(148, 163, 184, 0.85);
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

/* Premium Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}

.pricing-card {
  position: relative;
  background: linear-gradient(145deg, rgba(8, 12, 22, 0.7) 0%, rgba(15, 23, 42, 0.6) 100%);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(16px);
  transition: all 0.2s ease;
  animation: pricingFadeUp 0.6s ease-out both;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

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

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(34, 211, 238, 0.08);
  border-color: rgba(148, 163, 184, 0.25);
}

/* Creator Card (Most Popular) - Premium Highlight */
.pricing-card-popular {
  transform: scale(1.03);
  border-color: rgba(34, 211, 238, 0.3);
  background: linear-gradient(145deg, rgba(8, 12, 22, 0.85) 0%, rgba(15, 30, 50, 0.7) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 32px rgba(34, 211, 238, 0.15);
}

.pricing-card-popular:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45), 0 0 48px rgba(34, 211, 238, 0.2);
  border-color: rgba(34, 211, 238, 0.4);
}

/* Pro Card - Subtle Gold Accent */
.pricing-card-pro {
  border-color: rgba(251, 191, 36, 0.15);
}

.pricing-card-pro:hover {
  border-color: rgba(251, 191, 36, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(251, 191, 36, 0.08);
}

/* Premium Badge Redesign */
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.25) 0%, rgba(6, 182, 212, 0.25) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(34, 211, 238, 0.4);
  color: #22d3ee;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.45rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(34, 211, 238, 0.2);
}

/* Card Header */
.pricing-card-header {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.pricing-tier-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pricing-currency {
  font-size: 1.5rem;
  opacity: 0.75;
  font-weight: 600;
}

.pricing-period {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Clean Feature Lists */
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-group-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(148, 163, 184, 0.5);
  margin: 0.5rem 0 0.25rem 0;
  padding: 0;
}

.feature-included {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  font-size: 0.9375rem;
  color: rgba(241, 245, 249, 0.85);
  background: rgba(34, 211, 238, 0.04);
  border: 1px solid rgba(34, 211, 238, 0.1);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.feature-included:hover {
  background: rgba(34, 211, 238, 0.08);
  border-color: rgba(34, 211, 238, 0.2);
}

.feature-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #22d3ee;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Premium CTA Buttons */
.pricing-cta {
  position: relative;
  width: 100%;
  padding: 1rem 1.75rem;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
}

.pricing-cta-text {
  position: relative;
  z-index: 2;
  color: var(--text);
  transition: color 0.2s ease;
}

.pricing-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, #34d399 0%, #22d3ee 100%);
  transition: width 0.3s ease;
  z-index: 1;
}

.pricing-cta:hover {
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.2);
}

.pricing-cta:hover .pricing-cta-text {
  color: #0f172a;
}

.pricing-cta:hover::before {
  width: 100%;
}

/* Primary CTA (Creator) */
.pricing-cta-primary {
  background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(34, 211, 238, 0.25);
}

.pricing-cta-primary .pricing-cta-text {
  color: #0f172a;
  font-weight: 700;
}

.pricing-cta-primary::before {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.pricing-cta-primary:hover {
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.35);
}

/* Trust Signals Section */
.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 5rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(148, 163, 184, 0.7);
  font-weight: 500;
}

.trust-icon {
  flex-shrink: 0;
  color: rgba(34, 211, 238, 0.6);
  opacity: 0.8;
}

/* Feature Details - Refined */
.feature-details {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.feature-details-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.feature-details-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.feature-details-subtitle {
  font-size: 1rem;
  color: rgba(148, 163, 184, 0.7);
  font-weight: 500;
}

.feature-tabs-wrapper {
  background: linear-gradient(145deg, rgba(8, 12, 22, 0.4) 0%, rgba(15, 23, 42, 0.3) 100%);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  padding: 0.75rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-tab {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: rgba(148, 163, 184, 0.7);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}

.feature-tab:hover {
  background: rgba(34, 211, 238, 0.08);
  color: var(--text);
}

.feature-tab.active {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
  font-weight: 600;
}

.feature-panels {
  position: relative;
}

.feature-panel {
  display: none;
  animation: panelFadeIn 0.35s ease;
}

.feature-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.feature-panel-inner {
  background: linear-gradient(145deg, rgba(8, 12, 22, 0.5) 0%, rgba(15, 23, 42, 0.4) 100%);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2.75rem;
  backdrop-filter: blur(12px);
}

.feature-panel h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  color: var(--text);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  letter-spacing: -0.01em;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(241, 245, 249, 0.75);
  line-height: 1.5;
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: rgba(34, 211, 238, 0.6);
  border-radius: 50%;
}

/* Responsible Gambling Disclaimer */
.pricing-disclaimer {
  max-width: 700px;
  margin: 5rem auto 0;
  padding: 2rem;
  text-align: center;
}

.pricing-disclaimer p {
  font-size: 0.875rem;
  color: rgba(148, 163, 184, 0.5);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-cards {
    gap: 1.5rem;
  }

  .pricing-card-popular {
    transform: scale(1.02);
  }

  .pricing-card-popular:hover {
    transform: scale(1.02) translateY(-6px);
  }
}

@media (max-width: 900px) {
  .toolkit-hero-title {
    font-size: 2.25rem;
  }

  .toolkit-hero-subtitle {
    font-size: 1.125rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pricing-card-popular {
    transform: scale(1);
  }

  .pricing-card-popular:hover {
    transform: translateY(-6px);
  }

  .pricing-trust {
    flex-direction: column;
    gap: 1.5rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .toolkit-page {
    padding: 1rem 0 4rem;
  }

  .toolkit-hero {
    padding: 2rem 1rem;
    margin-bottom: 3rem;
  }

  .toolkit-hero-title {
    font-size: 1.875rem;
  }

  .toolkit-hero-subtitle {
    font-size: 1rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .feature-details {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .feature-panel-inner {
    padding: 2rem 1.5rem;
  }

  .feature-tabs {
    flex-direction: column;
  }

  .feature-tab {
    width: 100%;
    text-align: center;
  }
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .toolkit-hero-glow {
    animation: none;
  }

  .pricing-card,
  .feature-panel {
    animation: none;
  }

  .pricing-card:hover {
    transform: none;
  }

  .pricing-cta:hover {
    transform: none;
  }
}

/* About Page */
.about-page {
  padding: 2rem 0 4rem;
  max-width: 720px;
  margin: 0 auto;
}

.about-header {
  margin-bottom: 2.5rem;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
}

.about-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.about-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.about-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.about-intro,
.about-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1rem;
  text-wrap: pretty;
}

.about-intro:last-child,
.about-body:last-child {
  margin-bottom: 0;
}

.about-intro {
  color: var(--text);
}

.about-signoff {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0;
}

/* ==================== PREMIUM INFO PAGE - SAAS DESIGN ==================== */
.info-page {
  padding: 4rem 0 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.info-hero {
  position: relative;
  text-align: center;
  margin-bottom: 8rem;
  padding: 0 1.5rem;
}

.info-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: infoHeroGlow 8s ease-in-out infinite;
}

@keyframes infoHeroGlow {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

.info-hero-title {
  position: relative;
  z-index: 1;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(34, 211, 238, 0.2));
}

.info-hero-subtitle {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  color: rgba(148, 163, 184, 0.85);
  font-weight: 500;
  margin: 0 0 2.5rem 0;
  line-height: 1.6;
}

.info-hero-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
  border: none;
  border-radius: 12px;
  color: #0f172a;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(34, 211, 238, 0.3);
}

.info-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.4);
}

/* ==================== FEATURE ROWS - ALTERNATING 2-COLUMN LAYOUT ==================== */
.info-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 10rem;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.info-feature-row:last-of-type {
  margin-bottom: 8rem;
}

/* Reverse layout for alternating sections */
.info-feature-row-reverse {
  direction: rtl;
}

.info-feature-row-reverse > * {
  direction: ltr;
}

/* Media Container - Larger Cards */
.info-feature-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-media {
  width: 100%;
  max-width: 580px;
  height: 400px;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.15);
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(8, 12, 22, 0.9) 0%,
    rgba(15, 23, 42, 0.85) 50%,
    rgba(8, 12, 22, 0.9) 100%
  );
  backdrop-filter: blur(12px);
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(34, 211, 238, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

/* Radial Vignette Overlay */
.info-media::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.info-media:hover {
  border-color: rgba(148, 163, 184, 0.25);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 48px rgba(34, 211, 238, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Support for background-image */
.info-media[style*="background-image"] {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Support for <img> inside - Display full image without cropping */
.info-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 0;
  border-radius: calc(var(--radius) - 4px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

/* Text Block */
.info-feature-text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 520px;
}

.info-feature-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.info-feature-description {
  font-size: 1.125rem;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
}

.info-feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-feature-bullets li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.0625rem;
  color: rgba(241, 245, 249, 0.85);
  line-height: 1.6;
}

.info-feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: rgba(34, 211, 238, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.4);
}

/* Section Separator */
.info-feature-row + .info-feature-row::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(148, 163, 184, 0.15) 20%, rgba(148, 163, 184, 0.15) 80%, transparent 100%);
  max-width: 1200px;
  margin: 0 auto;
}

.info-feature-row {
  position: relative;
}

/* Transparency Section */
.info-transparency {
  margin: 10rem 0 6rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(8, 12, 22, 0.4) 0%, rgba(15, 23, 42, 0.3) 100%);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.info-transparency-content {
  text-align: center;
}

.info-transparency-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.info-transparency-text {
  font-size: 1.0625rem;
  color: rgba(148, 163, 184, 0.85);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

/* Responsible Play */
.info-responsible {
  margin-top: 8rem;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.info-responsible-card {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(8, 12, 22, 0.5) 0%, rgba(15, 23, 42, 0.4) 100%);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 16px;
  padding: 2rem 2rem;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  text-align: left;
}

.info-responsible-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.8;
}

.info-responsible-content {
  flex: 1;
}

.info-responsible-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

.info-responsible-text {
  font-size: 0.9375rem;
  color: rgba(148, 163, 184, 0.75);
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.info-responsible-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(34, 211, 238, 0.85);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-responsible-link:hover {
  color: var(--accent);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .info-feature-row {
    gap: 3rem;
  }

  .info-media {
    max-width: 520px;
    height: 360px;
    padding: 10px;
  }
}

@media (max-width: 900px) {
  .info-page {
    padding: 3rem 0 5rem;
  }

  .info-hero {
    margin-bottom: 6rem;
  }

  .info-hero-title {
    font-size: 2.5rem;
  }

  .info-hero-subtitle {
    font-size: 1.125rem;
  }

  .info-feature-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 8rem;
    text-align: center;
  }

  .info-feature-row-reverse {
    direction: ltr;
  }

  .info-feature-text {
    max-width: 100%;
    text-align: left;
  }

  .info-feature-title {
    font-size: 2rem;
    text-align: center;
  }

  .info-feature-description {
    font-size: 1rem;
    text-align: center;
  }

  .info-feature-bullets {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
  }

  .info-feature-row + .info-feature-row::before {
    top: -4rem;
  }

  .info-transparency {
    margin: 8rem 0 4rem;
    padding: 3rem 1.5rem;
  }

  .info-transparency-title {
    font-size: 1.75rem;
  }

  .info-responsible-card {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .info-page {
    padding: 2rem 0 4rem;
  }

  .info-hero {
    margin-bottom: 4rem;
    padding: 0 1rem;
  }

  .info-hero-title {
    font-size: 2rem;
  }

  .info-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .info-hero-cta {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .info-feature-row {
    margin-bottom: 6rem;
    padding: 0 1rem;
    gap: 2.5rem;
  }

  .info-feature-title {
    font-size: 1.75rem;
  }

  .info-feature-description {
    font-size: 0.9375rem;
  }

  .info-feature-bullets li {
    font-size: 1rem;
  }

  .info-media {
    max-width: 100%;
    height: auto;
    min-height: 280px;
    padding: 10px;
  }

  .info-feature-row + .info-feature-row::before {
    top: -3rem;
  }

  .info-transparency {
    margin: 6rem 0 3rem;
    padding: 2rem 1.25rem;
  }

  .info-transparency-title {
    font-size: 1.5rem;
  }

  .info-transparency-text {
    font-size: 1rem;
  }

  .info-responsible {
    margin-top: 4rem;
  }
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .info-hero-glow {
    animation: none;
  }
}

/* Clubs Page */
.clubs-page {
  padding: 2rem 0 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.clubs-header {
  margin-bottom: 0.5rem;
  text-align: center;
}

.clubs-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.clubs-subtitle {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0.75rem auto 0;
  opacity: 0.8;
  max-width: 600px;
  text-align: center;
}

/* Clubs Tabs */
.clubs-tabs {
  display: flex;
  gap: 0.75rem;
  margin: 2.5rem 0 2rem;
  flex-wrap: wrap;
}

.clubs-tab {
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.clubs-tab:hover {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
  background: rgba(8, 12, 22, 0.95);
}

.clubs-tab.active {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(34, 211, 238, 0.08));
  border-color: rgba(34, 211, 238, 0.3);
  color: var(--accent);
  font-weight: 600;
}

/* Tab Panels */
.clubs-tab-content {
  position: relative;
}

.clubs-panel {
  display: none;
}

.clubs-panel.active {
  display: block;
}

.clubs-load-error {
  color: var(--danger);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: 10px;
}

.clubs-loading {
  font-size: 1rem;
  color: var(--text-muted);
  padding: 2rem;
  text-align: center;
}

/* Clubs Grid */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Club Card */
.club-card {
  background: linear-gradient(135deg, rgba(8, 12, 22, 0.95) 0%, rgba(5, 8, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: all 0.25s ease;
  min-height: 280px;
}

.club-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Club Card Header */
.club-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Club logo badge: premium layered (glow + gradient body + glass sheen).
 * Expected inline CSS variables when theme_color is set (from Clubs page JS):
 *   --club-theme-hex: #RRGGBB
 *   --club-gradient: linear-gradient(135deg, ...)
 * Fallback: default teal gradient and hex when not set. */
.club-logo {
  --club-gradient: linear-gradient(135deg, rgba(34, 211, 238, 0.22) 0%, rgba(34, 211, 238, 0.12) 50%, rgba(6, 182, 212, 0.08) 100%);
  --club-theme-hex: #22d3ee;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  position: relative;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  overflow: visible;
  background:
    radial-gradient(ellipse 75% 75% at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.35) 100%),
    var(--club-gradient);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.club-logo::before {
  content: '';
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: 18px;
  background: var(--club-gradient);
  filter: blur(10px);
  opacity: 0.4;
  pointer-events: none;
}

.club-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.club-logo > .club-logo-img,
.club-logo > .club-logo-initials {
  position: relative;
  z-index: 1;
}

.club-logo:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 6px 20px -4px rgba(34, 211, 238, 0.22);
}

.club-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.club-logo-initials {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.club-logo[style*="--club-gradient"] .club-logo-initials,
.club-logo[style*="--club-theme-hex"] .club-logo-initials {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.club-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.club-info-name-row {
  align-items: flex-start;
  justify-content: space-between;
}

.club-pill-wrap {
  flex-shrink: 0;
  margin-left: auto;
}

.club-pill {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
}

.club-pill-full {
  background: rgba(248, 113, 113, 0.25);
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.4);
  box-shadow: 0 0 12px rgba(248, 113, 113, 0.15);
}

.club-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}

.club-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Club Description */
.club-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  opacity: 0.85;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Card footer: creator at bottom */
.club-card-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.club-creator {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.85;
}

/* Club Stats */
.club-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.club-stat {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Club View Button */
.club-view-btn {
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 10px;
  color: var(--accent);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  margin-top: auto;
}

.club-view-btn:hover {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(34, 211, 238, 0.08);
  transform: translateY(-1px);
}

.club-joined-btn {
  padding: 0.75rem 1.25rem;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 10px;
  color: #22c55e;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: default;
  font-family: inherit;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.club-visit-btn {
  text-decoration: none;
  margin-top: auto;
}

/* Ranked Club Cards */
.club-card-ranked {
  position: relative;
  overflow: hidden;
}

.club-rank-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  border-bottom-left-radius: 12px;
}

.club-rank-gold {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(234, 179, 8, 0.1) 100%);
  color: #eab308;
  border-left: 1px solid rgba(234, 179, 8, 0.3);
  border-bottom: 1px solid rgba(234, 179, 8, 0.3);
}

.club-rank-silver {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.2) 0%, rgba(148, 163, 184, 0.1) 100%);
  color: #cbd5e1;
  border-left: 1px solid rgba(148, 163, 184, 0.3);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.club-rank-bronze {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.2) 0%, rgba(205, 127, 50, 0.1) 100%);
  color: #d97706;
  border-left: 1px solid rgba(205, 127, 50, 0.3);
  border-bottom: 1px solid rgba(205, 127, 50, 0.3);
}

/* Empty State */
.clubs-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(8, 12, 22, 0.95) 0%, rgba(5, 8, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.clubs-empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.clubs-empty-text {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0 0 2rem 0;
  line-height: 1.6;
  opacity: 0.85;
}

.clubs-empty-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.clubs-empty-btn {
  padding: 0.875rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.clubs-empty-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.clubs-empty-btn-primary {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(34, 211, 238, 0.08));
  border-color: rgba(34, 211, 238, 0.3);
  color: var(--accent);
}

.clubs-empty-btn-primary:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.1));
}

/* Create Club CTA */
.clubs-cta-card {
  background: linear-gradient(135deg, rgba(8, 12, 22, 0.95) 0%, rgba(5, 8, 16, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
}

.clubs-cta-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.clubs-cta-text {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0 0 2rem 0;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.clubs-cta-btn {
  padding: 1rem 2.25rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 12px;
  color: var(--accent);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.clubs-cta-btn:hover {
  border-color: rgba(34, 211, 238, 0.5);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.15);
}

/* Responsive */
@media (max-width: 1100px) {
  .clubs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 700px) {
  .clubs-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .clubs-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .clubs-tab {
    width: 100%;
    text-align: center;
  }

  .club-card {
    min-height: auto;
  }

  .clubs-empty-state {
    padding: 3rem 1.5rem;
  }

  .clubs-empty-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .clubs-empty-btn {
    width: 100%;
  }

  .clubs-cta-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 700px) {
  .feature-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-list li {
    border-bottom: 1px solid rgba(148, 163, 184, 0.06);
  }

  .feature-list li:last-child {
    border-bottom: none;
  }

  .feature-panel-inner {
    padding: 1.5rem 1.75rem;
  }

  .feature-tabs {
    flex-direction: column;
  }

  .feature-tab {
    text-align: left;
    width: 100%;
  }
}

/* ========================================
   Hunts Page Premium UI - Glassmorphism Style
   ======================================== */

/* Section Header with Status Pill */
.hunts-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
}

.hunts-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.hunts-section-icon {
  color: var(--accent);
  opacity: 0.9;
}

.hunts-status-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.1);
}

.hunts-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0);
  }
}

/* Premium Card Enhancements */
.bonus-entry-card {
  position: relative;
  background: linear-gradient(135deg, rgba(8, 12, 22, 0.95), rgba(12, 18, 30, 0.9)) !important;
  border: 1px solid rgba(148, 163, 184, 0.2) !important;
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(34, 211, 238, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-entry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: radial-gradient(ellipse at top, rgba(34, 211, 238, 0.08), transparent);
  pointer-events: none;
  border-radius: var(--radius) var(--radius) 0 0;
}

.bonus-entry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.3) !important;
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(34, 211, 238, 0.2),
    0 0 24px rgba(34, 211, 238, 0.15);
}

/* Card Header */
.bonus-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bonus-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 10px;
  color: var(--accent);
}

.bonus-card-title-group {
  flex: 1;
}

.bonus-card-title-group h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.bonus-card-helper {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Premium Search Input */
.slot-search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.slot-search-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
  transition: color 0.3s ease;
}

.slot-search-wrapper .slot-search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem !important;
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(148, 163, 184, 0.2) !important;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.3),
    0 0 0 0 rgba(34, 211, 238, 0);
}

.slot-search-wrapper .slot-search-input:focus {
  outline: none;
  border-color: var(--accent) !important;
  background: rgba(0, 0, 0, 0.6) !important;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(34, 211, 238, 0.15),
    0 0 20px rgba(34, 211, 238, 0.2);
  animation: inputGlow 2s ease-in-out infinite;
}

.slot-search-input-wrapper:focus-within .slot-search-icon {
  color: var(--accent);
}

@keyframes inputGlow {
  0%, 100% {
    box-shadow: 
      inset 0 2px 4px rgba(0, 0, 0, 0.4),
      0 0 0 3px rgba(34, 211, 238, 0.15),
      0 0 20px rgba(34, 211, 238, 0.2);
  }
  50% {
    box-shadow: 
      inset 0 2px 4px rgba(0, 0, 0, 0.4),
      0 0 0 3px rgba(34, 211, 238, 0.2),
      0 0 24px rgba(34, 211, 238, 0.3);
  }
}

.slot-search-wrapper .slot-search-input::placeholder {
  color: rgba(148, 163, 184, 0.5);
}

/* Provider Filter Chips */
.provider-chips {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.provider-chip {
  padding: 0.4rem 0.875rem;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: not-allowed;
  transition: all 0.2s ease;
  opacity: 0.6;
}

.provider-chip:not(:disabled) {
  cursor: pointer;
  opacity: 1;
}

.provider-chip:not(:disabled):hover {
  background: rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.3);
  color: var(--accent);
}

/* Bonus Queue Card */
.bonus-queue-card {
  flex: 1;
  min-width: 200px;
  position: relative;
  background: linear-gradient(135deg, rgba(8, 12, 22, 0.95), rgba(12, 18, 30, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(34, 211, 238, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-queue-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(ellipse at top right, rgba(34, 211, 238, 0.08), transparent);
  pointer-events: none;
  border-radius: 0 var(--radius) 0 0;
}

.bonus-queue-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(34, 211, 238, 0.2),
    0 0 24px rgba(34, 211, 238, 0.15);
}

.bonus-queue-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bonus-queue-icon {
  color: var(--accent);
  opacity: 0.8;
}

.bonus-queue-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

/* Bonus Queue Empty State */
.bonus-queue-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  text-align: center;
  padding: 2rem;
}

.bonus-queue-empty-icon {
  color: rgba(148, 163, 184, 0.3);
  margin-bottom: 1rem;
  animation: emptyStateFade 3s ease-in-out infinite;
}

@keyframes emptyStateFade {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}

.bonus-queue-empty-text {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.bonus-queue-empty-hint {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.6);
}

/* Hide empty state when bonuses exist */
.bonuses-list:not(:empty) ~ .bonus-queue-empty {
  display: none;
}

/* Premium Action Buttons */
.phase-actions-premium {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

/* Gradient Primary Button */
.btn-gradient-primary {
  position: relative;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.9), rgba(6, 182, 212, 0.9)) !important;
  border: 1px solid rgba(34, 211, 238, 0.5) !important;
  color: #050810 !important;
  font-weight: 600;
  padding: 1rem 2.5rem;
  overflow: hidden;
  box-shadow: 
    0 4px 16px rgba(34, 211, 238, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gradient-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-gradient-primary:hover::before {
  left: 100%;
}

.btn-gradient-primary:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(34, 211, 238, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(34, 211, 238, 0.7) !important;
}

.btn-gradient-primary:not(:disabled):active {
  transform: translateY(0);
  box-shadow: 
    0 2px 8px rgba(34, 211, 238, 0.3),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-gradient-primary:disabled {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.2), rgba(148, 163, 184, 0.1)) !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  color: rgba(148, 163, 184, 0.5) !important;
  box-shadow: none;
  cursor: not-allowed;
}

.btn-shimmer {
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  pointer-events: none;
}

.btn-gradient-primary:not(:disabled):hover .btn-shimmer {
  animation: shimmer 1.5s ease-in-out infinite;
}

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

/* Ghost Button */
.btn-ghost {
  position: relative;
  background: transparent !important;
  border: 1px solid rgba(148, 163, 184, 0.3) !important;
  color: var(--text-muted) !important;
  font-weight: 500;
  padding: 1rem 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-ghost:not(:disabled):hover {
  background: rgba(148, 163, 184, 0.1) !important;
  border-color: rgba(148, 163, 184, 0.4) !important;
  color: var(--text) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-ghost:not(:disabled):active {
  transform: translateY(0);
  background: rgba(148, 163, 184, 0.15) !important;
}

.btn-ghost:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-text {
  position: relative;
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hunts-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .phase-actions-premium {
    flex-direction: column;
    width: 100%;
  }
  
  .phase-actions-premium button {
    width: 100%;
  }
  
  .provider-chips {
    justify-content: flex-start;
  }
}
