:root {
  --bg: #f4f7fb;
  --surface: #fff;
  --surface-soft: #f6f9fc;
  --text: #172033;
  --muted: #667085;
  --border: #d9e2ec;
  --primary: #0f7a3f;
  --primary-dark: #0a5d31;
  --accent: #f5a623;
  --radius: 18px;
  --shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
  --max-width: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
header {
  background: #101828;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo a {
  color: inherit;
  text-decoration: none;
}
.logo img {
  display: block;
  max-height: 44px;
  width: auto;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
.button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.section {
  max-width: var(--max-width);
  width: calc(100% - 40px);
  margin: 34px auto;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero {
  background: linear-gradient(135deg, #fff 0%, #eef8f1 100%);
}
h1 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 960px;
}
h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}
h3 {
  margin: 26px 0 10px;
  color: var(--text);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
p {
  margin: 0 0 18px;
  color: var(--text);
}
ul,
ol {
  margin: 12px 0 20px;
  padding-left: 22px;
}
li {
  margin: 7px 0;
}
table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
tr {
  border-bottom: 1px solid var(--border);
}
tr:last-child {
  border-bottom: 0;
}
th,
td {
  padding: 14px;
  text-align: left;
  vertical-align: top;
}
th {
  background: #101828;
  color: #fff;
  font-weight: 800;
}
td {
  color: var(--text);
}
.author-block {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  margin: 24px 0;
  padding: 20px;
  background: #eef8f1;
  border: 1px solid #cbe9d4;
  border-radius: var(--radius);
}
.author-photo {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #101828;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  border-radius: 50%;
}

.author-photo img {
  width: inherit;
  height: inherit;
  border-radius: inherit;
}

.author-block strong {
  display: block;
  font-size: 20px;
}
.author-block span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px;
}
.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.author-meta b {
  font-size: 12px;
  background: #fff;
  border: 1px solid #cbe9d4;
  border-radius: 999px;
  padding: 5px 9px;
}
.author-quote,
.expert-note {
  margin: 22px 0;
  padding: 18px 20px;
  background: #fff7e6;
  border: 1px solid #ffd591;
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  color: var(--text);
}
.comparison-table {
  margin: 22px 0;
  overflow-x: auto;
  border-radius: var(--radius);
}
.comparison-table table {
  min-width: 780px;
  margin: 0;
}
.compact-table table {
  min-width: 420px;
}
.casino-details {
  margin: 12px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
  overflow: hidden;
}
.casino-details summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  font-weight: 900;
}
.casino-details summary::-webkit-details-marker {
  display: none;
}
.casino-details summary:after {
  content: "+";
  font-size: 24px;
  color: var(--primary);
}
.casino-details[open] summary:after {
  content: "−";
}
.casino-details small {
  color: var(--muted);
  font-weight: 700;
}
.casino-details-rank {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #101828;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.casino-details-body {
  border-top: 1px solid var(--border);
  padding: 18px;
}
.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.pros-cons > div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-soft);
}
.pros-cons h3 {
  margin-top: 0;
  font-size: 20px;
}
.pros-cons.compact {
  margin-bottom: 10px;
}
.disclaimer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.faq-container .faq-item {
  margin: 0 auto 20px;
  position: relative;
  min-height: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.faq-container .faq-item:last-child {
  border-bottom: none;
}

.faq-container .faq-item:hover {
  border-color: var(--primary);
}
.faq-container .faq-item:hover .faq-question,
.faq-container .toggle:checked ~ .faq-question {
  color: var(--primary);
}
.faq-container .faq-question {
  margin: 16px 0 10px;
  padding: 8px 20px;
  background: var(--surface);
  color: var(--text);
  font-weight: 900;
  font-size: 20px;
  cursor: pointer;
}
.faq-container .faq-answer {
  padding: 0px 20px;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  transition: 0.4s;
}
.faq-container .icon {
  height: 24px;
  position: absolute;
  width: 24px;
  right: 18px;
  top: 18px;
  z-index: 2;
  border-radius: 50%;
  background: #e8f7ee;
}

.faq-container .icon::before {
  position: relative;
  left: 2px;
  top: 0px;
  content: "+";
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0f7a3f;
  font-weight: 700;
  transition: transform 0.5s;
}

.faq-container .toggle:checked ~ .icon:before {
  top: -2px;
  content: '-';
}

.faq-container .toggle {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  z-index: 3;
}


.faq-container .toggle:checked ~ .faq-answer {
  height: auto;
  opacity: 1;
  z-index: 2;
}

footer {
  margin-top: 42px;
  background: #101828;
  color: #fff;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 34px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}
.footer-brand {
  font-size: 22px;
  font-weight: 900;
}
.footer-brand p {
  margin-top: 10px;
  color: #d0d5dd;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 14px 22px;
}
.footer-links a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.fact-frame {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 24px;
}
.fact-item {
  padding: 16px;
  border: 1px solid #cbe9d4;
  border-radius: 14px;
  background: #f1fbf4;
}
.fact-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}
.fact-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.fact-title {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 10px;
}
.casino-ranking-table table {
  box-shadow: none;
  border: 1px solid var(--border);
}
.casino-main-row td {
  background: #fff;
}
.casino-review-row {
  border-bottom: 1px solid var(--border);
}
.casino-review-row td {
  padding: 0;
  background: #fbfdff;
}
.review-toggle {
  margin: 0;
}
.review-toggle summary {
  cursor: pointer;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 900;
  color: #0f7a3f;
  list-style: none;
}
.review-toggle summary::-webkit-details-marker {
  display: none;
}
.review-toggle summary:before {
  content: "+";
  display: inline-flex;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f7ee;
  color: #0f7a3f;
  font-weight: 900;
}
.review-toggle[open] summary:before {
  content: "−";
}
.casino-review {
  padding: 0 16px 16px;
}
.casino-review p {
  font-size: 15px;
  margin-bottom: 12px;
}
.casino-review .pros-cons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0;
}
.casino-review .pros-cons > div {
  padding: 14px;
  box-shadow: none;
}
.mini-title {
  font-weight: 900;
  margin: 0 0 8px;
}
.casino-review .disclaimer {
  font-size: 12px;
}
.copyright-only {
  display: block;
  text-align: center;
  color: #d0d5dd;
  font-size: 14px;
}
.footer-inner.copyright-only {
  grid-template-columns: 1fr;
}
@media (max-width: 820px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .header-actions {
    width: 100%;
  }
  .button {
    width: 100%;
  }
  .section {
    width: calc(100% - 24px);
    padding: 20px;
  }
  .author-block {
    grid-template-columns: 1fr;
  }
  .comparison-table table {
    min-width: 720px;
  }
  .casino-details summary {
    grid-template-columns: 34px 1fr;
  }
  .casino-details small {
    display: none;
  }
  .pros-cons,
  .casino-review .pros-cons,
  .fact-frame {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }
}
