:root {
  --bg: #020617;
  --surface: #020F2F;
  --text: #E5E7EB;
  --muted: #94A3B8;
  --primary: #38BDF8;
  --secondary: #A3E635;
  --accent: #F472B6;
  --border: rgba(229,231,235,0.12);
  --font-serif: Georgia, "Times New Roman", "Palatino Linotype", Palatino, serif;
  --font-sans: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
  --fashion: fashion;
  --runway: runway;
  --editorial: editorial;
  --visual: visual;
  --aesthetic: aesthetic;
  --offer-card-bg: #ffffff;
  --offer-card-border: #e2e8f0;
  --offer-card-text: #1e293b;
  --offer-card-muted: #64748b;
  --offer-bonus: #0f172a;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --offer-star: #f59e0b;
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, rgba(2, 6, 23, 1) 0%, rgba(2, 15, 47, 0.96) 48%, rgba(2, 6, 23, 1) 100%),
    radial-gradient(ellipse 70% 50% at 12% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 40% at 92% 18%, rgba(244, 114, 182, 0.1), transparent 50%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 78% 72%, rgba(163, 230, 53, 0.05), transparent 42%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 56px,
      rgba(229, 231, 235, 0.015) 56px,
      rgba(229, 231, 235, 0.015) 57px
    );
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 42% 28% at 50% 100%, rgba(56, 189, 248, 0.06), transparent 62%);
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.fashion {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
}

.runway {
  position: relative;
}

.editorial {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--muted);
}

.visual {
  overflow: hidden;
}

.aesthetic {
  mix-blend-mode: normal;
}

.disclosure-banner {
  width: 100%;
  height: 28px;
  padding: 4px 0;
  overflow: hidden;
  background: #01040f;
  color: rgba(229, 231, 235, 0.92);
  flex-shrink: 0;
  z-index: 200;
}

.disclosure-track {
  display: flex;
  width: max-content;
  gap: 4rem;
  animation: disclosure-marquee 42s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.disclosure-track span {
  font-size: 11px;
  line-height: 20px;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.02em;
}

@keyframes disclosure-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: 44px;
  background: rgba(2, 6, 23, 0.96);
  backdrop-filter: blur(8px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent 70%);
}

.nav-inner {
  width: 100%;
  height: 44px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-lockup:hover {
  color: var(--primary);
}

.brand-lockup img {
  width: 20px;
  height: 20px;
  max-height: 20px;
  object-fit: contain;
}

.brand-lockup span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
  color: rgba(229, 231, 235, 0.88);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateX(-50%) scale(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: translateX(-50%) scale(1);
}

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

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

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

.burger.active span:nth-child(2) {
  opacity: 0;
}

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

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 550;
  background: rgba(2, 6, 23, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 600;
  background: var(--surface);
  border-radius: 18px 18px 0 0;
  border-top: 1px solid var(--border);
  padding: 20px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(110%);
  transition: transform 0.3s ease;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  color: var(--text);
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-close {
  align-self: flex-end;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

main {
  flex: 1;
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg);
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  margin-bottom: 12px;
  animation: hero-rise 0.9s ease both;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  max-width: 520px;
  margin: 0 auto;
  animation: hero-rise 1.1s ease 0.12s both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  background-image:
    linear-gradient(180deg, rgba(2, 6, 23, 0.88), rgba(2, 15, 47, 0.92)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(56, 189, 248, 0.08), transparent 60%);
  pointer-events: none;
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.offers-intro {
  text-align: center;
  margin-bottom: 32px;
}

.offers-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}

.offers-intro p {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--offer-card-bg);
  border: 1px solid var(--offer-card-border);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.06);
  overflow: hidden;
  min-width: 0;
  transition: transform 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
}

.offer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 96px;
  margin: 1rem auto 0;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

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

.offer-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--offer-card-text);
  text-align: center;
  margin: 0.85rem 1rem 0.35rem;
}

.offer-bonus-group {
  padding: 0 1.1rem;
  text-align: center;
  min-width: 0;
  max-width: 100%;
}

