/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: hsl(230 25% 7%);
  --fg: hsl(45 20% 95%);
  --card: hsl(230 20% 12%);
  --card-fg: hsl(45 20% 95%);
  --primary: hsl(42 92% 56%);
  --primary-fg: hsl(230 25% 7%);
  --secondary: hsl(230 20% 18%);
  --secondary-fg: hsl(45 20% 95%);
  --muted: hsl(230 15% 20%);
  --muted-fg: hsl(230 10% 55%);
  --accent: hsl(25 95% 53%);
  --border: hsl(230 15% 22%);
  --emerald: hsl(160 84% 39%);
  --radius: 0.75rem;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ===== Utilities ===== */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 48rem; }
.z-up { position: relative; z-index: 1; }
.hidden { display: none !important; }

.text-gradient-gold {
  background: linear-gradient(135deg, hsl(42 92% 56%), hsl(25 95% 63%));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gold { color: var(--primary); font-weight: 600; }

.radial-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, hsl(42 92% 56% / 0.08) 0%, transparent 70%);
}
.SCXW229083124 {
	margin: 100px auto;
	max-width: 900px;
}
/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  background: var(--primary); color: var(--primary-fg);
  font-family: 'Space Grotesk', system-ui, sans-serif; font-weight: 700;
  transition: filter 0.2s;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: hsl(230 20% 18% / 0.5);
  color: var(--fg); font-family: 'Space Grotesk', system-ui, sans-serif; font-weight: 600;
  transition: background 0.2s;
}
.btn-secondary:hover { background: var(--secondary); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-block { width: 100%; text-align: center; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px -5px hsl(42 92% 56% / 0.4); }
  50% { box-shadow: 0 0 40px -5px hsl(42 92% 56% / 0.7); }
}
.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsl(230 25% 7% / 0.8); backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(230 15% 22% / 0.5);
}
.nav-inner {
  max-width: 72rem; margin: 0 auto; padding: 0 1rem;
  height: 4rem; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.5rem; font-family: 'Space Grotesk', system-ui, sans-serif; font-weight: 700; font-size: 1.25rem; }
.logo-icon { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--muted-fg); transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }
.mobile-toggle { display: none; color: var(--fg); }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }
.mobile-menu { padding: 0 1rem 1rem; display: flex; flex-direction: column; gap: 0.75rem; background: var(--bg); border-bottom: 1px solid var(--border); }
.mobile-menu a { font-size: 0.875rem; font-weight: 500; color: var(--muted-fg); padding: 0.5rem 0; }
.mobile-menu a:hover { color: var(--fg); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, hsl(230 25% 7% / 0.7), hsl(230 25% 7% / 0.5), var(--bg));
}
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 1rem; max-width: 56rem; margin: 0 auto; }
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  background: hsl(42 92% 56% / 0.1); border: 1px solid hsl(42 92% 56% / 0.2);
  font-size: 0.875rem; font-weight: 500; color: var(--primary); margin-bottom: 2rem;
}
.hero-content h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 700; margin-bottom: 1.5rem; line-height: 1.1; }
.hero-sub {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: #CCC;
	max-width: 40rem;
	margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-stat { margin-top: 2rem; font-size: 0.875rem; color: var(--muted-fg); }

/* ===== Sections ===== */
.section { padding: 6rem 1rem; position: relative; }
.bg-alt { background: hsl(230 20% 18% / 0.3); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.section-header p { color: var(--muted-fg); font-size: 1.125rem; max-width: 36rem; margin: 0 auto; }

/* ===== Steps ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 1rem;
  padding: 2rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover { border-color: hsl(42 92% 56% / 0.4); box-shadow: 0 0 40px -10px hsl(42 92% 56% / 0.4); }
.step-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background: hsl(42 92% 56% / 0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: var(--primary);
}
.step-label { font-size: 0.875rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.step-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-card p { color: var(--muted-fg); line-height: 1.7; }

@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

/* ===== Games ===== */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.game-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1rem;
	padding: 1.5rem;
	position: relative;
	overflow: hidden;
	transition: border-color 0.3s, box-shadow 0.3s;
	cursor: pointer;
}
.game-card:hover { border-color: hsl(42 92% 56% / 0.4); box-shadow: 0 0 40px -10px hsl(42 92% 56% / 0.4); }
.game-card:hover h3 { color: var(--primary); }
.hot-badge {
  position: absolute; top: 1rem; right: 1rem;
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.25rem 0.5rem; border-radius: 9999px;
  background: hsl(25 95% 53% / 0.1); border: 1px solid hsl(25 95% 53% / 0.2);
  font-size: 0.75rem; font-weight: 700; color: var(--accent);
}
.game-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; transition: color 0.2s; }
.game-card > p { color: var(--muted-fg); font-size: 0.875rem; margin-bottom: 1.25rem; line-height: 1.7; }
.game-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.875rem; margin-bottom: 1.25rem; }
.reward { color: var(--primary); font-weight: 600; }
.players { color: var(--muted-fg); }
.game-footer { display: flex; align-items: center; justify-content: space-between; }
.difficulty {
  font-size: 0.75rem; padding: 0.25rem 0.5rem; border-radius: 0.375rem;
  background: var(--muted); color: var(--muted-fg); font-weight: 500;
}
.play-link { font-size: 0.875rem; font-weight: 700; color: var(--primary); }
.play-link:hover { text-decoration: underline; }

@media (max-width: 1024px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .games-grid { grid-template-columns: 1fr; } }

/* ===== Tiers ===== */
.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 64rem; margin: 0 auto; }
.tier-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 1rem;
  padding: 2rem; transition: border-color 0.3s;
}
.tier-card:hover { border-color: hsl(42 92% 56% / 0.3); }
.tier-card.highlighted {
  border-color: var(--primary); transform: scale(1.02);
  box-shadow: 0 0 80px -15px hsl(42 92% 56% / 0.3);
}
.popular-badge { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.tier-icon { margin-bottom: 1rem; }
.tier-icon.muted { color: var(--muted-fg); }
.tier-icon.gold { color: var(--primary); }
.tier-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.tier-deals { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.5rem; }
.tier-reward { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.tier-perks { margin-bottom: 2rem; }
.tier-perks li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: hsl(45 20% 95% / 0.8); padding: 0.375rem 0; }
.check { color: var(--emerald); font-weight: 700; }

@media (max-width: 768px) { .tiers-grid { grid-template-columns: 1fr; } .tier-card.highlighted { transform: none; } }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem;
  overflow: hidden; transition: border-color 0.3s;
}
.faq-item.open { border-color: hsl(42 92% 56% / 0.3); }
.faq-trigger {
  width: 100%; padding: 1.25rem 1.5rem; text-align: left;
  font-family: 'Space Grotesk', system-ui, sans-serif; font-weight: 600; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--primary); }
.faq-chevron { transition: transform 0.3s; font-size: 1.25rem; color: var(--muted-fg); }
.faq-item.open .faq-chevron { transform: rotate(90deg); }
.faq-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-content { max-height: 12rem; }
.faq-content p { padding: 0 1.5rem 1.25rem; color: var(--muted-fg); line-height: 1.7; }

/* ===== Footer ===== */
.footer { padding: 3rem 0rem; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--muted-fg); transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }
.copyright { font-size: 0.875rem; color: var(--muted-fg); }

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; text-align: center; }
}
