/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0c0e;
  --bg2:       #0f1214;
  --bg3:       #141719;
  --accent:    #00ff6a;
  --accent2:   #00cc55;
  --green:     #00ff6a;
  --text:      #e8eaf0;
  --text-muted:#7a8290;
  --border:    rgba(0,255,106,0.1);
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,12,14,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { font-size: 1.1rem; font-weight: 700; color: var(--text); text-decoration: none; flex-shrink: 0; }
.logo:hover { text-decoration: none; color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--accent); background: rgba(0,255,106,0.07); text-decoration: none; }

@media (max-width: 700px) { .nav-links { display: none; } }

/* Smooth-scroll anchor offset (sticky nav is 60px) */
section[id], .nav[id] { scroll-margin-top: 68px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  text-decoration: none;
  border: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,255,106,0.35); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  background: var(--accent);
  color: #0d0f14;
}
.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0d0f14;
  box-shadow: 0 4px 16px rgba(0,255,106,0.4);
}
.btn-outline {
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover { background: rgba(0,255,106,0.1); box-shadow: none; }

/* ===== HERO ===== */
.hero {
  background: radial-gradient(ellipse at 50% 0%, rgba(0,255,106,0.12) 0%, transparent 65%), var(--bg);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}
.hero-inner { max-width: 760px; margin: 0 auto; }

.badge {
  display: inline-block;
  background: rgba(0,255,106,0.15);
  border: 1px solid rgba(0,255,106,0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #fff 60%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.cta-note { font-size: 0.85rem; color: var(--text-muted); }
.cta-note strong { color: var(--accent); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Hero banner image */
.hero-banner-link { display: block; margin: 2rem auto 2.5rem; max-width: 760px; }
.hero-banner {
  width: 100%; border-radius: 14px;
  border: 1px solid rgba(0,255,106,0.2);
  box-shadow: 0 0 40px rgba(0,255,106,0.15);
  transition: box-shadow 0.2s, transform 0.2s;
}
.hero-banner:hover { box-shadow: 0 0 60px rgba(0,255,106,0.3); transform: translateY(-2px); }

/* Promo block */
.promo-block {
  display: flex; align-items: center; gap: 3rem;
  flex-wrap: wrap; justify-content: center;
}
.promo-img-link { flex-shrink: 0; }
.promo-img {
  width: 280px; height: 280px; object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(0,255,106,0.2);
  box-shadow: 0 0 40px rgba(0,255,106,0.15);
  transition: box-shadow 0.2s, transform 0.2s;
}
.promo-img:hover { box-shadow: 0 0 60px rgba(0,255,106,0.3); transform: translateY(-2px); }
.promo-text { max-width: 420px; }
.promo-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.promo-text p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.65; }
.promo-code { margin-top: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }
.promo-code strong { color: var(--accent); }

/* ===== SECTIONS ===== */
.section { padding: 5rem 1.5rem; }
.section-dark { background: var(--bg2); }

.container { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(0,255,106,0.35); transform: translateY(-2px); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.card p  { font-size: 0.9rem; color: var(--text-muted); }

/* ===== STEPS ===== */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}
.step {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  max-width: 240px;
  flex: 1;
  min-width: 200px;
}
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0d0f14;
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p  { font-size: 0.875rem; color: var(--text-muted); }
.step-arrow { font-size: 1.5rem; color: var(--accent); opacity: 0.5; }

/* ===== ODDS GRID ===== */
.odds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.odds-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.odds-sport {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.odds-matchup {
  font-size: 1rem;
  font-weight: 600;
}
.odds-time { font-size: 0.8rem; color: var(--text-muted); }
.odds-lines {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.odds-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.odds-pill.fav  { color: var(--green); }
.odds-pill.dog  { color: #f87171; }
.odds-bet-btn {
  display: inline-block;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #0d0f14;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.odds-bet-btn:hover { opacity: 0.85; text-decoration: none; }
.odds-placeholder { color: var(--text-muted); font-size: 0.95rem; padding: 1rem 0; }

/* ===== AFFILIATE DISCLOSURE BAR ===== */
.disclosure-bar {
  background: rgba(0,255,106,0.07);
  border-bottom: 1px solid rgba(0,255,106,0.15);
  color: var(--text-muted);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.5rem 1.5rem;
  line-height: 1.5;
}
.disclosure-bar strong { color: var(--text); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--bg4);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  padding: 0.85rem 1.5rem;
  font-size: 0.85rem; color: var(--text-muted);
}
.cookie-banner a { color: var(--accent); }

/* ===== DICE SIMULATOR ===== */
.dice-presets {
  display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 1.25rem;
}
.dice-preset-btn {
  padding: 0.55rem 1.4rem; border-radius: 100px;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg3); color: var(--text-muted);
  transition: all 0.15s;
}
.dice-preset-btn:hover { background: var(--bg4); color: var(--text); border-color: rgba(0,255,106,0.3); }
.dice-preset-btn.active { background: rgba(0,255,106,0.12); color: var(--accent); border-color: var(--accent); }

.dice-desc-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.4rem;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.65;
  margin-bottom: 1.5rem; min-height: 56px;
}
.dice-desc-card strong { color: var(--text); }
.dice-desc-card .dice-tag {
  display: inline-block; padding: 0.15rem 0.55rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; margin-right: 0.5rem;
}
.dice-tag.verysafe { background: rgba(250,204,21,0.12); color: #facc15; border: 1px solid rgba(250,204,21,0.25); }
.dice-tag.safe   { background: rgba(0,255,106,0.12); color: var(--accent); border: 1px solid rgba(0,255,106,0.25); }
.dice-tag.normal { background: rgba(96,165,250,0.12); color: #60a5fa; border: 1px solid rgba(96,165,250,0.25); }
.dice-tag.risky  { background: rgba(239,68,68,0.12);  color: #f87171; border: 1px solid rgba(239,68,68,0.25); }
.dice-tag.custom { background: rgba(168,85,247,0.12); color: #c084fc; border: 1px solid rgba(168,85,247,0.25); }

.dice-settings-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin-bottom: 1.5rem;
}
.dice-field { display: flex; flex-direction: column; gap: 0.4rem; }
.dice-field label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.dice-field label strong { color: var(--accent); }
.dice-input-wrap { position: relative; }
.dice-input-prefix {
  position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%);
  font-size: 0.875rem; color: var(--text-muted); pointer-events: none;
}
.dice-field input[type="number"] {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: 0.95rem; padding: 0.6rem 0.85rem;
  transition: border-color 0.15s;
}
.dice-input-wrap input[type="number"] { padding-left: 1.75rem; }
.dice-field input[type="number"]:focus { outline: none; border-color: rgba(0,255,106,0.5); }
.dice-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #00ff6a 50%, rgba(255,60,60,0.85) 50%);
  outline: none;
  transition: box-shadow 0.15s;
}
.dice-range:focus { box-shadow: 0 0 0 3px rgba(0,255,106,0.2); }
.dice-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #00ff6a;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.1s;
}
.dice-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.dice-range::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #00ff6a;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.dice-range::-moz-range-track { background: transparent; border: none; }
.dice-field-fullrow { grid-column: 1 / -1; }
#d-wc-field { grid-column: 1 / -1; }

/* Strategy selector */
.strategy-section { margin-bottom: 1.5rem; }
.strategy-header {
  display: flex; align-items: baseline; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.strategy-header-title { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.strategy-header-sub   { font-size: 0.78rem; color: var(--text-muted); }

.strategy-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.strategy-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.85rem 0.75rem;
  cursor: pointer; transition: all 0.15s;
  display: flex; flex-direction: column; gap: 0.4rem;
  user-select: none;
}
.strategy-card:hover  { border-color: rgba(0,255,106,0.3); background: var(--bg3); }
.strategy-card.active {
  border-color: var(--accent);
  background: rgba(0,255,106,0.06);
  box-shadow: 0 0 0 1px rgba(0,255,106,0.2);
}
.strategy-card-top { display: flex; align-items: center; justify-content: space-between; gap: 0.35rem; }
.strategy-emoji    { font-size: 1.3rem; line-height: 1; }
.strategy-name     { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.strategy-wc       { font-size: 0.68rem; color: var(--accent); font-weight: 600; opacity: 0.8; }
.strategy-tagline  { font-size: 0.69rem; color: var(--text-muted); line-height: 1.4; }
.strategy-risk-badge {
  padding: 0.15rem 0.45rem; border-radius: 100px;
  font-size: 0.65rem; font-weight: 700; white-space: nowrap;
}

.strategy-detail-box {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem;
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.65;
  min-height: 42px;
}

/* Auto Bet — compact 2-column */
.autobet-compact {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.autobet-divider {
  width: 1px;
  background: var(--border);
  margin: 0 1.25rem;
  align-self: stretch;
}
.autobet-col {
  display: flex; flex-direction: column; gap: 0.65rem;
}
.autobet-col-title { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.03em; }
.autobet-col-main {
  display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap;
}
.autobet-radio {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.83rem; color: var(--text-muted); cursor: pointer; white-space: nowrap;
}
.autobet-radio input[type="radio"] { accent-color: var(--accent); cursor: pointer; }
.autobet-radio:has(input:checked) { color: var(--text); }
.autobet-pct-wrap { max-width: 72px; }
.autobet-pct-wrap input[type="number"] {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-size: 0.88rem; padding: 0.45rem 1.6rem 0.45rem 0.55rem;
  width: 100%; transition: border-color 0.15s;
}
.autobet-pct-wrap input[type="number"]:focus { outline: none; border-color: rgba(0,255,106,0.5); }
.autobet-stop-inline { display: flex; align-items: center; gap: 0.5rem; }
.autobet-stop-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; white-space: nowrap; }
.autobet-stop-input { flex: 1; min-width: 80px; }
.autobet-stop-input input[type="number"] {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-size: 0.88rem; padding: 0.45rem 0.75rem 0.45rem 1.65rem;
  width: 100%; transition: border-color 0.15s;
}
.autobet-stop-input input[type="number"]:focus { outline: none; border-color: rgba(0,255,106,0.5); }
.dice-input-suffix {
  position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
  font-size: 0.8rem; color: var(--text-muted); pointer-events: none;
}

@media (max-width: 600px) {
  .autobet-compact { grid-template-columns: 1fr; }
  .autobet-divider { height: 1px; width: auto; margin: 0.75rem 0; }
}

.dice-live-bar {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  justify-content: space-around;
}
.dice-live-stat { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.dice-live-stat span { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.dice-live-stat strong { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.dice-live-stat strong.green { color: var(--accent); }
.dice-live-stat strong.red   { color: #f87171; }

/* Risk indicator */
.risk-indicator {
  margin-top: 0.85rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.85rem 1.25rem 1.6rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.risk-indicator-top { display: flex; align-items: center; justify-content: space-between; }
.risk-label-text { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.lv-risk-badge {
  padding: 0.2rem 0.75rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
}
.risk-bar-track {
  position: relative; height: 8px;
  background: var(--bg4); border-radius: 100px; overflow: visible;
  margin-bottom: 1.1rem;
}
.risk-bar-fill {
  height: 100%; border-radius: 100px;
  transition: width 0.35s ease, background-color 0.35s ease;
  min-width: 8px;
}
.risk-bar-cap {
  position: absolute; top: 12px;
  font-size: 0.68rem; color: var(--text-muted); white-space: nowrap;
}
.risk-bar-cap.safe-end  { left: 0; }
.risk-bar-cap.risky-end { right: 0; }

/* Risk colors */
.risk-verysafe { background: rgba(0,255,106,0.15);  color: #00ff6a; border: 1px solid rgba(0,255,106,0.3); }
.risk-safe     { background: rgba(134,239,172,0.15); color: #86efac; border: 1px solid rgba(134,239,172,0.3); }
.risk-moderate { background: rgba(250,204,21,0.15);  color: #facc15; border: 1px solid rgba(250,204,21,0.3); }
.risk-risky    { background: rgba(251,146,60,0.15);  color: #fb923c; border: 1px solid rgba(251,146,60,0.3); }
.risk-extreme  { background: rgba(239,68,68,0.18);   color: #f87171; border: 1px solid rgba(239,68,68,0.35); }

.risk-bar-fill.risk-verysafe { background: #00ff6a; }
.risk-bar-fill.risk-safe     { background: #86efac; }
.risk-bar-fill.risk-moderate { background: #facc15; }
.risk-bar-fill.risk-risky    { background: #fb923c; }
.risk-bar-fill.risk-extreme  { background: #f87171; }

/* Results */
.dice-results { margin-top: 2.5rem; }
.dice-results.hidden { display: none; }
.dice-report-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.25rem; flex-wrap: wrap;
}
.dice-report-header h3 { font-size: 1.3rem; font-weight: 700; }
.dr-badge {
  padding: 0.25rem 0.85rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700;
}
.dr-badge.win  { background: rgba(0,255,106,0.15); color: var(--accent); border: 1px solid rgba(0,255,106,0.3); }
.dr-badge.loss { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.25); }
.dr-badge.bust { background: rgba(239,68,68,0.2);  color: #f87171; border: 1px solid rgba(239,68,68,0.4); font-weight: 800; }

#dice-chart {
  width: 100%; border-radius: var(--radius);
  background: var(--bg2); border: 1px solid var(--border);
  display: block; margin-bottom: 1.5rem;
}

.dice-stats-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.dice-stat-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.85rem 1rem;
}
.dice-stat-card .ds-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
.dice-stat-card .ds-val   { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.dice-stat-card .ds-val.green { color: var(--accent); }
.dice-stat-card .ds-val.red   { color: #f87171; }
.dice-stat-card .ds-sub   { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }

.dice-disclaimer { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ===== DISCLAIMER ===== */
.disclaimer {
  max-width: 820px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: center;
}
.disclaimer a { color: var(--text-muted); text-decoration: underline; }
.disclaimer p + p { margin-top: 0.85rem; }
.disclaimer-18 {
  font-size: 1rem; font-weight: 700;
  color: var(--accent); margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer a { color: var(--text-muted); text-decoration: underline; }
.footer a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text) !important;
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social-btn:hover {
  background: #1a1a1a;
  border-color: var(--accent);
  color: var(--accent) !important;
}
.footer-social-tg:hover {
  border-color: #29b6f6;
  color: #29b6f6 !important;
}

/* ===== BONUS CODE BOX ===== */
.bonus-code-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(0,255,106,0.08) 0%, rgba(0,255,106,0.03) 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem 2.5rem 0.9rem;
  margin: 1.25rem auto 1rem;
  gap: 0.2rem;
  box-shadow: 0 0 32px rgba(0,255,106,0.12);
}
.bonus-code-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bonus-code-value {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.12em;
  line-height: 1.1;
}
.bonus-code-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] {
  border-color: rgba(0,255,106,0.25);
}
.faq-q {
  list-style: none;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.97rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a strong { color: var(--text); }
.faq-a em { color: var(--accent); font-style: normal; font-family: monospace; font-size: 0.88rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .step-arrow { display: none; }
  .hero { padding: 4rem 1rem 3rem; }
  .section { padding: 3.5rem 1rem; }
  .section-title { font-size: 1.5rem; }
  .promo-block { gap: 2rem; }
  .promo-img { width: 100%; height: auto; max-width: 340px; }
  .promo-text h2 { font-size: 1.5rem; }
  .dice-live-bar { gap: 0.5rem; padding: 0.85rem 1rem; }
  .dice-live-stat strong { font-size: 0.95rem; }
  .dice-live-stat span  { font-size: 0.65rem; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { gap: 1rem; }
  .step { min-width: unset; max-width: 100%; }
  .dice-settings-grid { grid-template-columns: 1fr 1fr; }
  #d-wc-field { grid-column: 1 / -1; }
}
@media (max-width: 400px) {
  .dice-settings-grid { grid-template-columns: 1fr; }
  .dice-presets { gap: 0.4rem; }
  .dice-preset-btn { padding: 0.45rem 1rem; font-size: 0.82rem; }
}