.offer-bonus {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--offer-bonus);
  font-weight: 600;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}

.offer-terms {
  margin: 0.3rem 0 0;
  font-size: 0.6875rem;
  color: var(--offer-card-muted);
}

.offer-desc {
  margin: 0.65rem 1.1rem 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--offer-card-muted);
  text-align: center;
}

.offer-cta {
  display: block;
  margin: 1rem 1.1rem 1.15rem;
  padding: 0.7rem 1rem;
  text-align: center;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.offer-cta:hover {
  filter: brightness(1.08);
  color: var(--offer-cta-text);
  transform: translateY(-1px);
}

.info-section {
  padding: 56px 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.info-section h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  margin-bottom: 14px;
}

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

.info-section p:last-child {
  margin-bottom: 0;
}

.tip-list {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.45rem;
}

.tip-list li::marker {
  color: var(--primary);
}

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

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.topic-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, color 0.2s ease;
}

.topic-cta:hover {
  background: rgba(56, 189, 248, 0.12);
  color: #fff;
}

.layout-asymmetric {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
}

.layout-asymmetric.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.layout-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.layout-split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--border);
}

.layout-split-band > div {
  padding: 24px;
}

.layout-split-band > div:first-child {
  background: rgba(56, 189, 248, 0.06);
  border-right: 1px solid var(--border);
}

.soft-panel {
  margin-top: 16px;
  padding: 20px 22px;
  background: rgba(2, 15, 47, 0.75);
  border-left: 2px solid var(--secondary);
}

.pull-quote {
  margin: 20px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  max-width: 36ch;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.stat-band article {
  padding: 18px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.stat-band strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-band span {
  font-size: 0.78rem;
  color: var(--muted);
}

.mosaic-rail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-top: 18px;
  align-items: stretch;
}

.mosaic-rail .rail-copy {
  padding: 8px 0;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.card-row article {
  padding: 16px;
  border: 1px solid var(--border);
  background: rgba(2, 15, 47, 0.55);
}

.card-row h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.card-row p {
  font-size: 0.85rem;
  margin: 0;
}

.timeline {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  border-left: 1px solid var(--border);
  padding-left: 18px;
}

.timeline li {
  position: relative;
  color: var(--muted);
  padding-left: 4px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.image-band {
  margin-top: 20px;
  min-height: 180px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  position: relative;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.75), transparent 55%);
}

.image-band .band-label {
  position: relative;
  z-index: 1;
  padding: 28px;
  max-width: 320px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.narrow-column {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.narrow-column p {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  margin-top: auto;
  padding: 48px 24px 28px;
  background: #01040f;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .brand-lockup img {
  width: 20px;
  height: 20px;
}

.footer-text {
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 62ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.82rem;
}

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

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

.footer-badges a,
.footer-badges span {
  display: inline-flex;
}

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

.footer-company {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.78rem;
}

.updated {
  color: var(--muted);
  font-size: 0.78rem;
}

.page-hero {
  padding: 48px 24px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
}

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

.legal-content ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 12px;
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  max-width: 480px;
}

.contact-form label {
  font-size: 0.85rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: 6px;
}

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

.contact-form input.error,
.contact-form textarea.error {
  border-color: var(--accent);
}

.contact-form button {
  margin-top: 6px;
  padding: 12px 18px;
  background: var(--primary);
  color: var(--bg);
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
}

.contact-form button:hover {
  filter: brightness(1.08);
}

.error-msg {
  display: none;
  color: var(--accent);
  font-size: 0.8rem;
}

.error-msg.visible {
  display: block;
}

.form-success {
  display: none;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--secondary);
  color: var(--text);
  background: rgba(163, 230, 53, 0.08);
}

.form-success.visible {
  display: block;
}

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(2, 6, 23, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-overlay.active {
  display: flex;
}

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

.age-modal h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.age-modal p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.age-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-actions button {
  padding: 10px 16px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.88rem;
}

.btn-confirm {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.btn-decline {
  background: transparent;
  color: var(--text);
}

#age-blocked {
  display: none;
  color: var(--muted);
  margin-top: 12px;
}

#age-blocked.visible {
  display: block;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 8500;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px 18px;
  display: none;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.cookie-banner.active {
  display: flex;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.85rem;
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  padding: 8px 14px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.82rem;
  font-family: var(--font-sans);
}

.cookie-actions .accept {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.cookie-actions .reject {
  background: transparent;
  color: var(--text);
}

.redirect-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 14px;
}

.ad-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

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

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

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

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 14px;
}

.error-page a {
  margin-top: 8px;
  padding: 10px 18px;
  border: 1px solid var(--primary);
}

.topic-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 40px 24px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.topic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.35), rgba(2, 6, 23, 0.88));
}

