@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@0,100;0,300;0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --ameth-bg: #0e0a1e;
  --ameth-card: #160f2d;
  --ameth-card2: #1c1438;
  --ameth-purple: #7c3aed;
  --ameth-purple-dark: #6d28d9;
  --ameth-lavender: #c4b5fd;
  --ameth-text: #faf5ff;
  --ameth-muted: #a89bca;
  --ameth-muted2: #c4b5fd;
  --ameth-border: #2d1d5c;
  --ameth-heading: 'Josefin Slab', Georgia, serif;
  --ameth-body: 'Source Sans 3', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--ameth-bg);
  color: var(--ameth-text);
  font-family: var(--ameth-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--ameth-text);
}

ul {
  list-style: none;
}

/* ─── HEADER ─────────────────────────────────── */

.ameth-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 10, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ameth-border);
  padding: 0 1.5rem;
}

.ameth-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.ameth-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.ameth-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--ameth-purple);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ameth-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.ameth-logo-name {
  font-family: var(--ameth-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ameth-text);
  letter-spacing: 0.01em;
}

.ameth-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ameth-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ameth-muted);
  transition: color 0.2s ease;
}

.ameth-nav a:hover {
  color: var(--ameth-text);
}

.ameth-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.2rem;
  background: var(--ameth-purple);
  color: #fff;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}

.ameth-nav-cta:hover {
  background: var(--ameth-purple-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ─── HERO ────────────────────────────────────── */

.ameth-hero {
  background: linear-gradient(135deg, #0e0a1e 0%, #160f2d 60%, #0b0819 100%);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.ameth-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.20) 0%, transparent 70%);
  pointer-events: none;
}

.ameth-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ameth-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ameth-h1 {
  font-family: var(--ameth-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ameth-text);
  margin-bottom: 2rem;
  max-width: 820px;
}

.ameth-tagline {
  font-size: 1rem;
  color: var(--ameth-muted);
  margin-top: 1.5rem;
  max-width: 600px;
  line-height: 1.6;
}

/* ─── QUICK CARDS ─────────────────────────────── */

.ameth-quick-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ameth-quick-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0.75rem;
  background: rgba(22, 15, 45, 0.8);
  border: 1px solid var(--ameth-border);
  border-radius: 10px;
  color: var(--ameth-text);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  line-height: 1.4;
}

.ameth-quick-card:hover {
  background: rgba(124, 58, 237, 0.25);
  border-color: var(--ameth-purple);
  color: var(--ameth-text);
  transform: translateY(-2px);
}

.ameth-quick-card-highlight {
  border-color: var(--ameth-purple);
  background: rgba(124, 58, 237, 0.12);
  color: var(--ameth-lavender);
}

/* ─── KPI STRIP ──────────────────────────────── */

.ameth-kpi-strip {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(22, 15, 45, 0.5);
  border: 1px solid var(--ameth-border);
  border-radius: 10px;
}

.ameth-kpi-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ameth-kpi-value {
  font-family: var(--ameth-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ameth-lavender);
  line-height: 1;
}

.ameth-kpi-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ameth-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── CTA BUTTONS ─────────────────────────────── */

.ameth-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.ameth-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: var(--ameth-purple);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.35);
}

.ameth-cta-primary:hover {
  background: var(--ameth-purple-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(109, 40, 217, 0.45);
}

.ameth-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--ameth-text);
  border: 1px solid var(--ameth-border);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.ameth-cta-secondary:hover {
  border-color: var(--ameth-lavender);
  background: rgba(196, 181, 253, 0.08);
  color: var(--ameth-text);
  transform: translateY(-2px);
}

/* ─── SECTION SHELL ──────────────────────────── */

.ameth-section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ameth-section-full {
  padding: 4rem 1.5rem;
  background: var(--ameth-card);
}

.ameth-section-full .ameth-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ameth-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ameth-lavender);
  margin-bottom: 0.5rem;
}

.ameth-section h2 {
  font-family: var(--ameth-heading);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ameth-text);
  margin-bottom: 2rem;
  line-height: 1.25;
}

.ameth-section-full h2 {
  font-family: var(--ameth-heading);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ameth-text);
  margin-bottom: 2rem;
  line-height: 1.25;
}

/* ─── MIRROR SECTION ─────────────────────────── */

