/* === ShadowBet Theme === */
:root {
  --ghost-purple: #6E44FF;
  --phantom-black: #0B0B0F;
  --sky-blue: #4CC9F0;
  --smoke-gray: #2A2A35;
  --white-glow: #EAEAFF;
  --card-bg: rgba(42, 42, 53, 0.5);
  --border-subtle: rgba(110, 68, 255, 0.15);
  --purple-glow: 0 0 60px rgba(110, 68, 255, 0.3);
  --blue-glow: 0 0 40px rgba(76, 201, 240, 0.2);
}

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

body {
  background: var(--phantom-black);
  color: var(--white-glow);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  line-height: 1.75;
}

/* Page width constraint — applied via container class on section wrappers */
.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 48px;
}

h1, h2, h3, .hero-badge, .section-label {
  font-family: 'Syne', sans-serif;
}

.text-gradient {
  background: linear-gradient(135deg, var(--ghost-purple), var(--sky-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 68, 255, 0.15) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-glow--blue {
  background: radial-gradient(circle, rgba(76, 201, 240, 0.1) 0%, transparent 70%);
  top: auto;
  left: auto;
  bottom: -200px;
  right: -200px;
}

.hero-content {
  max-width: 560px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(110, 68, 255, 0.15);
  border: 1px solid rgba(110, 68, 255, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ghost-purple);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(234, 234, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky-blue);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(234, 234, 255, 0.45);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* Hero Visual - Mock Card */
.hero-visual { z-index: 1; }
.mock-card {
  width: 300px;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--purple-glow);
}

.mock-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff4444;
  margin-bottom: 16px;
}

.mock-live-dot {
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.mock-matchup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.mock-team {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.mock-vs {
  font-size: 0.75rem;
  color: rgba(234, 234, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mock-odds {
  display: flex;
  gap: 8px;
}

.mock-odd {
  flex: 1;
  background: rgba(110, 68, 255, 0.08);
  border: 1px solid rgba(110, 68, 255, 0.12);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(234, 234, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-odd--highlight {
  background: rgba(110, 68, 255, 0.2);
  border-color: rgba(110, 68, 255, 0.4);
}

.odd-value {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white-glow);
}

/* === TICKER === */
.ticker-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(42, 42, 53, 0.3);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 24px;
  animation: ticker-scroll 20s linear infinite;
}

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

.ticker-item {
  font-size: 0.85rem;
  color: rgba(234, 234, 255, 0.5);
  letter-spacing: 0.5px;
}

.ticker-highlight {
  color: var(--sky-blue);
  font-weight: 600;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--ghost-purple);
  border-radius: 50%;
  align-self: center;
}

/* === FEATURES === */
.features {
  padding: 140px 48px;
}

.features-container {
  /* inherits .container max-width (1050px) + horizontal padding */
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ghost-purple);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 60px;
  max-width: 600px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: rgba(110, 68, 255, 0.35);
  box-shadow: var(--purple-glow);
}

.feature-card--large {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(110, 68, 255, 0.08) 0%, rgba(76, 201, 240, 0.05) 100%);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(234, 234, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === SHADOWPICKS === */
.shadowpicks {
  padding: 140px 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(110, 68, 255, 0.03) 50%, transparent 100%);
}

.shadowpicks-container {
  /* inherits .container max-width (1050px) + horizontal padding */
  display: flex;
  align-items: center;
  gap: 80px;
}

.shadowpicks-content { flex: 1; }

.shadowpicks-desc {
  font-size: 1.1rem;
  color: rgba(234, 234, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

.picks-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pick-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pick-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pick-feature strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.pick-feature p {
  color: rgba(234, 234, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ShadowPicks Visual */
.shadowpicks-visual { flex-shrink: 0; }

.pick-card {
  width: 320px;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--blue-glow);
}

.pick-card-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pick-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--ghost-purple), var(--sky-blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.pick-username {
  font-weight: 600;
  font-size: 0.95rem;
}

.pick-record {
  font-size: 0.78rem;
  color: #4ade80;
}

.pick-card-bet {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(110, 68, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.pick-card-odds {
  color: var(--sky-blue);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

.pick-card-actions {
  display: flex;
  gap: 8px;
}

.pick-action {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(110, 68, 255, 0.12);
  border: 1px solid rgba(110, 68, 255, 0.2);
  color: var(--white-glow);
}

.pick-action--blue {
  background: rgba(76, 201, 240, 0.12);
  border-color: rgba(76, 201, 240, 0.25);
  color: var(--sky-blue);
}

/* === ECONOMY === */
.economy {
  padding: 140px 48px;
}

.economy-container {
  /* inherits .container max-width (1050px) + horizontal padding */
  text-align: center;
}

.economy-desc {
  font-size: 1.1rem;
  color: rgba(234, 234, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.coin-tiers {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.coin-tier {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px 40px;
  min-width: 160px;
}

.coin-tier--glow {
  border-color: rgba(110, 68, 255, 0.4);
  box-shadow: var(--purple-glow);
  background: linear-gradient(135deg, rgba(110, 68, 255, 0.12) 0%, rgba(76, 201, 240, 0.06) 100%);
}

.coin-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky-blue);
  margin-bottom: 6px;
}

.coin-label {
  font-size: 0.8rem;
  color: rgba(234, 234, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.economy-disclaimer {
  font-size: 0.78rem;
  color: rgba(234, 234, 255, 0.3);
  font-style: italic;
}

/* === CLOSING === */
.closing {
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-container {
  /* inherits .container max-width (1050px) + horizontal padding */
  position: relative;
  z-index: 1;
}

.closing-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 68, 255, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.1rem;
  color: rgba(234, 234, 255, 0.55);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-container {
  /* inherits .container max-width (1050px) + horizontal padding */
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--ghost-purple), var(--sky-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(234, 234, 255, 0.3);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(234, 234, 255, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 24px;
    gap: 40px;
  }

  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .mock-card { width: 280px; }

  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }

  .shadowpicks { padding: 80px 24px; }
  .shadowpicks-container {
    flex-direction: column;
    gap: 40px;
  }
  .pick-card { width: 100%; max-width: 340px; }

  .economy { padding: 80px 24px; }
  .coin-tiers {
    flex-direction: column;
    align-items: center;
  }
  .coin-tier { width: 100%; max-width: 260px; }

  .closing { padding: 80px 24px; }
  .footer { padding: 30px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.6rem; }
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 1.5rem; }
  .feature-card { padding: 24px; }
}