:root {
  --bg: #071126;
  --bg-2: #0c1730;
  --card: #101c35;
  --card-2: #17243d;
  --line: #26344f;
  --text: #f5f8ff;
  --muted: #a9b7ce;
  --soft: #d5deee;
  --green: #31d876;
  --green-dark: #19b65c;
  --gold: #f6c945;
  --danger: #ff6b6b;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  --radius: 18px;
  --shell: 1220px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #071126;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus {
  left: 10px;
}
.shell {
  width: min(var(--shell), calc(100% - 32px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(8, 17, 38, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}
.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  padding: 12px 13px;
  border-radius: 999px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 750;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  background: #13213b;
  color: #fff;
  outline: none;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #111c35;
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: 0.2s ease;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  padding: 54px 0 42px;
  background: linear-gradient(
    180deg,
    #0a1429 0%,
    rgba(10, 20, 41, 0.72) 24%,
    #071126 100%
  );
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7, 17, 38, 0.24), rgba(7, 17, 38, 0.8)),
    url("../assets/hero-mountains.png");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(7, 17, 38, 0), var(--bg));
  z-index: -1;
}
.hero-copy {
  text-align: center;
  margin: 0 auto 34px;
  max-width: 920px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(11, 25, 48, 0.72);
  color: #e4ecf8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(49, 216, 118, 0.12);
}
h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 900;
}
.hero-copy p {
  margin: 18px auto 0;
  max-width: 760px;
  color: #d6dfef;
  font-size: 18px;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: #dbe6f7;
  font-size: 14px;
  font-weight: 750;
}
.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(8, 17, 38, 0.58);
}
.offers {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.offer-card {
  display: grid;
  grid-template-columns: 330px 1fr auto;
  align-items: stretch;
  overflow: hidden;
  min-height: 128px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: linear-gradient(90deg, var(--card-2), var(--card));
  box-shadow: var(--shadow);
}
.offer-side {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(30, 45, 72, 0.55);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 76px;
  border-radius: 10px;
  background: #d2d3d4;
  overflow: hidden;
}
.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offer-name {
  margin: 0 0 7px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}
.score-line {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}
.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(246, 201, 69, 0.14);
  border: 1px solid rgba(246, 201, 69, 0.25);
  color: #ffe6a1;
  font-size: 13px;
  font-weight: 900;
}
.offer-main {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  padding: 18px 28px;
  text-align: center;
}
.offer-tag {
  margin: 0 0 5px;
  color: #aebbd2;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.offer-bonus {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2.6vw, 31px);
  line-height: 1.08;
  font-weight: 950;
  text-transform: none;
  letter-spacing: -0.02em;
}
.offer-note {
  margin: 8px 0 0;
  color: #99a8c1;
  font-size: 12px;
}
.offer-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 20px 32px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 11px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(49, 216, 118, 0.3);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}
.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(49, 216, 118, 0.4);
  filter: saturate(1.08);
  outline: none;
}
.disclosure-card {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(7, 17, 38, 0.72);
  color: #c8d3e5;
  font-size: 14px;
  text-align: center;
}
.main-content {
  padding: 58px 0 32px;
  background: var(--bg);
}
.section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.content-narrow {
  max-width: 860px;
}
.section h2 {
  margin: 0 0 13px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.section p {
  margin: 0 0 16px;
  color: #c6d1e2;
  font-size: 17px;
}
.section p:last-child {
  margin-bottom: 0;
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.criteria-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #0d1930;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.criteria-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}
.criteria-card p {
  font-size: 15px;
  color: #b8c5d8;
}
.payment-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.payment-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #121f39;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #dbe5f5;
  font-weight: 800;
  font-size: 14px;
}
.responsible-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(49, 216, 118, 0.22);
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(49, 216, 118, 0.12),
    rgba(14, 28, 54, 0.86)
  );
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}
.responsible-box ul {
  margin: 8px 0 0;
  padding-left: 20px;
  color: #cbd7e8;
}
.help-card {
  padding: 20px;
  border-radius: 16px;
  background: #081126;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.help-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}
.help-card a {
  display: block;
  margin-top: 8px;
  color: #7df1ac;
  font-weight: 850;
}
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #0d1930;
  padding: 16px 18px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  color: #fff;
}
.faq-list p {
  margin-top: 10px;
  font-size: 15px;
  color: #bfcbdd;
}
.page-hero {
  padding: 58px 0 30px;
  background:
    radial-gradient(circle at 70% 0, rgba(49, 216, 118, 0.15), transparent 32%),
    linear-gradient(180deg, #0b1730, #071126);
}
.page-hero h1 {
  max-width: 850px;
  font-size: clamp(32px, 4vw, 48px);
}
.page-hero p {
  max-width: 790px;
  color: #cbd7e8;
  font-size: 18px;
}
.legal-content {
  padding: 30px 0 60px;
}
.legal-card {
  max-width: 930px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: #0d1930;
}
.legal-card h2 {
  margin: 28px 0 8px;
  font-size: 26px;
}
.legal-card h2:first-child {
  margin-top: 0;
}
.legal-card p,
.legal-card li {
  color: #c8d3e5;
}
.legal-card a {
  color: #7df1ac;
  font-weight: 800;
}
.legal-card ul {
  padding-left: 22px;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #091124;
  padding: 36px 0 40px;
  text-align: center;
}
.footer-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-contact {
  margin: 0;
  color: #b8c5d8;
}
.footer-contact a {
  color: #72efa8;
  font-weight: 800;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: #c8d3e5;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-disclaimer {
  max-width: 980px;
  margin: 6px auto 0;
  color: #aebbd2;
  font-size: 13px;
  line-height: 1.55;
}
.support-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.support-logo {
  display: inline-flex;
  background: #e8eef7;
  border-radius: 6px;
  overflow: hidden;
}
.support-logo img {
  width: auto;
  height: 42px;
}
.copyright {
  margin: 0;
  color: #74829b;
  font-size: 12px;
}
.age-gate,
.cookie-bar {
  position: fixed;
  z-index: 120;
}
.age-gate {
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 9, 20, 0.88);
  backdrop-filter: blur(10px);
}
.age-gate.is-visible {
  display: flex;
}
.gate-card {
  width: min(560px, 100%);
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0d1930;
  box-shadow: var(--shadow);
  text-align: center;
}
.gate-card h2 {
  margin: 0 0 8px;
  font-size: 30px;
}
.gate-card p {
  color: #c8d3e5;
}
.gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.button {
  border: 0;
  border-radius: 12px;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
}
.button-primary {
  background: var(--green);
  color: #06111f;
}
.button-secondary {
  background: #1b2944;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.gate-denied {
  display: none;
  margin-top: 16px;
  color: #ffd0d0;
  font-weight: 800;
}
.gate-denied.is-visible {
  display: block;
}
.cookie-bar {
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 960px;
  margin: auto;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0d1930;
  box-shadow: var(--shadow);
}
.cookie-bar.is-visible {
  display: flex;
}
.cookie-bar p {
  margin: 0;
  color: #d3deef;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 75px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 16px;
    background: #0d1930;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    border-radius: 10px;
    padding: 12px 14px;
  }
  .offer-card {
    grid-template-columns: 1fr;
  }
  .offer-side {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .offer-main {
    text-align: left;
  }
  .offer-actions {
    justify-content: flex-start;
    padding-top: 0;
  }
  .criteria-grid,
  .responsible-box {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 38px;
  }
  .hero-copy {
    text-align: left;
  }
  .trust-row {
    justify-content: flex-start;
  }
  .disclosure-card {
    text-align: left;
  }
}
@media (max-width: 620px) {
  .shell {
    width: min(100% - 24px, var(--shell));
  }
  .header-shell {
    min-height: 64px;
  }
  .brand img {
    width: 152px;
  }
  .hero {
    min-height: unset;
    padding-bottom: 30px;
  }
  .offer-side {
    grid-template-columns: 74px 1fr;
    padding: 16px;
  }
  .logo-box {
    width: 72px;
    height: 66px;
  }
  .offer-name {
    font-size: 21px;
  }
  .offer-main {
    padding: 16px;
  }
  .offer-bonus {
    font-size: 22px;
  }
  .offer-actions {
    padding: 0 16px 18px;
  }
  .cta {
    width: 100%;
    min-height: 54px;
  }
  .criteria-card,
  .responsible-box,
  .legal-card {
    padding: 18px;
  }
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
  .footer-nav {
    gap: 10px 14px;
  }
  .support-logo img {
    height: 36px;
  }
  .gate-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
