:root {
  --bg: #071122;
  --bg-2: #0b1528;
  --panel: #101c33;
  --panel-2: #172842;
  --line: #263653;
  --text: #f7f9ff;
  --muted: #aebbd0;
  --muted-2: #7f8ea7;
  --gold: #f5c84b;
  --green: #31d07a;
  --green-dark: #15985a;
  --danger: #ff6a55;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  --radius: 14px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  font-family:
    Inter,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(49, 208, 122, 0.65);
  outline-offset: 3px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 16, 33, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(142, 161, 196, 0.18);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 180px;
  height: auto;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 27px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
  font-size: 14px;
}
.nav-list a {
  color: #eef4ff;
  opacity: 0.94;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.nav-list a:hover {
  color: var(--green);
  opacity: 1;
}
.menu-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 27px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: 5px 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.mobile-panel {
  display: none;
  border-top: 1px solid rgba(142, 161, 196, 0.16);
  background: #0a1326;
}
.mobile-panel.open {
  display: block;
}
.mobile-panel .nav-list {
  display: grid;
  gap: 0;
}
.mobile-panel .nav-list a {
  display: block;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(142, 161, 196, 0.12);
}
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 30px 0 28px;
  background: linear-gradient(180deg, #0a1227, #081122);
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  margin: 0 auto 13px;
  max-width: 980px;
  letter-spacing: -0.04em;
}
.hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
}
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  border: 1px solid rgba(49, 208, 122, 0.28);
  border-radius: 999px;
  padding: 7px 13px;
  color: #ccebdc;
  background: rgba(49, 208, 122, 0.08);
  font-weight: 700;
  font-size: 13px;
}
.offer-area {
  position: relative;
  padding: 56px 0 52px;
  background-image:
    linear-gradient(180deg, rgba(7, 17, 34, 0.1), rgba(7, 17, 34, 0.45)),
    url("hero-bg.png");
  background-size: cover;
  background-position: center;
  box-shadow:
    inset 0 45px 65px rgba(7, 17, 34, 0.3),
    inset 0 -70px 80px rgba(7, 17, 34, 0.74);
}
.offer-stack {
  display: grid;
  gap: 20px;
}
.offer-card {
  display: grid;
  grid-template-columns: 320px 1fr 170px;
  align-items: center;
  min-height: 118px;
  background: rgba(14, 25, 45, 0.95);
  border: 1px solid rgba(102, 130, 170, 0.35);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(49, 208, 122, 0.05),
    transparent 42%,
    rgba(255, 255, 255, 0.02)
  );
  pointer-events: none;
}
.offer-brand {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  background: rgba(23, 40, 66, 0.78);
  border-right: 1px solid rgba(102, 130, 170, 0.35);
}
.offer-logo {
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  border-radius: 10px;
  background: #d2d3d4;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offer-name {
  font-size: 23px;
  font-weight: 900;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.stars {
  letter-spacing: 1px;
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
}
.rating-text {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.offer-copy {
  display: grid;
  grid-template-columns: 165px 1fr 125px;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
}
.offer-kicker {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
}
.offer-bonus {
  font-size: 26px;
  line-height: 1.1;
  text-align: center;
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.025em;
}
.offer-terms {
  color: var(--muted-2);
  font-size: 11px;
  text-align: center;
}
.offer-cta {
  margin-right: 32px;
  justify-self: end;
  display: inline-grid;
  place-items: center;
  min-width: 142px;
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--green), #24bd6a);
  box-shadow: 0 0 28px rgba(49, 208, 122, 0.28);
  font-weight: 950;
  color: #fff;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.offer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(49, 208, 122, 0.32);
}
.notice-box {
  margin-top: 18px;
  border: 1px solid rgba(245, 200, 75, 0.28);
  background: rgba(14, 25, 45, 0.76);
  border-radius: 12px;
  padding: 14px 18px;
  color: #d5dfef;
  font-size: 13px;
}
.notice-box strong {
  color: #fff;
}
.content-wrap {
  padding: 34px 0 0;
}
.info-section {
  max-width: 980px;
  padding: 34px 0;
  margin: 0 auto;
  border-bottom: 1px solid rgba(142, 161, 196, 0.17);
}
.info-section h2 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.info-section p {
  margin: 0;
  color: #cbd5e7;
  font-size: 16px;
}
.info-section p + p {
  margin-top: 12px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.mini-card {
  border: 1px solid rgba(142, 161, 196, 0.18);
  background: #0b1528;
  border-radius: 14px;
  padding: 18px;
}
.mini-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.mini-card p {
  font-size: 14px;
  color: #b9c5d9;
}
.page-main {
  padding: 48px 0;
}
.legal-card {
  max-width: 960px;
  margin: auto;
  background: #0b1528;
  border: 1px solid rgba(142, 161, 196, 0.18);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 46px);
  box-shadow: var(--shadow);
}
.legal-card h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  margin: 0 0 18px;
}
.legal-card h2 {
  margin: 32px 0 10px;
  font-size: 22px;
}
.legal-card p,
.legal-card li {
  color: #cbd5e7;
}
.legal-card a {
  color: #69dda0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-card ul {
  padding-left: 22px;
}
.last-updated {
  display: inline-block;
  color: #aebbd0;
  background: #101c33;
  border: 1px solid rgba(142, 161, 196, 0.18);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  margin-bottom: 10px;
}
.site-footer {
  margin-top: 54px;
  border-top: 1px solid rgba(142, 161, 196, 0.18);
  background: #0a1021;
  padding: 36px 0 30px;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  justify-content: center;
}
.footer-logo img {
  width: 170px;
}
.footer-contact {
  margin: 18px 0 14px;
  color: #c0cadb;
  font-size: 14px;
}
.footer-contact a {
  color: #37d987;
  font-weight: 900;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin: 18px 0;
  color: #c8d2e4;
  font-size: 14px;
}
.footer-links a:hover {
  color: var(--green);
}
.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px auto;
}
.footer-badges img {
  height: 38px;
  width: auto;
  border-radius: 5px;
}
.footer-disclaimer {
  max-width: 920px;
  margin: 18px auto 0;
  color: #97a6bd;
  font-size: 12px;
}
.copyright {
  color: #75849c;
  font-size: 12px;
  margin-top: 15px;
}
.age-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(3, 7, 16, 0.84);
  backdrop-filter: blur(10px);
}
.age-modal.open {
  display: grid;
}
.modal-card {
  width: min(560px, 100%);
  background: #101c33;
  border: 1px solid rgba(142, 161, 196, 0.28);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  padding: 30px;
  text-align: center;
}
.modal-card h2 {
  font-size: 30px;
  margin: 0 0 10px;
}
.modal-card p {
  color: #cbd5e7;
  margin: 0 0 22px;
}
.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 13px 18px;
  font-weight: 950;
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: #061022;
}
.btn-secondary {
  background: #273650;
  color: #fff;
}
.blocked-message {
  display: none;
  color: #ffc8c0;
  font-weight: 800;
}
.age-modal.blocked .modal-content {
  display: none;
}
.age-modal.blocked .blocked-message {
  display: block;
}
.cookie-bar {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(142, 161, 196, 0.25);
  border-radius: 14px;
  background: rgba(14, 25, 45, 0.96);
  box-shadow: var(--shadow);
}
.cookie-bar.open {
  display: flex;
}
.cookie-bar p {
  margin: 0;
  color: #d6deea;
  font-size: 14px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-actions button {
  border: 0;
  border-radius: 8px;
  padding: 10px 13px;
  font-weight: 900;
  cursor: pointer;
}
.cookie-actions .accept {
  background: var(--green);
  color: #061022;
}
.cookie-actions .decline {
  background: #2b3952;
  color: #fff;
}
@media (max-width: 1050px) {
  .offer-card {
    grid-template-columns: 280px 1fr;
  }
  .offer-cta {
    grid-column: 1/-1;
    justify-self: stretch;
    margin: 0 24px 22px;
  }
  .offer-copy {
    grid-template-columns: 130px 1fr 100px;
  }
  .offer-bonus {
    font-size: 22px;
  }
}
@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-inner {
    min-height: 64px;
  }
  .logo img {
    width: 160px;
  }
  .offer-area {
    padding: 30px 0;
  }
  .offer-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .offer-brand {
    border-right: 0;
    border-bottom: 1px solid rgba(102, 130, 170, 0.35);
    padding: 18px;
  }
  .offer-copy {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }
  .offer-bonus {
    text-align: center;
  }
  .offer-terms {
    text-align: center;
  }
  .offer-cta {
    margin: 0 20px 20px;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .cookie-bar {
    display: none;
    left: 10px;
    right: 10px;
    bottom: 10px;
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-bar.open {
    display: flex;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions button {
    flex: 1;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--container));
  }
  .hero {
    padding-top: 24px;
  }
  .hero h1 {
    font-size: 27px;
  }
  .hero p {
    font-size: 15px;
  }
  .offer-brand {
    gap: 14px;
  }
  .offer-logo {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }
  .offer-name {
    font-size: 20px;
  }
  .offer-bonus {
    font-size: 21px;
  }
  .footer-links {
    display: grid;
    gap: 10px;
  }
  .modal-card {
    padding: 24px 18px;
  }
  .modal-actions {
    display: grid;
  }
  .btn {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
