:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --text: #FAFAFA;
  --muted: #A3A3A3;
  --primary: #F97316;
  --secondary: #FB923C;
  --accent: #22C55E;
  --border: rgba(250,250,250,0.12);
  --sidebar-w: 72px;
  --topnav-h: 52px;
  --max: 1120px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Arial Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --offer-bg: #1a1a1a;
  --offer-border: #2a2a2a;
  --offer-bonus: #ffd700;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
}

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

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

body {
  font-family: var(--sans);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, var(--bg) 0%, #121212 42%, var(--bg) 100%),
    radial-gradient(ellipse 70% 45% at 8% -10%, rgba(249, 115, 22, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 96% 12%, rgba(34, 197, 94, 0.08), transparent 50%);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(250, 250, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 250, 250, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.45;
}

body.nav-open {
  overflow: hidden;
}

.brutalist {
  outline: 1px solid var(--border);
}

.anti-design {
  transform: rotate(-0.4deg);
}

.raw {
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.55);
}

.typography {
  font-family: var(--display);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.asymmetric {
  margin-left: 4vw;
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
}

main {
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
}

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

a {
  color: LinkText;
}

.site-sidebar a,
.site-topnav a,
.nav-overlay a,
.footer-links a,
.offer-cta,
.section-cta,
.brand-lockup,
.btn {
  color: inherit;
  text-decoration: none;
}

.disclosure-banner {
  position: relative;
  z-index: 130;
  width: 100%;
  padding: 6px 16px;
  text-align: center;
  background: transparent;
  border: none;
}

.disclosure-banner p {
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
  color: var(--muted);
}

.site-sidebar {
  display: none;
}

.site-topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topnav-h);
  padding: 0 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 120;
}

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

.brand-lockup img {
  width: 48px;
  height: 8px;
  object-fit: contain;
}

.brand-lockup span,
.brand-name {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--text);
  white-space: nowrap;
}

.burger {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 250;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-overlay.is-open {
  transform: translateX(0);
}

.nav-overlay-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.nav-overlay a {
  display: block;
  padding: 14px 8px;
  color: var(--text);
  font-family: var(--display);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.marquee-rail {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 8px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  animation: brutalist-marquee 28s linear infinite;
}

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

.hero {
  position: relative;
  min-height: 300px;
  padding: 60px 24px 80px;
  background: var(--bg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--text);
  max-width: 14ch;
  margin: 0 auto 16px;
  transform: scaleY(1.12);
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text);
  max-width: 38ch;
  margin: 0 auto;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 56px;
  display: block;
}

.offers-section {
  padding: 64px 24px;
  position: relative;
  background-color: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.82), rgba(20, 20, 20, 0.9)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--border);
  pointer-events: none;
}

