/* Crypto Casino Verdict — Hype.Bet review page
   Adapted from drakedick.com structural template, retuned for YMYL casino niche.
   Palette: deep navy + slate + accent gold (trust signals over meme-red). */

:root {
  --bg: #0e1320;
  --surface: #161d2e;
  --surface-2: #1f2a40;
  --border: #2a3654;
  --text: #e5ebf5;
  --text-muted: #8d9bb5;
  --text-dim: #5e6c87;
  --accent: #f5b942;
  --accent-hover: #ffc857;
  --good: #4ade80;
  --bad: #f87171;
  --link: #7cb7ff;
  --link-hover: #a8d0ff;
  --shadow: 0 8px 24px rgba(0,0,0,0.35);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* HEADER */
.page-header { margin-bottom: 40px; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245, 185, 66, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 185, 66, 0.25);
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #fff;
}

.subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 16px;
}

.byline {
  font-size: 14px;
  color: var(--text-dim);
  font-style: italic;
}

.byline strong { color: var(--text-muted); font-style: normal; }

/* VERDICT BOX */
.verdict-box {
  display: flex;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 22px 26px;
  border-radius: var(--radius);
  margin: 32px 0;
  box-shadow: var(--shadow);
}

.verdict-rating {
  flex-shrink: 0;
  text-align: center;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}

.rating-num {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.rating-out {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 2px;
}

.rating-stars {
  display: block;
  color: var(--accent);
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 2px;
}

.verdict-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}

.verdict-text strong { color: #fff; }

.verdict-text a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 185, 66, 0.4);
  font-weight: 600;
}

.verdict-text a:hover { color: var(--accent-hover); border-bottom-color: var(--accent-hover); }

/* HR */
hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* SECTIONS */
section { margin-bottom: 8px; }

h2 {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 18px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-top: 22px;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 14px;
}

p strong { color: #fff; font-weight: 600; }

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

/* TWO-COLUMN ROW */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.col-left, .col-text { min-width: 0; }

.col-photo { display: flex; flex-direction: column; align-items: stretch; gap: 0; }

.text-block { margin-bottom: 24px; }

/* PHOTO FRAME */
.photo-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  width: 100%;
}

.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  min-height: 280px;
}

.photo-label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

/* POLL */
.poll-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
}

.poll-header {
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}

.poll-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.poll-options { display: flex; flex-direction: column; gap: 8px; }

.poll-option {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  color: var(--text);
}

.poll-option:hover:not(.voted) {
  border-color: var(--accent);
  background: rgba(245, 185, 66, 0.05);
}

.poll-option.voted { cursor: default; }

.poll-option.selected {
  border-color: var(--accent);
  background: rgba(245, 185, 66, 0.08);
}

.poll-option-label {
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
  position: relative;
}

.poll-bar {
  display: none;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
  z-index: 2;
  position: relative;
}

.poll-option.voted .poll-bar { display: block; }

.poll-bar-fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  border-radius: 3px;
  transition: width 0.6s ease;
}

.poll-option-count {
  display: none;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 600;
  z-index: 2;
  position: relative;
}

.poll-option.voted .poll-option-count { display: block; }

/* CTA */
.cta-card {
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.12), rgba(245, 185, 66, 0.04));
  border: 1px solid rgba(245, 185, 66, 0.25);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
  margin: 16px 0 8px;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #1a1a1a;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  text-decoration: none;
  color: #1a1a1a;
}

.cta-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 0;
}

/* DISAMBIG LIST */
.disambig-list, .check-list, .x-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.disambig-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
  color: var(--text);
}

.disambig-list li:last-child { border-bottom: none; }

.disambig-list li::before {
  content: "→";
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}

.disambig-list li strong { color: #fff; }

.check-list li, .x-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--good);
  font-weight: 700;
}

.x-list li::before {
  content: "✗";
  position: absolute;
  left: 4px;
  color: var(--bad);
  font-weight: 700;
}

.check-list li strong, .x-list li strong { color: #fff; }

/* ALTERNATIVES GRID */
.alts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 26px 0;
}

.alt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  transition: all 0.2s ease;
}

.alt-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.alt-rank {
  position: absolute;
  top: -12px;
  right: 18px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.alt-card h3 {
  font-size: 22px;
  margin-top: 4px;
  margin-bottom: 8px;
  color: #fff;
}

.alt-pitch {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.55;
}

.alt-why {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.alt-why em { color: var(--accent); font-style: normal; font-weight: 600; }

.alt-cta {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.15s ease;
}

.alt-cta:hover {
  background: var(--accent);
  color: #1a1a1a;
  text-decoration: none;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 24px 0;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.faq-item h3 {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 8px;
  color: #fff;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

/* FOOTER */
footer {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

footer p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

footer p strong { color: var(--text); font-weight: 600; }

footer .disclosure {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text);
}

footer .muted { color: var(--text-dim); font-size: 12px; }

/* RESPONSIVE */
@media (max-width: 720px) {
  .page { padding: 32px 18px 60px; }
  h1 { font-size: 28px; }
  .row { grid-template-columns: 1fr; gap: 24px; }
  .alts-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .verdict-box { flex-direction: column; align-items: flex-start; gap: 16px; }
  .verdict-rating { padding-right: 0; padding-bottom: 14px; border-right: none; border-bottom: 1px solid var(--border); width: 100%; text-align: left; display: flex; align-items: baseline; gap: 12px; }
  .verdict-rating .rating-stars { margin-top: 0; }
  .photo-frame { max-width: 100%; }
  hr { margin: 32px 0; }
}

@media (max-width: 420px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  .subtitle { font-size: 16px; }
  .alt-card { padding: 18px; }
}

/* PRINT */
@media print {
  .cta-card, .poll-card { display: none; }
  body { background: white; color: black; }
}
