@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;600;700&family=Alegreya:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --haze-bg: #030d07;
  --haze-accent: #166534;
  --haze-light: #dcfce7;
  --haze-text: #f0fdf4;
  --haze-muted: #22c55e;
  --haze-surface: #071a0e;
  --haze-border: #15803d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--haze-bg);
  color: var(--haze-text);
  font-family: 'Alegreya', Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Kumbh Sans', sans-serif;
  line-height: 1.2;
  color: var(--haze-light);
}

a {
  color: var(--haze-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--haze-light);
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */
.haze-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.haze-section {
  padding: 4rem 0;
}

.haze-section-alt {
  background-color: var(--haze-surface);
  padding: 4rem 0;
}

/* Header */
.haze-header {
  background-color: var(--haze-surface);
  border-bottom: 1px solid var(--haze-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.haze-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.haze-logo {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--haze-light);
  letter-spacing: 0.02em;
}

.haze-logo span {
  color: var(--haze-muted);
}

.haze-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.haze-nav a {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--haze-text);
  opacity: 0.8;
}

.haze-nav a:hover {
  opacity: 1;
  color: var(--haze-muted);
}

/* Hero */
.haze-hero {
  background: linear-gradient(160deg, #030d07 0%, #071a0e 50%, #0a2212 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--haze-border);
}

.haze-hero-badge {
  display: inline-block;
  background-color: var(--haze-accent);
  color: var(--haze-light);
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.haze-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--haze-light);
}

.haze-hero-subtitle {
  font-size: 1.125rem;
  color: var(--haze-text);
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  font-style: italic;
}

.haze-bonus-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--haze-surface);
  border: 1px solid var(--haze-border);
  border-radius: 3rem;
  padding: 0.5rem 1.5rem;
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--haze-muted);
  margin-bottom: 2rem;
}

.haze-bonus-pill span {
  color: var(--haze-light);
}

/* CTA Button */
.haze-btn {
  display: inline-block;
  background-color: var(--haze-accent);
  color: var(--haze-light);
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.875rem 2.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.02em;
}

.haze-btn:hover {
  background-color: #15803d;
  color: var(--haze-light);
  transform: translateY(-1px);
}

.haze-btn-lg {
  font-size: 1.15rem;
  padding: 1rem 3rem;
}

.haze-btn-outline {
  background-color: transparent;
  border: 2px solid var(--haze-accent);
  color: var(--haze-muted);
}

.haze-btn-outline:hover {
  background-color: var(--haze-accent);
  color: var(--haze-light);
}

/* Section headings */
.haze-section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--haze-light);
}

.haze-section-lead {
  font-size: 1.0625rem;
  color: var(--haze-text);
  opacity: 0.85;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.haze-divider {
  width: 3rem;
  height: 3px;
  background-color: var(--haze-accent);
  margin: 0.75rem 0 1.5rem;
  border-radius: 2px;
}

/* Text content */
.haze-text-block p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.haze-text-block p:last-child {
  margin-bottom: 0;
}

/* Mirror URL block */
.haze-mirror-block {
  background-color: var(--haze-surface);
  border: 1px solid var(--haze-border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.haze-mirror-block .haze-mirror-label {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--haze-muted);
  margin-bottom: 0.75rem;
}

.haze-mirror-url {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--haze-light);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  word-break: break-all;
}

/* Steps */
.haze-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.haze-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.haze-step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--haze-accent);
  color: var(--haze-light);
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.haze-step-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--haze-light);
  margin-bottom: 0.35rem;
}

.haze-step-body p {
  font-size: 0.97rem;
  color: var(--haze-text);
  opacity: 0.85;
}

/* Game cards */
.haze-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.haze-card {
  background-color: var(--haze-surface);
  border: 1px solid var(--haze-border);
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s ease;
}

.haze-card:hover {
  border-color: var(--haze-muted);
}

.haze-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.haze-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--haze-light);
}

.haze-card p {
  font-size: 0.93rem;
  color: var(--haze-text);
  opacity: 0.8;
}

