:root {
  --bg: #FAFAF9;
  --surface: #FFFFFF;
  --text: #1C1917;
  --muted: #78716C;
  --primary: #FB7185;
  --secondary: #60A5FA;
  --accent: #34D399;
  --border: rgba(28,25,23,0.12);
  --dark: dark;
  --editorial: editorial;
  --luxury: luxury;
  --fashion: fashion;
  --premium: premium;
  --font-display: Georgia, "Times New Roman", "Palatino Linotype", serif;
  --font-body: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1200px;
  --nav-h: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, rgba(251, 113, 133, 0.08) 0%, var(--bg) 42%, rgba(96, 165, 250, 0.07) 100%),
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(52, 211, 153, 0.1), transparent 55%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: var(--dark) " " var(--editorial);
  position: fixed;
  inset: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 71px,
      rgba(28, 25, 23, 0.03) 71px,
      rgba(28, 25, 23, 0.03) 72px
    ),
    radial-gradient(circle at 90% 10%, rgba(251, 113, 133, 0.06), transparent 45%);
}

body::after {
  content: var(--luxury) " " var(--fashion) " " var(--premium);
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse at 15% 90%, rgba(96, 165, 250, 0.08), transparent 40%),
    radial-gradient(ellipse at 85% 70%, rgba(52, 211, 153, 0.06), transparent 38%);
}

body > * {
  position: relative;
  z-index: 1;
}

body.nav-locked {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--secondary);
}

.is-hidden {
  display: none !important;
}

.disclosure {
  background: rgba(250, 250, 249, 0.98);
  color: var(--text);
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1.45;
  border-bottom: 1px solid var(--border);
}

.disclosure__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.disclosure__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 25, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--nav-h);
}

.site-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--surface);
}

.brand-lockup img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.brand-lockup span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--surface);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-links a {
  color: rgba(250, 250, 249, 0.88);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: text-shadow 0.35s ease, color 0.35s ease;
}

.nav-links a:hover {
  color: var(--surface);
  text-shadow: 0 0 8px var(--accent);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--surface);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(15, 15, 25, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-overlay.is-open {
  display: flex;
}

.nav-overlay a {
  color: var(--surface);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: text-shadow 0.35s ease;
}

.nav-overlay a:hover {
  text-shadow: 0 0 8px var(--accent);
}

.hero {
  background: var(--primary);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(28, 25, 23, 0.15), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeRise 1.2s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero__title .half-light {
  color: var(--surface);
}

.hero__title .half-accent {
  color: var(--accent);
}

.hero__sub {
  color: rgba(28, 25, 23, 0.72);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.offers {
  padding: 72px 24px;
  background-color: var(--text);
  background-image:
    linear-gradient(180deg, rgba(28, 25, 23, 0.88), rgba(28, 25, 23, 0.92)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  color: var(--surface);
}

.offers__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.offers__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
  text-align: center;
  animation: fadeRise 1s ease both;
}

.offers__intro {
  text-align: center;
  color: rgba(250, 250, 249, 0.72);
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.offer-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  min-width: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.offer-card__logo-wrap {
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px;
  flex-shrink: 0;
}

.offer-card__logo-wrap img,
img.offer-card__logo {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.offer-card__bonus {
  color: #fbbf24;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.35;
  hyphens: auto;
}

.offer-card__terms {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  margin-bottom: 10px;
}

.offer-card__desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  line-height: 1.4;
  margin-bottom: 16px;
}

.offer-card__cta {
  display: inline-block;
  margin-top: auto;
  padding: 12px 28px;
  background: #22c55e;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.offer-card__cta:hover {
  background: #16a34a;
  transform: scale(1.03);
}

.info-block {
  padding: 64px 24px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.info-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.info-block p {
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 68ch;
}

.info-block ul,
.info-block ol {
  margin: 12px 0 16px 1.25rem;
  color: var(--muted);
}

.info-block li {
  margin-bottom: 6px;
}

.section-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--text);
  color: var(--surface);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: background 0.35s ease, color 0.35s ease;
}

.section-cta:hover {
  background: var(--primary);
  color: var(--surface);
}

.decor-img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
}

.info-1 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 72px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.info-1 .decor-wrap {
  background: var(--text);
  padding: 16px;
  animation: fadeRise 1.4s ease both;
}

.info-2 {
  background: var(--text);
  color: var(--surface);
  padding: 72px 24px;
  position: relative;
}

.info-2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url("/images/decorative/decor_2.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  pointer-events: none;
}

.info-2__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.info-2 h2 {
  color: var(--surface);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
}

.info-2 p {
  color: rgba(250, 250, 249, 0.75);
  max-width: 60ch;
  margin-bottom: 14px;
}

.info-2__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.info-2__chips span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.info-3 {
  padding: 72px 24px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-3__rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-3__rail article {
  border-top: 2px solid var(--primary);
  padding-top: 16px;
}

.info-3__rail h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.info-3__rail p {
  color: var(--muted);
  font-size: 0.9rem;
}

.info-3 .decor-wrap {
  align-self: flex-end;
  max-width: 420px;
}

.info-4 {
  padding: 0;
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.12), rgba(96, 165, 250, 0.1));
}

.info-4__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.info-4__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-4__stats div {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
}

.info-4__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.info-4__stats span {
  font-size: 0.85rem;
  color: var(--muted);
}

.info-5 {
  padding: 72px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.info-5__mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}

.info-5__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-5__list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.info-5__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  flex-shrink: 0;
}

