:root {
  --bg: #f2f6f7;
  --paper: #ffffff;
  --ink: #1d2939;
  --muted: #667085;
  --line: #e4e7ec;
  --accent: #ff6b5f;
  --accent-dark: #e95246;
  --blue: #243b53;
  --blue-2: #102a43;
  --soft: #fff6f3;
  --good: #e8f8ef;
  --warn: #fff4df;
  --bad: #fff0f0;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(16, 42, 67, 0.08);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: linear-gradient(180deg, #eef6f6 0%, #f7f9fb 55%, #eef3f7 100%);
  font-family: Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
}
a {
  color: inherit;
}
header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.04);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  height: 58px;
  width: 180px;
  border-radius: 14px;
  background: linear-gradient(135deg, #102a43, #243b53);
  position: relative;
  overflow: hidden;
      display: flex;
    justify-content: center;
    align-items: center;
}
.logo img {
    height: 45px;
    width: 169px;
}
.header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.button {
  border: 0;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(255, 107, 95, 0.24);
}
.button:hover {
  background: var(--accent-dark);
}
.button.secondary {
  background: #eef2f6;
  color: var(--blue);
  box-shadow: none;
}
.section {
  max-width: 1160px;
  margin: 26px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(228, 231, 236, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero {
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(255, 107, 95, 0.25),
      transparent 28%
    ),
    linear-gradient(135deg, #102a43 0%, #243b53 58%, #31506e 100%);
  color: #fff;
  border: 0;
  padding: 42px;
}
.hero h1 {
  color: #fff;
  max-width: 900px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  margin: 0 0 20px;
}
.hero p {
  max-width: 930px;
  color: #eef6ff;
  font-size: 18px;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-badges span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
}
h1,
h2,
h3 {
  line-height: 1.2;
  color: var(--blue-2);
}
h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
h3 {
  font-size: 22px;
  margin: 24px 0 10px;
}
p {
  margin: 0 0 16px;
}
ul,
ol {
  margin: 16px 0 18px;
  padding-left: 0;
  list-style: none;
}
li {
  margin: 10px 0;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
li:before {
  content: "•";
  color: var(--accent);
  font-weight: 900;
  margin-right: 8px;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  margin: 20px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
tr:first-child td {
  background: #f4f7fb;
  color: var(--blue-2);
  font-weight: 800;
}
tr:last-child td {
  border-bottom: 0;
}
tr:nth-child(even) td {
  background: #fbfcfe;
}
.td-cta {
  font-weight: 800;
  color: var(--accent);
}
.casino-grid,
.goal-grid,
.card-grid,
.bonus-grid,
.mode-grid,
.volatility-grid,
.slot-grid,
.mobile-grid,
.audit-grid,
.red-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.casino-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.casino-card,
.goal-card,
.info-card,
.bonus-card,
.mode-card,
.volatility-card,
.slot-card,
.mobile-card,
.audit-card,
.red-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.05);
}
.casino-card {
  background: linear-gradient(180deg, #fff, #fff7f5);
}
.casino-card h3,
.goal-card h3,
.info-card h3,
.bonus-card h3,
.mode-card h3,
.volatility-card h3,
.slot-card h3,
.mobile-card h3,
.audit-card h3,
.red-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.rank {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-2);
  color: #fff;
  font-weight: 900;
  margin-bottom: 10px;
}
.metric {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin: 6px 0;
}
.score-board {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}
.score-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.score-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}
.score-bar {
  height: 10px;
  border-radius: 999px;
  background: #eef2f6;
  overflow: hidden;
}
.score-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ffb25f);
  border-radius: 999px;
}
.bar-30 {
  width: 30%;
}
.bar-20 {
  width: 20%;
}
.bar-15 {
  width: 15%;
}
.expert-note {
  border-left: 5px solid var(--accent);
  background: var(--soft);
  border-radius: 16px;
  padding: 18px;
  margin: 20px 0;
  font-weight: 700;
}
.warning-box {
  border: 1px solid #ffd5cc;
  background: #fff6f3;
  border-radius: 16px;
  padding: 18px;
  margin: 20px 0;
}
.warning-box h3 {
  color: #b42318;
}
.steps {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}
.step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 166px;
}
.step-number {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--blue-2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.low {
  background: var(--good);
}
.medium {
  background: var(--warn);
}
.high,
.risk,
.red-card {
  background: var(--bad);
}
.faq-container {
  display: grid;
  gap: 14px;
}
.faq-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 56px 18px 18px;
}
.toggle {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.faq-question {
  margin: 0;
  font-size: 18px;
}
.icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
}
.icon:before,
.icon:after {
  content: "";
  position: absolute;
  background: #fff;
  left: 7px;
  right: 7px;
  top: 12px;
  height: 2px;
}
.icon:after {
  transform: rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  transition:
    max-height 0.25s ease,
    margin 0.25s ease;
}
.toggle:checked ~ .faq-answer {
  max-height: 600px;
  margin-top: 14px;
}
.toggle:checked ~ .icon:after {
  display: none;
}
.author-block {
  max-width: 1160px;
  margin: 26px auto;
  padding: 22px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: center;
}
.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--blue-2);
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-block p {
  margin: 0;
  color: var(--muted);
}
footer {
  background: #102a43;
  color: #d9e2ec;
  margin-top: 36px;
  padding: 34px 20px;
  text-align: center;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto 14px;
}
.footer-brand p {
  margin: 6px 0;
}

