:root {
  --co10-bg: #f5ecdc;
  --co10-bg-deep: #ecdfc6;
  --co10-card: #fbf3e3;
  --co10-text: #3d2c1e;
  --co10-muted: #6b5040;
  --co10-terracotta: #c2552d;
  --co10-terracotta-soft: #e07757;
  --co10-olive: #7a8c3f;
  --co10-mustard: #d4a017;
  --co10-shadow: 0 14px 30px rgba(120,80,40,0.18), inset 0 -6px 0 rgba(120,80,40,0.08), inset 0 2px 0 rgba(255,255,255,0.7);
  --co10-shadow-strong: 0 20px 38px rgba(120,80,40,0.24), inset 0 -6px 0 rgba(120,80,40,0.08), inset 0 2px 0 rgba(255,255,255,0.7);
  --co10-radius: 26px;
  --co10-shell: min(1140px, calc(100vw - 32px));
}

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

html, body { overflow-x: clip; max-width: 100%; }

html {
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 1px 1px, rgba(120,80,40,0.05) 1px, transparent 0),
    linear-gradient(180deg, #f5ecdc 0%, #ecdfc6 100%);
  background-size: 5px 5px, auto;
}

body {
  margin: 0;
  color: var(--co10-text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  background: transparent;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select { font: inherit; }

.co10-shell { width: var(--co10-shell); margin: 0 auto; }
.co10-page { min-height: 100vh; }
.co10-section { padding: 42px 0; }
.co10-section-head { max-width: 760px; margin-bottom: 24px; }
.co10-section-head h1, .co10-section-head h2, .co10-card h3, .co10-footer h2, .co10-age-box h2 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.05;
  margin: 0 0 14px;
}

.co10-kicker,
.co10-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #edd8a2;
  color: var(--co10-text);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 rgba(120,80,40,0.12), inset 0 2px 0 rgba(255,255,255,0.5);
}

.co10-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 260;
  height: 6px;
  background: rgba(255,255,255,0.28);
}

.co10-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--co10-olive), var(--co10-terracotta));
  border-radius: 0 999px 999px 0;
}

.co10-header {
  position: sticky;
  top: 0;
  z-index: 220;
  padding: 18px 0 0;
}

.co10-header.co10-header-sticky .co10-header-inner {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(80,55,25,0.16), inset 0 -4px 0 rgba(120,80,40,0.08), inset 0 2px 0 rgba(255,255,255,0.7);
}

.co10-header-inner,
.co10-card,
.co10-counter-card,
.co10-calculator-card,
.co10-method-table table,
.co10-method-copy,
.co10-rg-card,
.co10-about-card,
.co10-faq-item,
.co10-footer-grid,
.co10-legal-card,
.co10-compare-table,
.co10-cookie-banner,
.co10-age-box {
  background: var(--co10-card);
  border-radius: var(--co10-radius);
  box-shadow: var(--co10-shadow);
}

.co10-header-inner {
  width: var(--co10-shell);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.co10-brand,
.co10-brand-logo {
  flex-shrink: 0;
  min-width: 0;
}

.co10-brand { display: inline-flex; align-items: center; max-width: min(320px, 42vw); }
.co10-brand-logo { width: 100%; height: auto; display: block; }

.co10-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.co10-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
}

.co10-nav a:hover {
  box-shadow: inset 0 0 0 1px rgba(120,80,40,0.12);
  background: rgba(255,255,255,0.34);
}

.co10-nav a[aria-current="page"]::before,
.co10-nav a:hover::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--co10-mustard);
}

.co10-burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #f6ead3;
  box-shadow: var(--co10-shadow);
  cursor: pointer;
}

.co10-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--co10-text);
  margin: 4px auto;
  border-radius: 999px;
}

.co10-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(61,44,30,0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 205;
}

.co10-hero { padding: 36px 0 26px; }
.co10-hero-copy {
  position: relative;
  padding: clamp(26px, 5vw, 52px);
  border-radius: 38px;
  background: rgba(251,243,227,0.72);
}

.co10-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 600;
}

.co10-hero h1 span {
  color: var(--co10-terracotta);
  font-style: italic;
}

.co10-hero-wave { width: 180px; height: auto; margin: 16px 0 18px; }
.co10-hero-subline { max-width: 640px; margin: 0 0 24px; font-weight: 500; color: var(--co10-muted); }

.co10-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.co10-counter-card {
  padding: 18px;
  text-align: center;
  animation: co10FloatIn 0.8s ease both paused;
}

.co10-counter-card.co10-visible { animation-play-state: running; }

.co10-counter {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--co10-terracotta);
}

