:root {
  --bg: #e9e9e9;
  --card: #ffffff;
  --text: #0f1115;
  --muted: #434343;
  --primary: #1a237e;
  --primary-2: #1f2a89;
  --accent: #f4d24a;
  --border: #c8c8c8;
  --ok: #16a34a;
  --danger: #dc2626;
  --olive: #b0bb3e;
  --header-bg: #ffffff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}
body.menu-lock {
  overflow: hidden;
}

.container {
  width: min(1040px, 95vw);
  margin: 0 auto;
}

.site-header {
  background: var(--header-bg);
  border-left: 1px solid #2f2f2f;
  border-right: 1px solid #2f2f2f;
  border-top: 1px solid #2f2f2f;
}
.header-top {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 5px solid var(--olive);
  padding: 6px 12px;
}
.logo {
  display: inline-block;
  text-decoration: none;
  
}
.logo img {
  display: block;
  width: 200px;
  height: 80px;
}
.header-nav-wrap {
  border-bottom: 5px solid var(--olive);
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 6px 10px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: min(1020px, 96vw);
}
.header-nav a {
  color: #111111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 18px 13px;
  border: 1px solid #a6b537;
  background: #b1bf3d;
  border-radius: 0 0 0 30px;
}
.header-nav a:hover,
.header-nav a:focus-visible {
  background: #a8b635;
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #8a8a8a;
  background: #f2f2f2;
  color: #404040;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.menu-toggle-icon {
  transform: translateY(-1px);
}
.menu-toggle:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}
.menu-close,
.menu-backdrop {
  display: none;
}