.offers-intro {
  max-width: var(--max);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.offers-intro h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.offers-intro p {
  color: var(--muted);
  max-width: 54ch;
}

.offers-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.offer-card {
  background: var(--offer-bg);
  border: 1px solid var(--offer-border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-logo {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px;
  background: #0d0d0d;
  padding: 10px;
}

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

.offer-name {
  text-align: center;
  font-family: var(--sans);
  font-size: 1.05rem;
}

.offer-bonus-group {
  text-align: center;
}

.offer-bonus {
  margin: 0;
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: clamp(0.82rem, 2.4vw, 1rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.offer-terms {
  margin: 6px 0 0;
  font-size: 0.72rem;
  color: #9ca3af;
}

.offer-desc {
  margin: 0;
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.45;
  text-align: center;
}

.offer-cta {
  display: block;
  margin-top: auto;
  padding: 12px 16px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
}

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

.info-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.info-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 14px;
  color: var(--text);
}

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

.info-section ul {
  margin: 12px 0 0 1.2rem;
  color: var(--muted);
}

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

.info-1 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.info-1 .info-copy {
  border: 1px solid var(--border);
  padding: 20px;
  background: rgba(20, 20, 20, 0.7);
}

.info-2 {
  background: var(--surface);
  max-width: none;
  width: 100%;
  padding-left: max(24px, calc((100% - var(--max)) / 2 + 24px));
  padding-right: max(24px, calc((100% - var(--max)) / 2 + 24px));
}

.info-2 .tip-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.tip-chip {
  border: 1px dashed var(--border);
  padding: 10px 14px;
  font-family: var(--serif);
  color: var(--text);
  background: rgba(249, 115, 22, 0.08);
}

.info-3 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.info-3 .live-panel {
  border: 2px solid var(--primary);
  padding: 20px;
  transform: rotate(0.5deg);
  background: var(--surface);
}

.info-4 {
  text-align: center;
}

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

.rg-cell {
  border: 1px solid var(--border);
  padding: 16px 12px;
  background: rgba(34, 197, 94, 0.06);
}

.rg-cell strong {
  display: block;
  font-family: var(--display);
  margin-bottom: 6px;
  color: var(--accent);
}

.info-5 {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  align-items: center;
}

.info-5 .steps {
  list-style: none;
  margin: 16px 0 0;
  counter-reset: step;
}

.info-5 .steps li {
  counter-increment: step;
  position: relative;
  padding-left: 42px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.info-5 .steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.75rem;
  color: var(--primary);
}

.info-6 {
  background:
    linear-gradient(120deg, transparent 0%, rgba(249, 115, 22, 0.07) 100%),
    var(--bg);
  max-width: none;
  width: 100%;
  padding-left: max(24px, calc((100% - var(--max)) / 2 + 24px));
  padding-right: max(24px, calc((100% - var(--max)) / 2 + 24px));
}

.info-6 .support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.support-card {
  border: 1px solid var(--border);
  padding: 16px;
  background: var(--surface);
}

.support-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.info-7 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-7 .beyond-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.beyond-label {
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--secondary);
  text-transform: uppercase;
}

.info-8 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pay-block {
  border: 1px solid var(--border);
  padding: 18px;
  background: rgba(20, 20, 20, 0.85);
}

.pay-block h3 {
  font-family: var(--display);
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.info-9 {
  position: relative;
}

.info-9 .rule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.92rem;
}

.info-9 .rule-table th,
.info-9 .rule-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}

.info-9 .rule-table th {
  background: var(--surface);
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.info-10 {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 24px;
}

.pull-quote {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--text);
  border: 2px solid var(--secondary);
  padding: 20px;
  transform: rotate(1deg);
  background: var(--surface);
}

.decor-frame {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.5);
}

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

.decor-bg {
  min-height: 180px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.section-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  background: transparent;
}

.section-cta:hover {
  background: rgba(249, 115, 22, 0.12);
  color: var(--secondary);
}

.site-footer {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: auto;
}

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

.footer-brand p,
.footer-compliance p,
.footer-updated,
.footer-requisites,
.footer-copy {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.9rem;
}

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

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

.footer-requisites {
  font-size: 0.82rem;
}

.age-gate,
.cookie-banner {
  position: fixed;
  z-index: 400;
}

.age-gate {
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.is-hidden,
.cookie-banner.is-hidden,
.is-hidden {
  display: none !important;
}

.age-card {
  background: var(--surface);
  border: 2px solid var(--border);
  padding: 28px 24px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.5);
}

.age-card h2 {
  font-family: var(--display);
  margin-bottom: 10px;
}

.age-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 700;
  font-family: var(--sans);
  background: var(--surface);
  color: var(--text);
}

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

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.cookie-banner {
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

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

.cookie-banner p {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1 1 240px;
}

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

.legal-content,
.topic-wrap,
.error-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.legal-content h1,
.topic-wrap h1,
.error-page h1 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

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

.legal-content h3,
.topic-wrap h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  margin: 18px 0 8px;
}

.legal-content p,
.topic-wrap p,
.error-page p {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-content ul,
.topic-wrap ul {
  margin: 0 0 14px 1.2rem;
  color: var(--muted);
}

.legal-content li,
.topic-wrap li {
  margin-bottom: 6px;
}

.page-hero {
  padding: 40px 24px 28px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), var(--bg));
}

.page-hero h1 {
  max-width: var(--max);
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  border: 1px solid var(--border);
  padding: 20px;
  background: var(--surface);
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
}

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

