/* ============================================================
   VOX Casino DE — styles.css  v1
   Dark Orange · iGaming · Deutsch
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --bg-deep:       #0B0F1A;
  --bg-mid:        #111827;
  --bg-light:      #1A2236;
  --cta-start:     #FF6B00;
  --cta-end:       #FF8C00;
  --orange:        #FF6B00;
  --orange-light:  #FF8C00;
  --neon-start:    #FF6B00;
  --gold:          #FFC107;
  --gold-light:    #FFD54F;
  --white:         #FFFFFF;
  --text-secondary:#B0B3C7;
  --text-muted:    #8A8FA3;
  --card-bg:       #151C2C;
  --card-bg-alt:   #1C2438;
  --card-hover:    #22304A;
  --border:        rgba(255,107,0,0.2);
  --header-h:      52px;
  --radius-card:   18px;
  --radius-btn:    14px;
  --shadow-card:   0 8px 30px rgba(0,0,0,0.5);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  font-size: 16px;
}

body {
  font-family: 'Poppins', Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-mid) 50%, var(--bg-deep) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Radial background highlights */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(255,107,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 85% 75%, rgba(255,140,0,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Skip Link ────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.sr-only:focus {
  position: fixed;
  top: 8px; left: 8px;
  width: auto; height: auto;
  padding: 0.5rem 1rem;
  clip: auto;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  z-index: 9999;
  font-weight: 700;
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,15,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: 100%;
  padding: 0 2rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo — left side */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Buttons — right side */
.header-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-register,
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,107,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-register:hover,
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,107,0,0.5);
}
.btn-register:active,
.btn-cta:active {
  transform: translateY(0);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  background: transparent;
  color: var(--orange-light);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-login:hover {
  background: rgba(255,107,0,0.12);
  box-shadow: 0 0 0 1px var(--orange);
  color: var(--white);
}

/* ── Breadcrumbs ──────────────────────────────────────────── */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .sep { margin: 0 0.4rem; opacity: 0.5; }
.breadcrumbs .current { color: var(--orange); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  padding: 4rem 1.5rem 3.5rem;
  overflow: hidden;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(255,107,0,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.hero-highlight {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}

/* ── Container & Content Card ─────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  position: relative;
  z-index: 1;
}

.content-card {
  background: linear-gradient(160deg, var(--card-bg) 0%, var(--card-bg-alt) 100%);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2.5rem 2.5rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.content-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FF9500, var(--gold));
}

/* ── Prose Typography ─────────────────────────────────────── */
.prose h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  padding-left: 1rem;
  border-left: 4px solid var(--orange);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--orange);
  margin: 1.75rem 0 0.75rem;
}

.prose p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  color: var(--text-secondary);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose li { margin-bottom: 0.4rem; }

.prose strong { color: var(--white); }

.prose a {
  color: var(--orange-light);
  text-decoration: none;
  transition: color 0.2s;
}
.prose a:hover { color: var(--gold); }

/* ── Bonus Banner ─────────────────────────────────────────── */
.app-bonus {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(255,140,0,0.05) 100%);
  border: 1.5px solid var(--orange);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.app-bonus .bonus-icon { font-size: 1.8rem; flex-shrink: 0; }
.app-bonus .bonus-text strong {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}
.app-bonus .bonus-text span {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ── Feature Grid ─────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  align-items: start;
  grid-auto-rows: min-content;
  margin: 1.5rem 0;
}

.feature-card {
  align-self: start;
  height: auto;
  min-height: 0;
  background: linear-gradient(160deg, rgba(255,107,0,0.07) 0%, rgba(26,34,54,0.6) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255,107,0,0.2);
}
.feature-card .fc-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.feature-card .fc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.feature-card .fc-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Widget Panel ─────────────────────────────────────────── */
.widget-panel {
  background: linear-gradient(160deg, rgba(21,28,44,0.95) 0%, rgba(28,36,56,0.95) 100%);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.widget-panel h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
  border-left: none;
  padding-left: 0;
}

/* Bonus Calculator */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.calc-field label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.calc-field label span { color: var(--orange); font-weight: 600; }
.calc-field input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,107,0,0.2);
  border-radius: 3px;
  outline: none;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,107,0,0.4);
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  cursor: pointer;
  border: none;
}
.calc-result {
  background: rgba(255,107,0,0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calc-result .cr-label { font-size: 0.85rem; color: var(--text-muted); }
.calc-result .cr-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.calc-result .cr-max { font-size: 0.75rem; color: var(--text-muted); }

/* Slots Lobby */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}
.slot-card {
  background: rgba(255,107,0,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 0.75rem;
  text-align: center;
}
.slot-icon { font-size: 2rem; margin-bottom: 0.4rem; }
.slot-name { font-size: 0.82rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.slot-provider { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.slot-rtp { font-size: 0.72rem; color: var(--orange); margin-bottom: 0.6rem; }
.btn-demo {
  width: 100%;
  padding: 0.4rem 0;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: #fff;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-demo:hover { opacity: 0.85; }
.btn-demo:disabled { opacity: 0.6; cursor: default; }

/* Quiz */
.quiz-question { margin-bottom: 1.25rem; }
.quiz-question p { font-size: 0.92rem; color: var(--white); font-weight: 600; margin-bottom: 0.6rem; }
.quiz-options { display: flex; flex-direction: column; gap: 0.4rem; }
.quiz-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.quiz-options label:hover { background: rgba(255,107,0,0.08); }
.quiz-options input[type="radio"] { accent-color: var(--orange); }
.btn-quiz {
  padding: 0.55rem 1.5rem;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  margin-top: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-quiz:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255,107,0,0.35); }
.quiz-result {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255,107,0,0.08);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  min-height: 1rem;
}
.quiz-result strong { color: var(--white); }

/* Demo Roulette */
.roulette-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.roulette-wheel {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(
    #111 0deg, #c0392b 10deg, #111 20deg, #c0392b 30deg,
    #111 40deg, #c0392b 50deg, #111 60deg, #c0392b 70deg,
    #111 80deg, #c0392b 90deg, #111 100deg, #c0392b 110deg,
    #111 120deg, #c0392b 130deg, #111 140deg, #c0392b 150deg,
    #111 160deg, #c0392b 170deg, #2e7d32 180deg, #c0392b 190deg,
    #111 200deg, #c0392b 210deg, #111 220deg, #c0392b 230deg,
    #111 240deg, #c0392b 250deg, #111 260deg, #c0392b 270deg,
    #111 280deg, #c0392b 290deg, #111 300deg, #c0392b 310deg,
    #111 320deg, #c0392b 330deg, #111 340deg, #c0392b 350deg, #111 360deg
  );
  border: 4px solid var(--orange);
  box-shadow: 0 0 20px rgba(255,107,0,0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.roulette-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  min-width: 80px;
  text-align: center;
}
.roulette-info { flex: 1; }
.roulette-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.btn-roulette {
  padding: 0.55rem 1.5rem;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-roulette:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255,107,0,0.35); }

/* ── Tables ───────────────────────────────────────────────── */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  margin: 1.25rem 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.data-table thead tr {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}
.data-table thead th {
  padding: 0.75rem 1rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-align: left;
  white-space: nowrap;
}
.data-table tbody tr {
  border-bottom: 1px solid rgba(255,107,0,0.08);
  transition: background 0.2s;
}
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--card-hover); }
.data-table tbody td {
  padding: 0.7rem 1rem;
  color: var(--text-secondary);
  vertical-align: middle;
}
.data-table tbody td b { color: var(--gold); }

/* ── CTA Block ────────────────────────────────────────────── */
.cta-block {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(160deg, var(--card-bg) 0%, var(--card-bg-alt) 100%);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.cta-block h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-block p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  font-size: 0.95rem;
}
.cta-disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: rgba(11,15,26,0.96);
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.payment-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.pay-chip {
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.pay-chip:hover { border-color: var(--orange); color: var(--orange-light); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.footer-copy a {
  color: var(--orange-light);
  text-decoration: none;
}
.footer-copy a:hover { color: var(--gold); }

/* ── Step List ────────────────────────────────────────────── */
.step-list {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}
.step-list li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.step-list li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: rgba(255,107,0,0.04);
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,107,0,0.09); }
.faq-question .faq-icon {
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.faq-item.is-open .faq-answer {
  max-height: 400px;
  padding: 0.75rem 1.25rem 1rem;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

/* ── Größte Gewinne table inside widget ──────────────────── */
.widget-panel .table-wrapper { margin: 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --radius-card: 14px; }

  html { font-size: 14px; }

  body { font-size: 0.875rem; line-height: 1.55; }

  .hero { padding: 2.5rem 1rem 2rem; }
  .hero h1 { font-size: clamp(1.35rem, 5.5vw, 1.75rem); }
  .hero-lead { font-size: 0.875rem; }

  .header-inner {
    padding: 0 1rem;
    gap: 0.75rem;
  }
  .logo img { height: 36px; }

  .breadcrumbs { padding: 0.5rem 1rem; font-size: 0.72rem; }

  .container { padding: 0 0.875rem 2rem; }

  .content-card { padding: 1.5rem 1.1rem; }

  .prose h2 { font-size: clamp(1.05rem, 4vw, 1.35rem); }
  .prose h3 { font-size: 0.95rem; }

  .calc-grid { grid-template-columns: 1fr; }

  .slots-grid { grid-template-columns: repeat(2, 1fr); }

  /* Table → card layout */
  .data-table thead { display: none; }
  .data-table tbody tr {
    display: block;
    background: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
    padding: 0.75rem;
  }
  .data-table tbody tr:hover { background: var(--card-hover); }
  .data-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.25rem;
    border-bottom: 1px solid rgba(255,107,0,0.06);
    font-size: 0.8rem;
  }
  .data-table tbody td:last-child { border-bottom: none; }
  .data-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    margin-right: 0.5rem;
  }

  .roulette-wrap { flex-direction: column; }
  .widget-panel { padding: 1.25rem 1rem; }

  .cta-block { padding: 2rem 1rem; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 380px) {
  html { font-size: 13px; }
  .prose h2 { font-size: clamp(0.95rem, 4.5vw, 1.15rem); }
  .content-card { padding: 1.1rem 0.85rem; }
}