.info-5 .decor-wrap {
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.info-6 {
  background: var(--text);
  color: var(--surface);
  padding: 72px 24px;
}

.info-6__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.info-6 h2 {
  color: var(--surface);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
}

.info-6 p {
  color: rgba(250, 250, 249, 0.72);
  margin-bottom: 14px;
}

.info-6 .decor-band {
  height: 280px;
  max-height: 320px;
  background-image: url("/images/decorative/decor_5.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-7 {
  padding: 72px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.info-7__rows {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-7__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.info-7__row:first-child {
  border-top: 1px solid var(--border);
}

.info-7__label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--primary);
}

.info-7__row p {
  margin: 0;
  color: var(--muted);
}

.info-8 {
  padding: 72px 24px;
  background: rgba(96, 165, 250, 0.08);
}

.info-8__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-8 .check-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.info-8 .check-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.info-8 .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.info-9 {
  padding: 72px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.info-9__split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: start;
}

.info-9__quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--text);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0 0;
}

.info-9 .decor-wrap {
  background: linear-gradient(160deg, var(--text), rgba(28, 25, 23, 0.85));
  padding: 12px;
}

.info-10 {
  padding: 72px 24px 96px;
  background: var(--text);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}

.info-10__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.info-10 h2 {
  color: var(--surface);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
}

.info-10 p {
  color: rgba(250, 250, 249, 0.72);
  max-width: 62ch;
  margin-bottom: 14px;
}

.info-10 .section-cta {
  background: var(--primary);
}

.site-footer {
  background: var(--text);
  color: rgba(250, 250, 249, 0.8);
  padding: 56px 24px 40px;
  margin-top: auto;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.site-footer .brand-lockup span {
  color: var(--surface);
}

.site-footer p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 72ch;
}

.site-footer a {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(250, 250, 249, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-badges img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-badges a {
  display: inline-block;
}

.footer-updated {
  color: rgba(250, 250, 249, 0.5);
  font-size: 0.8rem;
}

.footer-requisites {
  font-size: 0.8rem;
  color: rgba(250, 250, 249, 0.55);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(28, 25, 23, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.6s ease both;
}

.age-gate__panel {
  background: var(--surface);
  max-width: 420px;
  width: 100%;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
}

.age-gate__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.age-gate__text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-confirm,
.btn-decline,
#cookie-accept,
#cookie-reject {
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.btn-confirm,
#cookie-accept {
  background: var(--text);
  color: var(--surface);
}

.btn-decline,
#cookie-reject {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  transform: translateY(110%);
  transition: transform 0.45s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
  min-width: 220px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: var(--text);
  color: var(--surface);
  padding: 48px 24px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}

.page-hero p {
  color: rgba(250, 250, 249, 0.65);
  font-size: 0.95rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 28px 0 10px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  margin-bottom: 10px;
}

.legal-content ul {
  margin-left: 1.25rem;
  margin-bottom: 16px;
}

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  padding: 12px 28px;
  background: var(--text);
  color: var(--surface);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.contact-error {
  color: var(--primary);
  font-size: 0.85rem;
}

.contact-success {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid var(--accent);
  padding: 20px;
  color: var(--text);
  margin-top: 24px;
}

.sub-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.sub-layout h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
}

