@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@400;600;700&family=Roboto+Serif:wght@300;400;600&display=swap');

:root {
  --onyx-bg: #0a0800;
  --onyx-accent: #d97706;
  --onyx-light: #fef3c7;
  --onyx-text: #fffbeb;
  --onyx-muted: #f59e0b;
  --onyx-surface: #141000;
  --onyx-border: #92400e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--onyx-bg);
  color: var(--onyx-text);
  font-family: 'Roboto Serif', Georgia, serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  color: var(--onyx-light);
  line-height: 1.25;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.25rem, 3vw, 1.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.3rem); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
a { color: var(--onyx-accent); text-decoration: none; }
a:hover { color: var(--onyx-muted); text-decoration: underline; }

.onyx-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.onyx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.onyx-logo {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--onyx-accent);
  letter-spacing: 0.04em;
}

.onyx-logo span {
  color: var(--onyx-light);
}

.onyx-header-cta {
  display: inline-block;
  background: var(--onyx-accent);
  color: var(--onyx-bg);
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.onyx-header-cta:hover {
  background: var(--onyx-muted);
  color: var(--onyx-bg);
  text-decoration: none;
}

/* HERO */
.onyx-hero {
  background: linear-gradient(135deg, #0f0a00 0%, #1a1000 60%, #0a0800 100%);
  border-bottom: 1px solid var(--onyx-border);
  padding: 4rem 0 3.5rem;
  text-align: center;
}

.onyx-hero h1 {
  margin-bottom: 1rem;
}

.onyx-hero-sub {
  font-family: 'Roboto Serif', serif;
  font-size: 1.1rem;
  color: var(--onyx-muted);
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.onyx-badge {
  display: inline-block;
  background: rgba(217,119,6,0.15);
  border: 1px solid var(--onyx-border);
  color: var(--onyx-light);
  font-family: 'Geologica', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.onyx-cta-main {
  display: inline-block;
  background: var(--onyx-accent);
  color: var(--onyx-bg);
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
  margin-top: 0.5rem;
}

.onyx-cta-main:hover {
  background: var(--onyx-muted);
  color: var(--onyx-bg);
  text-decoration: none;
  transform: translateY(-1px);
}

.onyx-hero-bonus {
  margin-top: 1.25rem;
  font-family: 'Geologica', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--onyx-accent);
}

/* SECTIONS */
.onyx-section {
  padding: 3rem 0;
}

.onyx-section-alt {
  background: var(--onyx-surface);
  border-top: 1px solid var(--onyx-border);
  border-bottom: 1px solid var(--onyx-border);
}

.onyx-section-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  color: var(--onyx-light);
  margin-bottom: 1.25rem;
}

.onyx-divider {
  width: 3rem;
  height: 3px;
  background: var(--onyx-accent);
  border: none;
  border-radius: 2px;
  margin: 0 0 1.75rem;
}

/* MIRROR BOX */
.onyx-mirror-box {
  background: rgba(217,119,6,0.08);
  border: 1px solid var(--onyx-border);
  border-radius: 10px;
  padding: 1.75rem;
  margin: 1.5rem 0;
  text-align: center;
}

.onyx-mirror-url {
  font-family: 'Geologica', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--onyx-accent);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}

.onyx-mirror-status {
  font-size: 0.85rem;
  color: var(--onyx-muted);
  margin-bottom: 1.25rem;
}

.onyx-update-note {
  font-size: 0.8rem;
  color: var(--onyx-muted);
  margin-top: 0.75rem;
}

/* STEPS */
.onyx-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.onyx-step {
  background: var(--onyx-surface);
  border: 1px solid var(--onyx-border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

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

/* GAME CARDS */
.onyx-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.onyx-card {
  background: var(--onyx-surface);
  border: 1px solid var(--onyx-border);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s;
}

.onyx-card:hover {
  border-color: var(--onyx-accent);
}

.onyx-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.onyx-card h3 {
  color: var(--onyx-light);
  margin-bottom: 0.5rem;
}

.onyx-card p {
  font-size: 0.9rem;
  color: var(--onyx-muted);
  margin-bottom: 0;
}

/* BONUS */
.onyx-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.onyx-bonus-item {
  background: rgba(217,119,6,0.1);
  border: 1px solid var(--onyx-border);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.onyx-bonus-value {
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--onyx-accent);
  display: block;
  margin-bottom: 0.25rem;
}

.onyx-bonus-label {
  font-size: 0.875rem;
  color: var(--onyx-muted);
}

/* VIP */
.onyx-vip-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-family: 'Geologica', sans-serif;
}

.onyx-vip-table th {
  background: rgba(217,119,6,0.15);
  color: var(--onyx-light);
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--onyx-border);
}

.onyx-vip-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(146,64,14,0.3);
  color: var(--onyx-text);
  font-size: 0.95rem;
}

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

