:root {
  --ink: #171d2f;
  --muted: #626a78;
  --paper: #ffffff;
  --soft: #f4f7f5;
  --line: #dde6df;
  --dark: #121827;
  --accent: #12b886;
  --accent-dark: #087f5b;
  --warm: #ffb703;
  --card: #ffffff;
  --radius: 22px;
  --shadow: 0 16px 40px rgba(23, 29, 47, 0.09);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    Inter,
    Poppins,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.62;
  font-size: 18px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  max-width: 1240px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1;
}
.brand span:first-child {
  border: 2px solid #fff;
  padding: 4px 6px;
}
.brand span:last-child {
  background: var(--accent);
  padding: 6px 8px;
  border-radius: 6px;
  color: #06281d;
}
nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex: 1;
}
nav a {
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
nav a:after {
  content: "⌄";
  font-size: 12px;
  margin-left: 5px;
  color: var(--accent);
}
.search {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 8px 12px;
  color: #aeb6c5;
  min-width: 170px;
}
.search input {
  border: 0;
  background: transparent;
  outline: 0;
  color: #fff;
  width: 100%;
  font-size: 14px;
}

.main{
    max-width: 1240px;
    margin: 34px auto 0;
    padding: 0 22px;
    display: grid;
    grid-template-columns: minmax(0, 820px) 360px;
    gap: 32px;
    align-items: start;
}


.main-wrap {
  max-width: 1240px;
  margin: 34px auto 0;
  padding: 0 22px;
  display: grid;
  grid-template-columns: minmax(0, 820px) 360px;
  gap: 32px;
  align-items: start;
}
.hero {
  background:
    radial-gradient(
      circle at 88% 38%,
      rgba(18, 184, 134, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #f2fbf7, #eef8f5);
  border-radius: 26px;
  padding: 34px 38px;
  box-shadow: var(--shadow);
  border: 1px solid #d6eadf;
}
.breadcrumbs {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 22px;
}
.breadcrumbs a {
  color: var(--accent-dark);
}
h1 {
  font-size: 56px;
  line-height: 1.03;
  margin: 0 0 24px;
  font-weight: 950;
  letter-spacing: -2px;
}
.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.author {
  display: flex;
  gap: 12px;
  align-items: center;
}
.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--warm));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  border: 4px solid #fff;
}
.author a {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700;
}
.updated {
  color: var(--muted);
  font-size: 15px;
}
.share {
  width: 48px;
  height: 48px;
  border: 1px solid #c9dfd4;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  font-weight: 900;
  background: #fff;
}
.editor-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 16px;
}
.content-card,
.showcase-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-top: 26px;
  box-shadow: 0 10px 26px rgba(23, 29, 47, 0.04);
}
.intro-text {
  font-size: 21px;
  border: 0;
  box-shadow: none;
  padding: 8px 0;
  margin-top: 28px;
}
h2 {
  font-size: 34px;
  line-height: 1.16;
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.7px;
}
h3 {
  font-size: 23px;
  line-height: 1.25;
  margin: 28px 0 10px;
  font-weight: 900;
}
p {
  margin: 0 0 16px;
}
ul {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
li {
  list-style: none;
  position: relative;
  padding-left: 24px;
}
li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-head h2 {
  margin: 0;
}
.section-head span,
.showcase-label,
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e9fff5;
  color: var(--accent-dark);
  border: 1px solid #b7efd7;
  font-weight: 900;
  font-size: 13px;
  padding: 7px 12px;
  white-space: nowrap;
}
.casino-showcase {
  background: #f7faf8;
  border-radius: 20px;
  border: 1px solid #dce8df;
  overflow: hidden;
}
.casino-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 90px 130px;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid #dce8df;
  position: relative;
}
.casino-card:last-child {
  border-bottom: 0;
}
.casino-card .rank {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.logo-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dbe5dc;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: var(--accent-dark);
  box-shadow: inset 0 0 0 6px #f3faf6;
}
.logo-mark.alt {
  color: #9a6500;
  box-shadow: inset 0 0 0 6px #fff7e0;
}
.casino-info strong {
  display: block;
  font-size: 19px;
  line-height: 1.2;
}
.casino-info span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  margin-top: 4px;
}
.rating small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.rating b {
  font-size: 22px;
  color: var(--accent-dark);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #06281d;
  border-radius: 999px;
  font-weight: 900;
  padding: 13px 18px;
  box-shadow: 0 6px 0 #087f5b22;
}
.btn-small {
  font-size: 15px;
  padding: 11px 18px;
}
.btn.secondary {
  background: var(--warm);
  color: #261900;
}
.responsible {
  font-size: 15px;
  color: var(--muted);
  margin: 16px 0 0;
}
.responsible a {
  color: var(--accent-dark);
  text-decoration: underline;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin: 18px 0;
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
th,
td {
  padding: 17px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
th {
  background: #f8faf8;
  font-size: 16px;
}
tr:last-child td {
  border-bottom: 0;
}
td:first-child {
  font-weight: 800;
  width: 34%;
}
.warn-card {
  border-color: #ffe0a3;
  background: #fffdf7;
}

.section:nth-of-type(5) {
    border-color: #ffe0a3;
    background: #fffdf7;
}


.plain-list-title {
  font-weight: 900;
  margin: 18px 0 8px;
}
.bonus-types {
  display: block;
  margin-top: 6px;
}
.bonus-type {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.bonus-type h3 {
  font-size: 23px;
  line-height: 1.25;
  margin: 28px 0 10px;
  font-weight: 900;
  letter-spacing: 0;
}
.bonus-type p {
  margin: 0 0 16px;
  color: var(--ink);
  line-height: 1.62;
  font-size: 18px;
}
.new-casinos-section .showcase-label {
  margin: 8px 0 16px;
  background: #fff7e0;
  border-color: #ffd36a;
  color: #6d4300;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 8px 14px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(255, 183, 3, 0.18);
}
.new-casinos-section .showcase-label:before {
  content: "★";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--warm);
  color: #261900;
  display: grid;
  place-items: center;
  font-size: 13px;
  line-height: 1;
  flex: 0 0 24px;
}
.new-showcase {
  background: #fff;
  border-color: #eadfc5;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(23, 29, 47, 0.05);
}
.new-card {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 20px 22px;
  background: #fff;
}
.new-card .casino-info strong {
  font-size: 22px;
}
.new-card .casino-info span {
  font-size: 16px;
}
.new-card .btn {
  min-width: 116px;
}
.author-quote {
  margin: 24px 0 24px 0px;
  padding: 24px 26px;
  border-left: 5px solid var(--accent);
  background: #f7faf8;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(23, 29, 47, 0.05);
}
.author-quote p {
  margin: 0;
  color: #202738;
  font-size: 18px;
  line-height: 1.65;
}
.author-quote footer {
  margin-top: 14px;
  font-weight: 900;
  color: var(--accent-dark);
  font-size: 15px;
}
.author-sign {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-weight: 900;
  color: var(--accent-dark);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:first-of-type {
  border-top: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 19px;
}
.faq details p {
  margin: 12px 0 0;
  color: #303746;
}
.sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 22px;
}
.trust-box {
  background: var(--dark);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  overflow: hidden;
  position: relative;
}
.trust-box:after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(18, 184, 134, 0.25) 1px,
    transparent 2px
  );
  background-size: 12px 12px;
}
.trust-box h2 {
  font-size: 30px;
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.trust-stat {
  border: 1px solid rgba(18, 184, 134, 0.55);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
}
.trust-stat b {
  display: block;
  font-size: 23px;
}
.trust-stat span {
  color: #b5bdca;
  font-size: 13px;
}
.related-side h2 {
  font-size: 24px;
  margin-bottom: 14px;
}
.side-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #fff;
}
.side-card div {
  padding: 18px;
}
.side-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.side-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 8px;
}
.side-card a {
  color: var(--accent-dark);
  font-weight: 900;
}
.related-section {
  max-width: 1240px;
  margin: 42px auto 0;
  padding: 0 22px 52px;
}
.related-section .section-head {
  margin-bottom: 18px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.related-card h3 {
  margin: 0 0 10px;
}
.related-card p {
  color: var(--muted);
}
.related-card a {
  font-weight: 900;
  color: var(--accent-dark);
}
.site-footer {
  background: var(--dark);
  color: #fff;
  margin-top: 20px;
}
.footer-inner {
  max-width: 1240px;
  margin: auto;
  padding: 34px 22px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}
.footer-about p {
  color: #9aa3b4;
  font-size: 14px;
}
.footer-col h3 {
  font-size: 16px;
  margin: 0 0 12px;
}
.footer-col ul {
  gap: 8px;
}
.footer-col li {
  padding-left: 0;
}
.footer-col li:before {
  display: none;
}
.footer-col a {
  color: #d8dde7;
  font-size: 15px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 22px;
  color: #8e97a8;
  font-size: 14px;
  text-align: center;
}
.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.badges a {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
  color: #d8dde7;
}
@media (max-width: 1050px) {
  .main-wrap {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .related-grid,
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  nav {
    display: none;
  }
  h1 {
    font-size: 42px;
  }
}
@media (max-width: 720px) {
  body {
    font-size: 16px;
  }
  .header-inner {
    justify-content: space-between;
  }
  .search {
    display: none;
  }
  .hero {
    padding: 26px 20px;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 27px;
  }
  .casino-card {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }
  .new-card {
    grid-template-columns: 1fr;
  }
  .casino-card .rating {
    grid-column: 2/3;
  }
  .casino-card .btn,
  .casino-card .pill {
    grid-column: 2/3;
    justify-self: start;
  }
  .logo-mark {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }
  .related-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .main-wrap {
    padding: 0 14px;
  }
  .related-section {
    padding: 0 14px 34px;
  }
}
@media (max-width: 980px) {
}

.review-cta {
  display: flex;
  justify-content: center;
  margin: 22px 0 30px;
}
.review-block .btn {
  min-width: 170px;
}
.content-card h3,
.bonus-type h3 {
  font-size: 23px;
  line-height: 1.25;
  margin: 28px 0 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.logo img {
  display: block;
  max-height: 58px;
  width: auto;
}
.section:first-of-type {
    background: radial-gradient(circle at 88% 38%, rgba(18, 184, 134, .18), transparent 28%), 
                linear-gradient(135deg, #f2fbf7, #eef8f5);
    border-radius: 26px;
    padding: 34px 38px;
    box-shadow: var(--shadow);
    border: 1px solid #d6eadf;
    margin: 0;
}

.section {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    margin-top: 26px;
    box-shadow: 0 10px 26px rgba(23, 29, 47, .04);
}

body > section.section.hero {
  padding: 34px 38px;
}

body > section.section.content-card,
body > section.section.showcase-block {
  width: min(820px, calc(100% - 44px));
  padding-left: 30px;
  padding-right: 30px;
}

body > section.section.trust-box {
  width: min(360px, calc(100% - 44px));
}

body > section.section.related-section {
  padding-bottom: 52px;
}

@media (max-width: 720px) {
  body > section.section {
    padding-left: 14px;
    padding-right: 14px;
  }

  body > section.section.hero {
    padding: 26px 20px;
  }

  body > section.section.content-card,
  body > section.section.showcase-block,
  body > section.section.trust-box {
    width: calc(100% - 28px);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #06281d;
  border-radius: 999px;
  font-weight: 900;
  padding: 15px 45px;
  box-shadow: 0 6px 0 #087f5b22;
  border: 0;
  cursor: pointer;
  font: inherit;
  line-height: 1.2;
  text-align: center;
  font-weight: 900;
}

.button:hover {
  background: var(--accent-dark);
  color: #fff;
}


.faq-container {
    display: block;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.faq-item:first-of-type {
    border-top: 1px solid var(--line);
}

.faq-item .toggle {
    display: none;
}

.faq-item .faq-question {
    cursor: pointer;
    font-weight: 900;
    font-size: 19px;
    margin: 0;
    padding: 0;
    padding-right: 40px;
    position: relative;
    user-select: none;
}

.faq-item .faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item .icon {
    display: none;
}

.faq-item .faq-answer {
    display: none;
    margin: 12px 0 0;
    color: #303746;
}

.faq-item .toggle:checked ~ .faq-answer {
    display: block;
}

.faq-item .toggle:checked ~ .faq-question::after {
    content: "−";
}

.faq-item .toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1050px) {
  .main {
    display: block;
    padding: 0 22px;
  }
  
  .content {
    display: block;
    width: 100%;
  }
  
  .sidebar {
    position: static;
    width: 100%;
    margin: 32px 0;
    display: grid;
    gap: 22px;
  }
  
  nav {
    display: none;
  }
}