.sub-layout h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 32px 0 12px;
}

.sub-layout h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 24px 0 8px;
}

.sub-layout p {
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 70ch;
}

.sub-layout ul,
.sub-layout ol {
  margin: 0 0 16px 1.25rem;
  color: var(--muted);
}

.sub-layout li {
  margin-bottom: 6px;
}

.go-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.go-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.redirect-ad {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 24px;
}

.redirect-message {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--text);
}

.redirect-compliance {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 420px;
}

.redirect-compliance a {
  color: var(--secondary);
}

.error-page {
  text-align: center;
  padding: 96px 24px;
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

.error-page a {
  display: inline-block;
  padding: 12px 28px;
  background: var(--text);
  color: var(--surface);
  text-decoration: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .info-1,
  .info-4__inner,
  .info-5__mosaic,
  .info-6__inner,
  .info-8__inner,
  .info-9__split {
    grid-template-columns: 1fr;
  }

  .info-3__rail {
    grid-template-columns: 1fr;
  }

  .info-2::before {
    width: 100%;
    opacity: 0.12;
  }

  .info-7__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero {
    padding: 32px 20px;
  }

  .hero__title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }
}

@media (max-width: 600px) {
  .offers__grid {
    grid-template-columns: 1fr;
  }

  .offer-card__logo-wrap {
    width: 160px;
    height: 64px;
  }

  .offer-card__logo-wrap img,
  img.offer-card__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .offer-card__bonus {
    font-size: 0.82rem;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .info-4__stats {
    grid-template-columns: 1fr;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .decor-img {
    max-width: 100%;
    max-height: 220px;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
    width: 100%;
  }

  .info-2::before {
    width: 100%;
    max-width: 100%;
  }

  .info-6 .decor-band {
    width: 100%;
    max-width: 100%;
    max-height: 200px;
    height: 180px;
  }

  .footer-badges img {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .decor-img {
    max-width: 100%;
    max-height: 180px;
    width: 100%;
  }

  .decor-wrap,
  .info-1,
  .info-3,
  .info-5,
  .info-5__mosaic,
  .offers__inner,
  .hero__inner {
    max-width: 100%;
    overflow-x: hidden;
  }

  .offer-card__logo-wrap {
    width: 140px;
    height: 56px;
  }

  .offer-card__logo-wrap img,
  img.offer-card__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .offer-card {
    padding: 20px 14px;
    max-width: 100%;
  }
}

.pay-strip {
  background: linear-gradient(120deg, rgba(96, 165, 250, 0.18), rgba(52, 211, 153, 0.12));
  padding: 48px 24px;
  text-align: center;
}

.pay-strip h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.pay-strip p {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto;
}

.pay-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.pay-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.92rem;
}

.pay-table th,
.pay-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
  color: var(--muted);
}

.pay-table th {
  background: var(--text);
  color: var(--surface);
  font-family: var(--font-display);
  font-weight: 600;
}

.pay-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}

.pay-mosaic .decor-wrap {
  background: var(--text);
  padding: 12px;
  overflow: hidden;
}

.pay-mosaic img {
  max-width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

.pay-callout {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  padding: 18px 20px;
  margin: 28px 0;
  color: var(--muted);
}

@media (max-width: 800px) {
  .pay-mosaic {
    grid-template-columns: 1fr;
  }

  .pay-table {
    display: block;
    overflow-x: auto;
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .pay-body,
  .pay-mosaic,
  .pay-strip {
    max-width: 100%;
    overflow-x: hidden;
  }

  .pay-mosaic img,
  .decor-img {
    max-width: 100%;
    max-height: 180px;
  }
}