.topic-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.topic-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.topic-layout {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px 64px;
  display: grid;
  gap: 28px;
}

.topic-layout.with-rail {
  grid-template-columns: 1fr 240px;
  align-items: start;
}

.topic-main h2 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.topic-main p {
  color: var(--muted);
  margin-bottom: 14px;
}

.topic-rail {
  position: sticky;
  top: 64px;
  padding: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.topic-rail .fashion {
  margin-bottom: 10px;
}

.topic-rail p {
  font-size: 0.8rem;
  color: var(--muted);
}

.split-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.quote-block {
  margin: 24px 0;
  padding: 28px;
  background: rgba(244, 114, 182, 0.06);
  border-left: 3px solid var(--accent);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
}

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

  .burger {
    display: flex;
  }

  .layout-asymmetric,
  .layout-asymmetric.reverse,
  .layout-split-band,
  .mosaic-rail,
  .split-visual,
  .topic-layout.with-rail,
  .card-row,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .layout-split-band > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    padding: 0 16px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 200px;
  }

  .offers-section {
    padding: 40px 16px;
  }

  .info-section {
    padding: 40px 16px;
  }

  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

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

  .decor-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
  }

  .offer-logo {
    width: 160px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .offer-bonus {
    font-size: 0.75rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .topic-hero {
    min-height: 180px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  .image-band {
    max-width: 100%;
    overflow: hidden;
    background-size: cover;
  }
}

#info-1 {
  padding-top: 64px;
}

#info-2 {
  max-width: none;
  padding: 0;
  background: linear-gradient(120deg, rgba(2, 15, 47, 0.9), rgba(2, 6, 23, 0.4));
}

#info-2 .info-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px;
}

#info-3 .layout-split-band {
  margin-top: 22px;
}

#info-4 {
  position: relative;
}

#info-4::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#info-4 > * {
  position: relative;
  z-index: 1;
}

#info-5 .card-row article:nth-child(2) {
  transform: translateY(12px);
}

#info-6 {
  text-align: left;
}

#info-6 .pull-quote {
  margin-left: auto;
}

#info-7 .image-band {
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.2)), url("/images/decorative/decor_5.webp");
}

#info-8 .timeline {
  max-width: 640px;
}

#info-9 .narrow-column .decor-wrap {
  margin: 18px auto;
  display: flex;
  justify-content: center;
}

#info-10 {
  border-top: 1px solid var(--border);
}

@keyframes fashion {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

@keyframes runway {
  from {
    transform: translateY(6px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes editorial {
  0%,
  100% {
    letter-spacing: 0.14em;
  }
  50% {
    letter-spacing: 0.18em;
  }
}

@keyframes visual {
  from {
    filter: saturate(0.9);
  }
  to {
    filter: saturate(1);
  }
}

@keyframes aesthetic {
  0%,
  100% {
    opacity: 0.95;
  }
  50% {
    opacity: 1;
  }
}

.hero h1 {
  animation: fashion 1s ease both, runway 0.9s ease both;
}

.offers-intro .fashion {
  animation: editorial 6s ease-in-out infinite;
}

.offers-section {
  animation: visual 1.2s ease both;
}

.info-section {
  animation: aesthetic 1.4s ease both;
}