@media (max-width: 980px) {
  .header-top {
    justify-content: space-between;
    min-height: 68px;
    padding: 8px 14px;
  }
  .logo img {
    width: 170px;
    height: auto;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .header-nav-wrap {
    display: block;
    position: fixed;
    inset: 0 auto 0 0;
    width: min(86vw, 360px);
    background: #efefef;
    border-right: 1px solid #8f8f8f;
    border-bottom: 0;
    padding: 96px 18px 18px;
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .site-header.menu-open .header-nav-wrap {
    transform: translateX(0);
  }
  .menu-close {
    display: inline-flex;
    position: absolute;
    top: 60px;
    right: 12px;
    width: 44px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 2px solid #757575;
    background: #f7f7f7;
    color: #222;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
  }
  .menu-close span {
    transform: translateY(-2px);
  }
  .menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(19, 23, 40, 0.5);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
  }
  .site-header.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header-nav {
    width: 100%;
    gap: 10px;
    justify-content: stretch;
    flex-direction: column;
    margin-top: 12px;
  }
  .header-nav a {
    width: 100%;
    text-align: left;
    font-size: 15px;
    padding: 11px 14px 12px;
    border-radius: 0 0 0 20px;
  }
}

.hero {
  padding: 26px 0 8px;
  width: min(840px, 100%);
}
.hero h1 {
  font-size: clamp(1.9rem, 2.8vw, 2.95rem);
  line-height: 1.08;
  margin: 0 0 10px;
  font-weight: 800;
}
.hero h2 {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 800;
}
.hero p {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
.last-updated {
  font-size: 14px;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.card-list {
  display: grid;
  gap: 14px;
  margin: 8px 0 12px;
}
.casino-card {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #fff;
  border-radius: 8px;
  border: 1px solid #2535aa;
  display: grid;
  grid-template-columns: 165px 205px minmax(260px, 1fr) 185px;
  align-items: center;
  gap: 11px;
  min-height: 114px;
  padding: 11px 13px;
}
.casino-logo { width: 132px; height: 63px; border-radius: 5px; display: block; margin-left: 3px; }
.card-main { border-right: 1px solid #2f5adf; padding-right: 11px; min-height: 83px; }
.card-title { font-style: italic; font-size: 22px; font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.rank-pill { display: inline-flex; width: 18px; height: 13px; align-items: center; justify-content: center; background: #2e66f7; border-radius: 2px; font-size: 9px; font-style: normal; font-weight: 700; }
.stars { color: #f7be18; letter-spacing: 1px; font-size: 15px; line-height: 1; }
.score { margin-top: 5px; font-size: 15px; font-weight: 700; line-height: 1; }
.bonus {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.2;
  color: #f6f8ff;
  font-style: italic;
  font-weight: 700;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.cta {
  text-decoration: none;
  font-weight: 700;
  color: #172041;
  background: var(--accent);
  padding: 7px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-style: italic;
  font-size: 11px;
  text-align: center;
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0% 100%);
}

@media (max-width: 1360px) {
  .casino-card {
    grid-template-columns: 126px 146px minmax(220px, 1fr) 122px;
    min-height: 72px;
    gap: 8px;
    padding: 7px 9px;
  }
  .casino-logo { width: 108px; height: 50px; }
  .card-main { min-height: 58px; padding-right: 8px; }
  .card-title { font-size: 12px; }
  .rank-pill { width: 11px; height: 9px; font-size: 7px; }
  .stars { font-size: 9px; }
  .score { font-size: 12px; }
  .bonus { font-size: 11px; line-height: 1.2; }
  .cta { font-size: 11px; padding: 7px 10px; }
}

.section {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 10px 0;
}
h2 {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 800;
}
h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  font-weight: 800;
}
h4 {
  margin: 14px 0 7px;
  font-size: 26px;
  font-weight: 700;
}

.plain ul {
  margin: 10px 0 8px 20px;
  padding: 0;
}
.plain li {
  margin: 8px 0;
  font-size: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #9d9d9d;
  overflow: hidden;
  border-radius: 0;
  background: #efefef;
}
th, td {
  text-align: left;
  padding: 10px 10px;
  border-bottom: 1px solid #9d9d9d;
  border-right: 1px solid #9d9d9d;
  vertical-align: top;
  font-size: 12.5px;
}
th {
  background: #efefef;
  font-size: 12.5px;
  font-weight: 400;
}
tr:last-child td { border-bottom: 0; }
th:last-child, td:last-child { border-right: 0; }

.copy p {
  font-size: 14px;
  margin: 0 0 10px;
  color: #1f1f1f;
}
.review-image { width: 100%; max-width: 900px; height: auto; display: block; margin: 10px auto 12px; border: 1px solid #bfbfbf; }

.faq-list {
  margin: 6px 0 0;
}
.faq-title {
  margin: 16px 0 10px;
  font-size: 26px;
  font-weight: 800;
}
.faq-item {
  border-bottom: 0;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 6px 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  color: #0f1115;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}
.faq-question:focus-visible {
  outline: 2px solid #0f1115;
  outline-offset: 2px;
}
.faq-arrow {
  font-size: 26px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item.is-open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 2px 0 10px;
}
.faq-answer p {
  margin: 0;
  font-size: 13px;
  color: #1f1f1f;
}

footer {
  background: #b8c544;
  color: #1f1f1f;
  text-align: center;
  padding: 19px 0;
  font-size: 18px;
  border-top: 1px solid #9faa38;
}

@media (max-width: 980px) {
  .container { width: 94vw; }
  .hero { width: 100%; }
  .hero h1 { font-size: clamp(1.45rem, 6vw, 2rem); }
  .hero h2 { font-size: clamp(1.3rem, 4.8vw, 1.8rem); }
  .casino-card {
    grid-template-columns: 110px 1fr;
    gap: 10px;
    padding: 10px;
  }
  .casino-logo { width: 96px; height: 46px; }
  .card-main { border-right: 0; padding-right: 0; }
  .bonus { font-size: 13px; grid-column: 2; }
  .cta { grid-column: 1 / -1; font-size: 12px; }
  h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
  h3 { font-size: clamp(1.2rem, 3.6vw, 1.8rem); }
  .faq-title { font-size: 22px; }
  .faq-question { font-size: 15px; }
  .faq-arrow { font-size: 18px; }
}