.contact-form button {
  justify-self: start;
  padding: 12px 18px;
  background: var(--primary);
  color: var(--bg);
  border: none;
  font-weight: 700;
  cursor: pointer;
}

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

.error-msg.is-visible,
.form-success.is-visible {
  display: block;
}

.form-success {
  display: none;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--accent);
  color: var(--text);
  background: rgba(34, 197, 94, 0.08);
}

.redirect-body {
  min-height: 100vh;
}

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

.ad-label {
  font-family: var(--display);
  letter-spacing: 0.12em;
  color: var(--primary);
}

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

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

.redirect-notes {
  color: var(--muted);
  max-width: 42ch;
  font-size: 0.9rem;
}

.redirect-notes a {
  color: LinkText;
}

.topic-hero {
  padding: 48px 24px 36px;
  background: var(--surface);
  border-bottom: 4px solid var(--primary);
}

.topic-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.topic-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.topic-hero p {
  color: var(--muted);
  max-width: 50ch;
  font-family: var(--serif);
}

.topic-layout-a {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.topic-layout-b {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.topic-layout-b .stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

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

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

.topic-layout-c {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.topic-rail {
  border-right: 1px solid var(--border);
  padding-right: 16px;
}

.topic-rail span {
  display: block;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 8px;
}

.topic-layout-d {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.topic-layout-d .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
  align-items: center;
}

.topic-callout {
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  background: rgba(34, 197, 94, 0.06);
  margin: 18px 0;
  color: var(--text);
  font-family: var(--serif);
}

.error-page {
  text-align: center;
}

.error-page a {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  border: 2px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  font-family: var(--display);
}

@keyframes asymmetric-shift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.hero h1 {
  animation: asymmetric-shift 5s ease-in-out infinite;
}

@media (min-width: 901px) {
  body {
    padding-left: var(--sidebar-w);
  }

  .disclosure-banner {
    margin-left: calc(var(--sidebar-w) * -1);
    width: calc(100% + var(--sidebar-w));
  }

  .site-topnav {
    display: none;
  }

  .site-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: var(--bg);
    border-right: 1px solid var(--border);
    z-index: 200;
    padding: 16px 0 24px;
    gap: 16px;
  }

  .site-sidebar .brand-lockup {
    flex-direction: column;
    gap: 6px;
    padding: 0 6px;
    text-align: center;
  }

  .site-sidebar .brand-lockup img {
    width: 44px;
    height: 8px;
  }

  .site-sidebar .brand-lockup span {
    font-size: 0.55rem;
    writing-mode: horizontal-tb;
    white-space: normal;
    line-height: 1.1;
    text-align: center;
  }

  .sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    flex: 1;
    overflow-y: auto;
  }

  .sidebar-nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 40px;
    color: var(--muted);
    font-family: var(--display);
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: 1px solid transparent;
  }

  .sidebar-nav a:hover,
  .sidebar-nav a:focus {
    color: var(--primary);
    border-color: var(--border);
    background: rgba(249, 115, 22, 0.1);
  }

  .sidebar-nav a::after {
    content: attr(data-tip);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 6px 10px;
    font-family: var(--sans);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
  }

  .sidebar-nav a:hover::after,
  .sidebar-nav a:focus::after {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 32px 20px 48px;
    min-height: 260px;
  }

  .hero-wave {
    height: 36px;
  }

  .info-1,
  .info-3,
  .info-5,
  .info-8,
  .info-10,
  .topic-layout-a,
  .topic-layout-c,
  .topic-layout-d .split {
    grid-template-columns: 1fr;
  }

  .info-4 .rg-band,
  .info-6 .support-grid,
  .topic-layout-b .stat-band {
    grid-template-columns: 1fr;
  }

  .info-7 .beyond-row {
    grid-template-columns: 1fr;
  }

  .topic-rail {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
  }

  .decor-frame,
  .decor-frame img {
    max-width: 100%;
  }
}

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

  .offer-logo {
    width: 160px;
    height: 80px;
  }

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

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

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

  .decor-bg {
    min-height: 140px;
    max-height: 200px;
  }

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