:root {
  color-scheme: light;
  --ink: #15201b;
  --muted: #667085;
  --line: #d7deca;
  --soft: #f7faf5;
  --surface: #ffffff;
  --brand: #f97316;
  --brand-dark: #9a3412;
  --green: #1f7a52;
  --dark: #14231d;
  --shadow: 0 16px 44px rgba(20, 35, 29, 0.10);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  letter-spacing: 0;
}

a { color: inherit; }

.wrap {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header,
.site-footer {
  background: var(--dark);
  color: #fff;
}

.site-header .wrap,
.site-footer .wrap {
  padding: 18px 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff7ed;
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
}

.hero {
  padding: 54px 0 36px;
  background:
    linear-gradient(120deg, rgba(20, 35, 29, 0.94), rgba(31, 122, 82, 0.88)),
    url('/assets/images/hero-pattern.svg');
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 28px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.10);
}

.section {
  padding: 34px 0;
}

.section-alt {
  background: var(--soft);
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0;
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
  margin: 0 0 22px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.casino-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}

.casino-card-top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.casino-logo {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  border: 1px solid var(--line);
  object-fit: contain;
  background: #fff;
}

.logo-placeholder {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf5ef;
  color: var(--green);
  font-weight: 900;
  border: 1px solid var(--line);
}

.casino-title {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
}

.muted { color: var(--muted); }

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.badge-green {
  background: #eaf5ef;
  color: var(--green);
}

.rating {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-weight: 900;
  color: var(--green);
}

.rating small {
  font-weight: 600;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.cta,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.cta {
  background: var(--brand);
  color: #111;
}

.cta:hover {
  background: #fb923c;
}

.cta[aria-disabled="true"] {
  background: #e5e7eb;
  color: #6b7280;
  pointer-events: none;
}

.secondary-link {
  border: 1px solid var(--line);
  color: var(--ink);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--soft);
  font-size: 13px;
  color: var(--muted);
}

.notice {
  border-left: 4px solid var(--brand);
  background: #fff7ed;
  padding: 15px;
  border-radius: 6px;
}

.notice-green {
  border-left-color: var(--green);
  background: #eaf5ef;
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.fact {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.fact-label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 4px;
}

.list-clean {
  padding-left: 18px;
  margin: 8px 0 0;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  color: var(--muted);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .casino-card-top {
    align-items: flex-start;
  }

  .cta,
  .secondary-link {
    width: 100%;
  }
}