:root {
  --navy: #2a1834;
  --navy-2: #432450;
  --navy-3: #5a314f;
  --black-nav: #1c1422;
  --paper: #f7efe5;
  --paper-2: #eee0d0;
  --white: #fff;
  --text: #251c28;
  --muted: #705e6b;
  --green: #b66a14;
  --green-2: #95520d;
  --red: #cf5d3a;
  --gold: #f6c760;
  --line: #dfd1c1;
  --shadow: 0 10px 24px rgba(39, 18, 45, 0.16);
  --radius: 10px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Ubuntu, Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.62;
  font-size: 16px;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input {
  font: inherit;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fffaf4;
  color: #000;
  padding: 10px;
  z-index: 9999;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.container {
  width: min(100% - 44px, var(--max));
  margin-inline: auto;
}
.narrow {
  max-width: 880px;
}
.center {
  text-align: center;
}
.section-lead {
  max-width: 1050px;
  margin: 0 auto 28px;
  color: inherit;
}
.section-dark {
  background: var(--navy-2);
  color: #fff;
}
.section-light {
  background: var(--paper);
  color: var(--text);
  padding: 86px 0;
}
.section-dark {
  padding: 86px 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.12;
  margin: 0 0 20px;
  font-weight: 800;
}
h1 {
  font-size: clamp(38px, 5vw, 58px);
}
h2 {
  font-size: clamp(30px, 4vw, 42px);
}
h3 {
  font-size: clamp(22px, 2.5vw, 30px);
}
h4 {
  font-size: 22px;
}
p {
  margin: 0 0 18px;
}
.stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 22px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.site-header {
  background: var(--navy);
  color: #fff;
  position: relative;
  z-index: 20;
}
.header-logo-row {
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.brand img {
  width: 310px;
  max-width: 74vw;
}
.header-search,
.menu-toggle {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: #24142d;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.header-search svg {
  width: 19px;
  height: 19px;
  fill: #fff;
}
.menu-toggle {
  display: none;
  right: 86px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fffaf4;
  margin: 3px auto;
}
.main-nav {
  min-height: 72px;
  background: var(--black-nav);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 700;
  font-size: 14px;
}
.main-nav span {
  color: #82919a;
}
.main-nav a {
  padding: 8px 0;
}
.main-nav a:hover {
  color: #f4d8b5;
  text-decoration: none;
}
.hero {
  background: linear-gradient(
    180deg,
    #432450 0%,
    #432450 77%,
    var(--paper) 77%,
    var(--paper) 100%
  );
  padding: 78px 0 86px;
}
.hero-inner {
  text-align: center;
}
.hero-copy {
  max-width: 930px;
  margin: 0 auto 44px;
  color: #fff;
  font-weight: 700;
}
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 950px;
  margin: 0 auto;
}
.mini-offer {
  background: #fffaf4;
  color: var(--text);
  border-radius: 8px;
  padding: 24px 20px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.mini-offer img, .review-logo img {
  background-color: #432450;
}
.mini-offer.featured {
  outline: 3px solid #d08a23;
  transform: translateY(-34px);
}
.mini-offer img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 0 22px;
}
.mini-offer p {
  font-size: 21px;
  line-height: 1.18;
  color: #6c5a67;
  margin-bottom: 22px;
}
.mini-offer strong {
  display: inline;
  color: #432450;
}
.mini-offer > a:first-of-type,
.offer-action a:first-child,
.bonus-box a:first-of-type,
.simple-cards a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  border-radius: 15px;
  font-weight: 800;
  padding: 14px 32px;
  min-width: 190px;
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.03);
}
.mini-offer > a:first-of-type:hover,
.offer-action a:first-child:hover,
.bonus-box a:first-of-type:hover,
.simple-cards a:hover {
  background: var(--green-2);
  text-decoration: none;
}
.review-link,
.offer-action a:last-child,
.bonus-box a:last-child {
  font-size: 12px;
  text-decoration: underline;
  margin-top: 14px;
  color: #4a3547;
}
.hero .review-link {
  color: #4a3547;
}
.search-panel {
  background: #fff9f2;
  color: var(--text);
  padding: 92px 0 136px;
}
.search-panel h2 {
  color: #0f1115;
}
.search-panel p {
  font-size: 13px;
  font-weight: 700;
}
.search-form {
  background: #fffaf4;
  border-bottom: 2px solid #3c2b38;
  height: 86px;
  margin: 86px auto 0;
  display: flex;
  align-items: center;
  padding: 0 28px;
  max-width: 980px;
}
.search-form input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 18px;
  color: #6a5966;
}
.search-form button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.search-form svg {
  width: 28px;
  height: 28px;
  fill: #111;
}
.search-note {
  margin-top: 18px !important;
  color: #6c5a67 !important;
}
.list-section {
  background: #432450;
  padding-top: 90px;
  padding-bottom: 118px;
}
.offers-list {
  margin-top: 26px;
}
.offer-row {
  display: grid;
  grid-template-columns: 200px 1fr 380px;
  align-items: stretch;
  background: #fffaf4;
  color: var(--text);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 10px;
  min-height: 176px;
}
.offer-logo {
  background: #28143a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-logo img {
  width: 200px;
  height: 176px;
  object-fit: cover;
}
.offer-body {
  padding: 30px;
}
.offer-title-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.offer-title-line h3 {
  font-size: 20px;
  margin: 0;
  color: #6c5a67;
}
.offer-title-line span,
.review-head span {
  background: #a76619;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  border-radius: 6px;
  padding: 7px 22px;
}
.offer-title-line .blue-tag,
.review-head .blue-tag {
  background: #70479a;
}
.offer-body p {
  font-size: 22px;
  line-height: 1.25;
  color: #6c5a67;
  margin: 0;
}
.offer-body strong {
  color: #4a2549;
}
.offer-action {
  background: #fbf2e7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 22px;
}
.offer-action a:first-child {
  border-radius: 14px;
  width: 260px;
  max-width: 100%;
}
.text-block {
  max-width: 1160px;
}
.text-block p {
  font-size: 16px;
}
.simple-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.simple-cards article {
  background: #fffaf4;
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
}
.simple-cards img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}
.simple-cards a {
  min-width: 100%;
  border-radius: 16px;
  margin-top: 16px;
}
.reviews {
  background: #432450;
}
.review-card {
  background: #fffaf4;
  color: var(--text);
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
}
.review-card > h3 {
  color: #111;
  font-weight: 500;
  margin-bottom: 20px;
}
.review-grid {
  display: grid;
  grid-template-columns: 195px 1fr 365px;
  gap: 30px;
  align-items: stretch;
}
.review-logo img {
  width: 195px;
  height: auto;

  border-radius: 6px;
}
.review-main {
  padding: 38px 0 0;
}
.review-head {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
}
.review-head b {
  font-size: 14px;
}
.review-head .stars {
  font-size: 20px;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.pros-cons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pros-cons li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  font-size: 13px;
}
.pros-cons li:before {
  content: "+";
  position: absolute;
  left: 0;
  color: #6a3c6d;
  font-weight: 900;
}
.pros-cons .cons li:before {
  content: "-";
  color: #ef6b6b;
}
.bonus-box {
  background: #efe3d6;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.bonus-box p {
  font-size: 24px;
  line-height: 1.25;
  color: #6c5a67;
}
.bonus-box strong {
  color: #073246;
}
.review-card > p {
  margin-top: 18px;
  font-size: 14.5px;
  color: #0e1820;
}
.guide {
  background: #3a263f;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 84px;
}
.step-grid article {
  background: #f8efe6;
  color: #1d2730;
  border-radius: 10px;
  padding: 34px;
  text-align: center;
  min-height: 220px;
}
.step-icon {
  font-size: 50px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
}
.step-grid h4 {
  color: #705f6b;
  font-weight: 500;
}
.step-grid p {
  font-weight: 600;
  font-size: 14px;
}
.check-list {
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
  max-width: 720px;
}
.check-list li {
  margin: 15px 0;
  padding-left: 34px;
  position: relative;
  font-weight: 700;
}
.check-list li:before {
  content: "◎";
  position: absolute;
  left: 0;
  color: #fff;
}
.section-light .check-list li:before {
  color: var(--green);
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 46px;
}
.criteria-grid article {
  background: #f8efe6;
  color: #1d2730;
  border-radius: 10px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow);
}
.criteria-icon {
  font-size: 48px;
  color: #4b254f;
  margin-bottom: 12px;
}
.criteria-grid h3 {
  font-weight: 500;
  color: #705f6b;
}
.criteria-grid p {
  font-size: 14px;
  font-weight: 600;
}
.news article {
  border-left: 1px solid #a7b3bc;
  padding-left: 18px;
  margin-bottom: 20px;
}
.news article > a:first-child {
  display: block;
  color: #4a2549;
  text-decoration: underline;
  font-weight: 700;
}
.news small {
  display: block;
  margin: 6px 0;
  color: #555;
}
.news p {
  font-size: 14px;
  margin: 0;
}
.games {
  background: #432450;
}
.game-list {
  margin: 34px 0 58px;
}
.game-list article {
  background: rgba(17, 55, 73, 0.55);
  border-radius: 10px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: center;
  margin: 22px 0;
}
.game-list h3 {
  font-weight: 500;
}
.game-list p {
  font-weight: 700;
  font-size: 14px;
}
.game-icon {
  height: 145px;
  background: var(--red);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 70px;
  color: #fff;
}
.software {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  padding-top: 28px;
}
.software .check-list {
  max-width: 100%;
}
.payments {
  padding-bottom: 96px;
}
.accordion {
  margin-top: 44px;
}
.acc-item,
.faq-item {
  margin-bottom: 18px;
}
.acc-item button,
.faq-item button {
  width: 100%;
  border: 0;
  background: #fffaf4;
  color: #6c5a67;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(12, 26, 36, 0.06);
  padding: 18px 34px;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.faq-item button {
  font-size: 18px;
  color: #1d2730;
  padding-right: 58px;
}
.acc-item button:after,
.faq-item button:after {
  content: "⌄";
  position: absolute;
  right: 28px;
}
.acc-item.is-open button:after,
.faq-item.is-open button:after {
  content: "×";
}
.acc-item div,
.faq-item div {
  display: none;
  background: #fffaf4;
  margin-top: 2px;
  padding: 18px 34px;
  border-radius: 0 0 8px 8px;
}
.acc-item.is-open div,
.faq-item.is-open div {
  display: block;
}
.payment-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 52px;
  border-bottom: 1px solid #384954;
  padding-bottom: 48px;
}
.payment-logos span {
  width: 142px;
  height: 142px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #cf5d3a;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
}
.conclusion {
  background: #fff;
}
.faq {
  background: #fffaf4;
  padding-top: 20px;
}
.faq h2 {
  border-top: 1px solid #394956;
  max-width: 560px;
  margin: 0 auto 32px;
  padding-top: 32px;
}
.faq-list {
  max-width: 1120px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e1e5e8;
  margin: 0;
}
.faq-item button {
  box-shadow: none;
  border-radius: 0;
  background: #fffaf4;
  padding-left: 0;
}
.faq-item div {
  padding-left: 0;
}
.site-footer {
  background: #eee6dc;
  color: #1d2730;
  padding: 64px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 54px;
}
.site-footer h3 {
  font-size: 24px;
  color: #536575;
  font-weight: 700;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
}
.site-footer li:before {
  content: "›";
  position: absolute;
  left: 0;
}
.site-footer a {
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer p,
.site-footer li {
  font-size: 14px;
}
.trust-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 42px auto;
}
.trust-row img {
  height: 48px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.trust-row img:first-child {
  height: 58px;
}
.legal-panels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.legal-panels section {
  background: #fffaf4;
  border: 1px solid #dce2e8;
  border-radius: 8px;
  padding: 16px;
}
.legal-panels h4 {
  font-size: 16px;
  color: #536575;
  margin-bottom: 8px;
}
.legal-panels p {
  font-size: 12px;
  margin: 0;
}
.footer-bottom {
  text-align: center;
  margin-top: 42px;
}
.footer-bottom p {
  font-size: 11px;
  margin-bottom: 12px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(6, 18, 26, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.age-gate.is-visible {
  display: flex;
}
.age-box {
  background: #fffaf4;
  color: #251c28;
  border-radius: 14px;
  max-width: 520px;
  text-align: center;
  padding: 34px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}
.age-box img {
  width: 86px;
  margin: 0 auto 18px;
}
.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.age-actions button,
.cookie-bar button {
  border: 0;
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 800;
  cursor: pointer;
}
.age-actions button:first-child,
.cookie-bar button:last-child {
  background: var(--green);
  color: #fff;
}
.age-actions button:last-child,
.cookie-bar button:first-child {
  background: #eee3d8;
  color: #253844;
}
.cookie-bar {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fffaf4;
  color: #251c28;
  border: 1px solid #dfd1c1;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px 22px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 999;
}
.cookie-bar.is-visible {
  display: flex;
}
.cookie-bar p {
  margin: 0;
}
.is-hidden {
  display: none !important;
}
@media (max-width: 1050px) {
  .offer-row {
    grid-template-columns: 150px 1fr 240px;
  }
  .offer-logo img {
    width: 150px;
  }
  .review-grid {
    grid-template-columns: 160px 1fr;
  }
  .bonus-box {
    grid-column: 1/-1;
  }
  .review-logo img {
    width: 160px;
    height: 230px;
  }
  .legal-panels {
    grid-template-columns: 1fr 1fr;
  }
  .game-list article {
    grid-template-columns: 1fr 220px;
  }
  .hero-cards {
    gap: 18px;
  }
}
@media (max-width: 820px) {
  body {
    font-size: 15px;
  }
  .container {
    width: min(100% - 28px, var(--max));
  }
  .header-logo-row {
    height: 120px;
  }
  .header-search {
    right: 22px;
  }
  .menu-toggle {
    display: grid;
    right: 64px;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav span {
    display: none;
  }
  .hero {
    background: #432450;
    padding: 54px 0;
  }
  .hero-cards,
  .simple-cards,
  .step-grid,
  .criteria-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mini-offer.featured {
    transform: none;
  }
  .mini-offer {
    min-height: auto;
  }
  .search-panel {
    padding: 64px 0;
  }
  .search-form {
    margin-top: 38px;
  }
  .offer-row {
    grid-template-columns: 1fr;
  }
  .offer-logo img {
    width: 100%;
    height: 160px;
  }
  .offer-action {
    align-items: stretch;
  }
  .review-grid,
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .review-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .review-logo img {
    width: 100%;
    height: 180px;
  }
  .game-list article {
    grid-template-columns: 1fr;
  }
  .game-icon {
    height: 120px;
  }
  .legal-panels {
    grid-template-columns: 1fr;
  }
  .cookie-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-bar.is-visible {
    display: flex;
  }
  .payment-logos {
    gap: 18px;
  }
  .payment-logos span {
    width: 104px;
    height: 104px;
    font-size: 20px;
  }
  .acc-item button {
    font-size: 18px;
  }
  .footer-grid {
    gap: 26px;
  }
  .trust-row img {
    height: 42px;
  }
  .section-light,
  .section-dark {
    padding: 58px 0;
  }
}