.ameth-mirror-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ameth-mirror-card {
  background: var(--ameth-card2);
  border: 1px solid var(--ameth-border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}

.ameth-mirror-card h3 {
  font-family: var(--ameth-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ameth-text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ameth-mirror-card p {
  font-size: 0.875rem;
  color: var(--ameth-muted);
  line-height: 1.7;
}

/* ─── STEPS ──────────────────────────────────── */

.ameth-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ameth-step {
  background: var(--ameth-card);
  border: 1px solid var(--ameth-border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  position: relative;
}

.ameth-step-num {
  font-family: var(--ameth-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(124, 58, 237, 0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.ameth-step h3 {
  font-family: var(--ameth-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ameth-text);
  margin-bottom: 0.5rem;
}

.ameth-step p {
  font-size: 0.9rem;
  color: var(--ameth-muted);
  line-height: 1.6;
}

/* ─── DEPOSIT CARDS ──────────────────────────── */

.ameth-dep-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.ameth-dep-card {
  background: var(--ameth-card2);
  border: 1px solid var(--ameth-border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.ameth-dep-card:hover {
  border-color: var(--ameth-purple);
  transform: translateY(-3px);
}

.ameth-dep-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  background: var(--ameth-purple);
  color: #fff;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.ameth-dep-percent {
  font-family: var(--ameth-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ameth-lavender);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.ameth-dep-amount {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ameth-text);
  margin-bottom: 0.25rem;
}

.ameth-dep-fs {
  font-size: 0.85rem;
  color: var(--ameth-muted);
  margin-bottom: 0.5rem;
}

.ameth-dep-slot {
  font-size: 0.78rem;
  color: var(--ameth-muted);
  font-style: italic;
}

.ameth-dep-conditions {
  background: rgba(22, 15, 45, 0.6);
  border: 1px solid var(--ameth-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--ameth-muted);
  line-height: 1.6;
}

/* ─── SLOT GRID ──────────────────────────────── */

.ameth-slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ameth-slot-card {
  background: var(--ameth-card2);
  border: 1px solid var(--ameth-border);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.ameth-slot-card:hover {
  border-color: var(--ameth-lavender);
  transform: translateY(-2px);
}

.ameth-slot-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ameth-text);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.ameth-slot-provider {
  font-size: 0.75rem;
  color: var(--ameth-muted);
  margin-bottom: 0.6rem;
}

.ameth-rtp-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ameth-lavender);
  margin-bottom: 0.4rem;
}

.ameth-slot-max {
  font-size: 0.75rem;
  color: var(--ameth-muted);
}

.ameth-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ameth-lavender);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ameth-catalog-link:hover {
  color: var(--ameth-text);
}

/* ─── VIP LEVEL TRACK ────────────────────────── */

.ameth-level-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.ameth-level-item {
  background: var(--ameth-card2);
  border: 1px solid var(--ameth-border);
  border-radius: 10px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  position: relative;
  transition: border-color 0.2s ease;
}

.ameth-level-item:last-child {
  border-color: var(--ameth-lavender);
  background: rgba(196, 181, 253, 0.06);
}

.ameth-level-name {
  font-family: var(--ameth-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ameth-text);
  margin-bottom: 0.4rem;
}

.ameth-level-pct {
  font-family: var(--ameth-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ameth-lavender);
  line-height: 1;
}

.ameth-level-label {
  font-size: 0.7rem;
  color: var(--ameth-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.ameth-loyalty-info {
  font-size: 0.9rem;
  color: var(--ameth-muted);
  line-height: 1.7;
  max-width: 820px;
}

/* ─── PRIZE TABLE ────────────────────────────── */

.ameth-prize-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.ameth-prize-table th {
  background: var(--ameth-card2);
  color: var(--ameth-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--ameth-border);
}

.ameth-prize-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(45, 29, 92, 0.5);
  color: var(--ameth-text);
  vertical-align: middle;
}

.ameth-prize-table tr:first-child td {
  color: var(--ameth-lavender);
  font-weight: 600;
}

.ameth-prize-table tr:hover td {
  background: rgba(22, 15, 45, 0.4);
}

.ameth-prize-info {
  font-size: 0.875rem;
  color: var(--ameth-muted);
  line-height: 1.6;
}

/* ─── LIVE GRID ──────────────────────────────── */

.ameth-live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ameth-live-card {
  background: var(--ameth-card2);
  border: 1px solid var(--ameth-border);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.ameth-live-card:hover {
  border-color: var(--ameth-purple);
  transform: translateY(-2px);
}

.ameth-live-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ameth-text);
  margin-bottom: 0.3rem;
}

.ameth-live-provider {
  font-size: 0.75rem;
  color: var(--ameth-lavender);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.ameth-live-detail {
  font-size: 0.8rem;
  color: var(--ameth-muted);
  line-height: 1.5;
}

.ameth-live-info {
  font-size: 0.875rem;
  color: var(--ameth-muted);
  line-height: 1.6;
}

/* ─── REVIEWS ────────────────────────────────── */

.ameth-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ameth-review-card {
  background: var(--ameth-card2);
  border: 1px solid var(--ameth-border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
}

.ameth-review-stars {
  font-size: 1rem;
  color: var(--ameth-lavender);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.ameth-review-text {
  font-size: 0.9rem;
  color: var(--ameth-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.ameth-review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ameth-text);
}

.ameth-review-location {
  font-size: 0.75rem;
  color: var(--ameth-muted);
}

/* ─── PAY TABLE ──────────────────────────────── */

.ameth-pay-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.ameth-pay-table th {
  background: var(--ameth-card2);
  color: var(--ameth-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--ameth-border);
}

.ameth-pay-table td {
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid rgba(45, 29, 92, 0.5);
  color: var(--ameth-text);
  vertical-align: middle;
}

.ameth-pay-table tr:last-child td {
  border-bottom: none;
}

.ameth-pay-table tr:hover td {
  background: rgba(22, 15, 45, 0.4);
}

.ameth-pay-fast {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ameth-lavender);
}

.ameth-pay-note {
  font-size: 0.83rem;
  color: var(--ameth-muted);
  margin-top: 0.5rem;
}

/* ─── PRE-FOOTER CTA ─────────────────────────── */

.ameth-prefooter {
  background: linear-gradient(135deg, #160f2d 0%, #0b0819 100%);
  border-top: 1px solid var(--ameth-border);
  border-bottom: 1px solid var(--ameth-border);
  padding: 4rem 1.5rem;
  text-align: center;
}

.ameth-prefooter h2 {
  font-family: var(--ameth-heading);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ameth-text);
  margin-bottom: 1.25rem;
}

.ameth-prefooter p {
  font-size: 0.9rem;
  color: var(--ameth-muted);
  margin-top: 1rem;
}

/* ─── FAQ ────────────────────────────────────── */

.ameth-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ameth-faq-item {
  background: var(--ameth-card);
  border: 1px solid var(--ameth-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.ameth-faq-item[open] {
  border-color: var(--ameth-purple);
}

.ameth-faq-item summary {
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ameth-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
  transition: background 0.2s ease;
}

.ameth-faq-item summary::-webkit-details-marker {
  display: none;
}

.ameth-faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--ameth-lavender);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

.ameth-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.ameth-faq-item summary:hover {
  background: rgba(22, 15, 45, 0.6);
}

.ameth-faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ameth-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(45, 29, 92, 0.5);
  padding-top: 1rem;
}

/* ─── AUTHOR / E-E-A-T ───────────────────────── */

.ameth-author {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid var(--ameth-border);
}

.ameth-author h2 {
  font-family: var(--ameth-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ameth-text);
  margin-bottom: 0.75rem;
}

.ameth-author p {
  font-size: 0.875rem;
  color: var(--ameth-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 0.6rem;
}

/* ─── FOOTER ─────────────────────────────────── */

.ameth-footer {
  background: var(--ameth-card);
  border-top: 1px solid var(--ameth-border);
  padding: 2.5rem 1.5rem;
}

.ameth-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ameth-footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ameth-footer-nav a {
  font-size: 0.875rem;
  color: var(--ameth-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ameth-footer-nav a:hover {
  color: var(--ameth-text);
}

.ameth-footer-legal {
  font-size: 0.8rem;
  color: var(--ameth-muted);
  line-height: 1.7;
  max-width: 900px;
}

.ameth-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--ameth-muted);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ameth-muted);
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 0.4rem;
}

/* ─── UTILITY ────────────────────────────────── */

.ameth-divider {
  height: 1px;
  background: var(--ameth-border);
  max-width: 1200px;
  margin: 0 auto;
}

.ameth-text-muted {
  color: var(--ameth-muted);
  font-size: 0.875rem;
}

.ameth-mt-1 { margin-top: 0.5rem; }
.ameth-mt-2 { margin-top: 1rem; }
.ameth-mb-1 { margin-bottom: 0.5rem; }
.ameth-mb-2 { margin-bottom: 1rem; }

/* ─── RESPONSIVE ─────────────────────────────── */

@media (max-width: 1024px) {
  .ameth-slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ameth-dep-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .ameth-level-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .ameth-live-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ameth-mirror-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ameth-header-inner {
    height: 56px;
  }

  .ameth-logo-name {
    font-size: 1rem;
  }

  .ameth-hero {
    padding: 3rem 1rem 2.5rem;
  }

  .ameth-h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .ameth-quick-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .ameth-kpi-strip {
    gap: 1rem;
    padding: 1rem;
    justify-content: center;
  }

  .ameth-kpi-item {
    min-width: calc(50% - 0.5rem);
  }

  .ameth-cta-group {
    flex-direction: column;
  }

  .ameth-cta-primary,
  .ameth-cta-secondary {
    width: 100%;
    text-align: center;
  }

  .ameth-section {
    padding: 2.5rem 1rem;
  }

  .ameth-section-full {
    padding: 2.5rem 1rem;
  }

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

  .ameth-steps-grid {
    grid-template-columns: 1fr;
  }

  .ameth-slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ameth-level-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .ameth-live-grid {
    grid-template-columns: 1fr;
  }

  .ameth-mirror-grid {
    grid-template-columns: 1fr;
  }

  .ameth-review-grid {
    grid-template-columns: 1fr;
  }

  .ameth-prize-table {
    font-size: 0.82rem;
  }

  .ameth-pay-table {
    font-size: 0.82rem;
  }

  .ameth-prefooter {
    padding: 2.5rem 1rem;
  }

  .ameth-footer {
    padding: 2rem 1rem;
  }
}

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

  .ameth-level-track {
    grid-template-columns: repeat(2, 1fr);
  }

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