.co10-hero-blob {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 138px;
  height: 138px;
  border-radius: 42% 58% 55% 45% / 44% 38% 62% 56%;
  background: linear-gradient(180deg, #e07757, #c2552d);
  opacity: 0.14;
}

.co10-cta-btn,
.co10-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

.co10-cta-btn,
.co10-button-primary {
  background: linear-gradient(180deg, #e07757 0%, #c2552d 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(194,85,45,0.35), inset 0 -4px 0 rgba(120,40,20,0.25), inset 0 2px 0 rgba(255,180,150,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.co10-cta-btn:hover,
.co10-button-primary:hover { transform: translateY(2px); }

.co10-button-secondary {
  background: #efe1c4;
  color: var(--co10-text);
  box-shadow: inset 0 -3px 0 rgba(120,80,40,0.12), inset 0 2px 0 rgba(255,255,255,0.7);
}

.co10-table-wrap { overflow-x: auto; width: 100%; max-width: 100%; }

.co10-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.co10-compare-table th,
.co10-compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(120,80,40,0.12);
  text-align: left;
}

.co10-compare-table th:last-child,
.co10-compare-table td:last-child { border-right: 0; }
.co10-compare-table tbody tr:last-child td { border-bottom: 0; }
.co10-compare-table th button { border: 0; background: transparent; color: inherit; cursor: pointer; font-weight: 700; }

.co10-casino-list { display: grid; gap: 18px; }
.co10-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.co10-card.co10-hover-ready:hover {
  transform: translateY(-3px);
  box-shadow: var(--co10-shadow-strong);
}

.co10-card-left { display: grid; gap: 12px; align-content: start; }
.co10-rank-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(180deg, #e07757, #c2552d);
  color: #fff;
  box-shadow: inset 0 2px 0 rgba(255,220,210,0.6), inset 0 -3px 0 rgba(120,40,20,0.28);
}

.co10-logo-wrap {
  width: 120px;
  min-height: 82px;
  padding: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.45);
  border-radius: 22px;
}

.co10-rating { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-weight: 700; }
.co10-rating-ball {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e3d4ba;
  box-shadow: inset 0 2px 3px rgba(61,44,30,0.15);
}
.co10-filled { background: linear-gradient(180deg, #e07757, #c2552d); }
.co10-half { background: linear-gradient(90deg, #c2552d 0 50%, #e3d4ba 50% 100%); }

.co10-card-top { display: flex; justify-content: space-between; align-items: start; gap: 12px; }
.co10-card-top h3 { margin: 0; font-size: 1.65rem; }
.co10-bonus-text { margin: 0; font-size: 1.08rem; font-weight: 700; color: var(--co10-terracotta); }
.co10-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edd8a2;
  color: var(--co10-text);
  font-size: 0.9rem;
  font-weight: 600;
}

.co10-pill-olive { background: #7a8c3f; color: #f7f0df; }
.co10-pill-mustard { background: #d4a017; color: #3d2c1e; }
.co10-pill-terracotta { background: #e7b19f; color: #6a2f15; }
.co10-feature-row { display: flex; flex-wrap: wrap; gap: 10px; }
.co10-divider { height: 1px; background: rgba(120,80,40,0.15); margin: 14px 0; }
.co10-detail-list { margin: 0; padding-left: 18px; color: var(--co10-muted); }
.co10-blurb, .co10-disclaimer, .co10-calc-note { margin: 0; }
.co10-disclaimer { color: var(--co10-muted); font-size: 0.92rem; }

.co10-calculator-card,
.co10-method-copy,
.co10-rg-card,
.co10-about-card,
.co10-legal-card { padding: 24px; }

.co10-calculator {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.co10-field { display: grid; gap: 8px; font-weight: 600; }
.co10-field input,
.co10-field select {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 18px;
  background: #fff8ea;
  color: var(--co10-text);
  box-shadow: inset 0 2px 3px rgba(120,80,40,0.14);
}

.co10-calc-results,
.co10-method-grid,
.co10-footer-grid {
  display: grid;
  gap: 18px;
}

.co10-calc-results {
  margin: 18px 0 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.co10-calc-results article {
  padding: 18px;
  border-radius: 22px;
  background: #f7ebd2;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.55), inset 0 -4px 0 rgba(120,80,40,0.08);
}

.co10-calc-results span,
.co10-method-copy p,
.co10-rg-card p,
.co10-about-card p,
.co10-legal-card p,
.co10-legal-card li,
.co10-section-head p { color: var(--co10-muted); }

.co10-calc-results strong { display: block; margin-top: 10px; font-size: 1.45rem; font-family: "Fraunces", Georgia, serif; color: var(--co10-text); }

.co10-method-grid { grid-template-columns: 1fr 1.2fr; }
.co10-method-table table { width: 100%; border-collapse: collapse; }
.co10-method-table th,
.co10-method-table td { padding: 14px 16px; border-bottom: 1px solid rgba(120,80,40,0.12); text-align: left; }

.co10-about-card,
.co10-rg-card,
.co10-legal-card { display: grid; gap: 16px; }
.co10-age-inline {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0dfb6;
  font-weight: 700;
}

.co10-faq-block { margin-top: 30px; }
.co10-faq { display: grid; gap: 12px; }
.co10-faq-item { overflow: hidden; }
.co10-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 22px;
  text-align: left;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  color: var(--co10-text);
  cursor: pointer;
}
.co10-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 22px;
}
.co10-faq-item.co10-open .co10-faq-answer { padding-bottom: 18px; }

.co10-footer { padding: 18px 0 38px; }
.co10-footer-grid { grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr); padding: 24px; }
.co10-footer-links { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 16px; }
.co10-footer-side p:last-child { font-weight: 600; }

.co10-cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  width: min(430px, calc(100vw - 24px));
  padding: 20px;
  display: none;
}
.co10-cookie-banner[data-co10-cookie-state="visible"] { display: block; }
.co10-cookie-actions,
.co10-age-actions { display: flex; gap: 10px; margin-top: 14px; }
.co10-age-mark { margin: 0 0 12px; font-weight: 700; color: var(--co10-terracotta); }

.co10-legal-hero { padding-bottom: 10px; }
.co10-legal-card h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
}

@keyframes co10FloatIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .co10-nav {
    position: fixed;
    top: 86px;
    right: 16px;
    width: min(320px, 85vw);
    padding: 18px;
    border-radius: 28px;
    background: var(--co10-card);
    box-shadow: var(--co10-shadow-strong);
    transform: translateY(-10px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
    z-index: 210;
  }
  body.co10-nav-open .co10-nav {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  body.co10-nav-open .co10-nav-backdrop { opacity: 1; pointer-events: auto; }
  .co10-nav ul { flex-direction: column; align-items: stretch; }
  .co10-burger { display: block; }
  .co10-counter-grid,
  .co10-method-grid,
  .co10-footer-grid,
  .co10-calc-results,
  .co10-calculator { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  h1 { font-size: clamp(1.6rem, 5vw, 2.4rem) !important; }
  h2 { font-size: clamp(1.2rem, 4vw, 1.8rem) !important; }
  h3 { font-size: clamp(1rem, 3.5vw, 1.3rem) !important; }
  .co10-bonus-text, [class*="co10-bonus"] { font-size: clamp(0.95rem, 2.5vw, 1.15rem) !important; }
  .co10-hero h1, [class*="co10-hero"] h1 { font-size: clamp(1.8rem, 6vw, 2.8rem) !important; }
  .co10-card { padding: 16px !important; }
}

@media (max-width: 550px) {
  html, body { overflow-x: clip; max-width: 100%; }
  .co10-page * { max-width: 100%; }
  .co10-casino-list, .co10-grid { grid-template-columns: 1fr !important; min-width: 0; }
  .co10-casino-list > *, .co10-grid > * { min-width: 0; }
  .co10-card { flex-direction: column !important; min-width: 0; padding: 12px !important; grid-template-columns: 1fr !important; }
  .co10-card * { min-width: 0; max-width: 100%; }
  .co10-card-top { flex-wrap: wrap; gap: 8px; }
  .co10-logo-wrap { width: min(200px, 85%); min-height: 56px; margin: 0 auto 8px; }
  .co10-cta-btn, .co10-button,
  .co10-age-box button, .co10-age-box a,
  .co10-cookie-actions button, .co10-cookie-actions a {
    width: 100% !important; max-width: 100%;
    white-space: normal; word-break: break-word; overflow-wrap: anywhere; display: block;
  }
  .co10-age-box, .co10-cookie-actions, .co10-age-actions {
    display: flex !important; flex-direction: column !important;
    gap: 10px !important; align-items: stretch !important;
  }
  h1 { font-size: clamp(1.25rem, 6vw, 2rem) !important; }
  h2 { font-size: clamp(1.1rem, 5vw, 1.6rem) !important; }
  h3 { font-size: clamp(0.95rem, 4vw, 1.2rem) !important; }
  .co10-bonus-text, [class*="co10-bonus"] { font-size: 0.95rem !important; }
  .co10-card:hover { transform: none !important; }
  table { table-layout: auto; width: 100%; min-width: 0; }
  .co10-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; max-width: 100%; }
  .co10-table-wrap table { min-width: max-content; width: max-content; }
  thead th { white-space: nowrap; }
  td { word-break: normal; overflow-wrap: break-word; hyphens: none; }
  .co10-payment-grid, .co10-method-grid,
  [class*="co10-payment"], [class*="co10-method"] { grid-template-columns: 1fr !important; min-width: 0; }
  .co10-header-inner {
    display: flex !important; flex-wrap: nowrap !important;
    justify-content: space-between !important; align-items: center !important; gap: 0 8px !important;
  }
  .co10-brand-logo, .co10-logo, [class*="co10-brand"] {
    flex-shrink: 0 !important; min-width: 0 !important;
  }
  .co10-burger { flex-shrink: 0 !important; }
  .co10-nav { max-width: min(320px, 85vw) !important; }
  .co10-timeline, .co10-faq, .co10-footer { word-break: break-word; overflow-wrap: anywhere; }
}

@media (max-width: 380px) {
  h1 { font-size: clamp(1.1rem, 7vw, 1.5rem) !important; }
  h3 { font-size: clamp(0.9rem, 4vw, 1.1rem) !important; }
  .co10-bonus-text, [class*="co10-bonus"] { font-size: 0.85rem !important; }
  .co10-card { padding: 10px !important; }
}