/* Bonus block */
.haze-bonus-block {
  background: linear-gradient(135deg, #071a0e 0%, #0e2e18 100%);
  border: 1px solid var(--haze-border);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
}

.haze-bonus-amount {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--haze-muted);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.haze-bonus-fs {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--haze-light);
  margin-bottom: 1rem;
}

.haze-bonus-note {
  font-size: 0.9rem;
  color: var(--haze-text);
  opacity: 0.7;
  margin-top: 1rem;
}

/* VIP table */
.haze-vip-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.97rem;
}

.haze-vip-table th {
  font-family: 'Kumbh Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--haze-muted);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--haze-border);
}

.haze-vip-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--haze-border);
  color: var(--haze-text);
  vertical-align: middle;
}

.haze-vip-table tr:last-child td {
  border-bottom: none;
}

.haze-vip-table tr:hover td {
  background-color: var(--haze-surface);
}

.haze-vip-badge {
  display: inline-block;
  background-color: var(--haze-accent);
  color: var(--haze-light);
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 1rem;
}

/* Reviews */
.haze-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.haze-review {
  background-color: var(--haze-surface);
  border: 1px solid var(--haze-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.haze-review-stars {
  color: var(--haze-muted);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.haze-review p {
  font-size: 0.97rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--haze-text);
  opacity: 0.9;
}

.haze-review-author {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--haze-muted);
}

/* FAQ */
.haze-faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.haze-faq-item {
  background-color: var(--haze-surface);
  border: 1px solid var(--haze-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.haze-faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--haze-light);
  margin-bottom: 0.75rem;
}

.haze-faq-item p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--haze-text);
  opacity: 0.85;
}

/* Security badges */
.haze-security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.haze-security-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--haze-surface);
  border: 1px solid var(--haze-border);
  border-radius: 0.75rem;
}

.haze-security-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.haze-security-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--haze-light);
  margin-bottom: 0.25rem;
}

.haze-security-item p {
  font-size: 0.85rem;
  color: var(--haze-text);
  opacity: 0.75;
}

/* Author note */
.haze-author-note {
  background-color: var(--haze-surface);
  border-left: 3px solid var(--haze-accent);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.5rem 1.75rem;
  margin: 3rem 0 0;
}

.haze-author-note-label {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--haze-muted);
  margin-bottom: 0.5rem;
}

.haze-author-note p {
  font-size: 0.97rem;
  font-style: italic;
  color: var(--haze-text);
  opacity: 0.85;
  line-height: 1.7;
}

/* Footer */
.haze-footer {
  background-color: var(--haze-surface);
  border-top: 1px solid var(--haze-border);
  padding: 2.5rem 0;
  text-align: center;
}

.haze-footer-logo {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--haze-light);
  margin-bottom: 1rem;
}

.haze-footer-legal {
  font-size: 0.82rem;
  color: var(--haze-text);
  opacity: 0.55;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 1rem;
}

.haze-footer-age {
  display: inline-block;
  border: 1px solid var(--haze-border);
  color: var(--haze-muted);
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
}

/* Utilities */
.haze-text-center { text-align: center; }
.haze-text-muted { color: var(--haze-muted); }
.haze-mt-1 { margin-top: 1rem; }
.haze-mt-2 { margin-top: 2rem; }
.haze-mt-3 { margin-top: 3rem; }
.haze-mb-1 { margin-bottom: 1rem; }
.haze-mb-2 { margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 768px) {
  .haze-nav {
    display: none;
  }

  .haze-hero {
    padding: 3rem 0 2.5rem;
  }

  .haze-section, .haze-section-alt {
    padding: 2.5rem 0;
  }

  .haze-cards {
    grid-template-columns: 1fr 1fr;
  }

  .haze-reviews {
    grid-template-columns: 1fr;
  }

  .haze-vip-table {
    font-size: 0.85rem;
  }

  .haze-vip-table th,
  .haze-vip-table td {
    padding: 0.6rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .haze-cards {
    grid-template-columns: 1fr;
  }

  .haze-security-grid {
    grid-template-columns: 1fr;
  }
}