.article-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: -6px 0 22px;
  color: #eef6ff;
  font-weight: 800;
}
.article-meta span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 8px 12px;
}
.goal-rows,
.horizontal-rows,
.feature-rows {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.goal-row,
.horizontal-row,
.feature-rows .slot-card,
.feature-rows .mobile-card {
  display: grid;
  grid-template-columns: 240px 26px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.05);
}
.goal-casino,
.horizontal-row h3,
.feature-rows h3 {
  font-weight: 900;
  color: var(--blue-2);
  margin: 0;
  font-size: 18px;
}
.goal-dash {
  font-weight: 900;
  color: var(--accent);
  text-align: center;
}
.goal-text,
.horizontal-row p,
.feature-rows p {
  margin: 0;
}
.horizontal-row,
.feature-rows .slot-card,
.feature-rows .mobile-card {
  grid-template-columns: 280px 1fr;
}
..showcase-compare table {
  border-collapse: separate;
  border-spacing: 0 12px;
  background: #f4f7fb;
  padding: 10px;
}
.showcase-compare tr:first-child td {
  background: #102a43;
  color: #fff;
}
.showcase-compare tr:not(:first-child) td {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.showcase-compare tr:not(:first-child) td:first-child {
  border-left: 1px solid var(--line);
  border-radius: 14px 0 0 14px;
  font-weight: 900;
}
.showcase-compare tr:not(:first-child) td:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 14px 14px 0;
}
.table-button {
  padding: 9px 14px;
  font-size: 14px;
  white-space: nowrap;
}
.score-table table {
  min-width: 620px;
}
.score-table tr:first-child td {
  text-align: center;
  background: #f4f7fb;
  color: var(--blue-2);
  font-weight: 900;
  font-size: 18px;
}
.score-table tr:nth-child(2) td,
.score-table tr:nth-child(3) td,
.score-table tr:nth-child(4) td,
.score-table tr:nth-child(5) td,
.score-table tr:nth-child(6) td {
  background: #fff;
}
.score-table td:nth-child(1) {
  font-weight: 800;
  color: var(--blue-2);
}
.score-table td:nth-child(2) {
  font-weight: 900;
  color: var(--accent);
  white-space: nowrap;
}
.inline-heading {
  font-weight: 900;
  color: var(--blue-2);
  font-size: 18px;
  margin: 0 0 14px;
}

@media (max-width: 980px) {
  .casino-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .goal-grid,
  .card-grid,
  .bonus-grid,
  .mode-grid,
  .volatility-grid,
  .slot-grid,
  .mobile-grid,
  .audit-grid,
  .red-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .section,
  .hero {
    margin: 16px;
    padding: 20px;
  }
  .casino-grid,
  .goal-grid,
  .card-grid,
  .bonus-grid,
  .mode-grid,
  .volatility-grid,
  .slot-grid,
  .mobile-grid,
  .audit-grid,
  .red-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 34px;
  }
  .author-block {
    margin: 16px;
    align-items: flex-start;
  }
  .article-meta {
    margin: 0 0 18px;
  }
  .goal-row {
    grid-template-columns: 1fr 20px 1fr;
  }
  .horizontal-row,
  .feature-rows .slot-card,
  .feature-rows .mobile-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* heading-structure fixes */
.card-title {
  display: block;
  font-weight: 900;
  color: var(--blue-2);
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 10px;
}
.casino-card .card-title {
  font-size: 18px;
}
.horizontal-row .card-title,
.feature-rows .card-title {
  margin: 0;
}
.feature-rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}
.feature-rows .bonus-card,
.feature-rows .mode-card,
.feature-rows .slot-card,
.feature-rows .mobile-card,
.feature-rows .audit-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.05);
}
.feature-rows .bonus-card.risk,
.feature-rows .slot-card.risk {
  background: var(--bad);
}
.feature-rows .bonus-card h3,
.feature-rows .slot-card h3 {
  margin: 0;
  font-size: 18px;
}
.feature-rows .bonus-card p,
.feature-rows .mode-card p,
.feature-rows .slot-card p,
.feature-rows .mobile-card p,
.feature-rows .audit-card p {
  margin: 0;
}
.audit-rows .audit-card {
  background: #fff;
}
.red-list,
.check-list {
  list-style: none;
  padding-left: 0;
  margin: 18px 0;
}
.red-list li,
.check-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 10px 0;
}
.red-list li {
  background: var(--bad);
}
.li-label {
  font-weight: 900;
  color: var(--blue-2);
}
.red-list li:before,
.check-list li:before {
  content: "•";
  color: var(--accent);
  font-weight: 900;
  margin-right: 8px;
}
.mobile-rows .mobile-card {
  grid-template-columns: 240px 1fr;
}
.audit-rows .audit-card {
  grid-template-columns: 260px 1fr;
}
.bonus-rows .bonus-card {
  grid-template-columns: 250px 1fr;
}
.mode-rows .mode-card {
  grid-template-columns: 220px 1fr;
}
@media (max-width: 700px) {
  .feature-rows .bonus-card,
  .feature-rows .mode-card,
  .feature-rows .slot-card,
  .feature-rows .mobile-card,
  .feature-rows .audit-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