.onyx-vip-table tr:hover td {
  background: rgba(217,119,6,0.05);
}

.onyx-vip-highlight {
  color: var(--onyx-accent);
  font-weight: 600;
}

/* REVIEWS */
.onyx-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

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

.onyx-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.onyx-review-name {
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
  color: var(--onyx-light);
  font-size: 0.95rem;
}

.onyx-review-city {
  font-size: 0.8rem;
  color: var(--onyx-muted);
}

.onyx-stars {
  color: var(--onyx-accent);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.onyx-review p {
  font-size: 0.9rem;
  color: var(--onyx-text);
  margin-bottom: 0;
  font-style: italic;
}

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

.onyx-faq-item {
  background: var(--onyx-surface);
  border: 1px solid var(--onyx-border);
  border-radius: 8px;
  overflow: hidden;
}

.onyx-faq-q {
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--onyx-light);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--onyx-border);
  background: rgba(217,119,6,0.05);
}

.onyx-faq-a {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--onyx-text);
  line-height: 1.65;
}

/* AUTHOR NOTE */
.onyx-author-note {
  background: rgba(217,119,6,0.07);
  border-left: 3px solid var(--onyx-accent);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 2.5rem 0 1rem;
  font-size: 0.875rem;
  color: var(--onyx-muted);
  line-height: 1.65;
}

.onyx-author-note-title {
  font-family: 'Geologica', sans-serif;
  font-weight: 600;
  color: var(--onyx-light);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* FOOTER */
.onyx-footer {
  background: var(--onyx-surface);
  border-top: 1px solid var(--onyx-border);
  padding: 2rem 0;
  margin-top: 1rem;
}

.onyx-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--onyx-muted);
  text-align: center;
  line-height: 1.6;
}

.onyx-footer-logo {
  font-family: 'Geologica', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--onyx-accent);
  margin-bottom: 0.25rem;
}

.onyx-footer-legal {
  opacity: 0.75;
}

.onyx-age-badge {
  display: inline-block;
  border: 1px solid var(--onyx-border);
  color: var(--onyx-muted);
  font-family: 'Geologica', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 50%;
  text-align: center;
}

/* UTILITIES */
.onyx-text-accent { color: var(--onyx-accent); }
.onyx-text-muted { color: var(--onyx-muted); }
.onyx-mt-sm { margin-top: 0.75rem; }
.onyx-mt-md { margin-top: 1.5rem; }
.onyx-mt-lg { margin-top: 2.5rem; }
.onyx-mb-sm { margin-bottom: 0.75rem; }

@media (max-width: 640px) {
  .onyx-hero { padding: 2.5rem 0 2rem; }
  .onyx-section { padding: 2rem 0; }
  .onyx-vip-table th, .onyx-vip-table td { padding: 0.6rem 0.75rem; font-size: 0.875rem; }
  .onyx-header-inner { flex-direction: column; text-align: center; gap: 0.75rem; }
}
