:root {
  --bg: #F0F9FF;
  --surface: #FFFFFF;
  --text: #0C4A6E;
  --muted: #7DD3FC;
  --primary: #0EA5E9;
  --secondary: #BAE6FD;
  --accent: #38BDF8;
  --border: rgba(12,74,110,0.12);
  --offer-bg: #1a1a1a;
  --offer-border: #2a2a2a;
  --offer-bonus: #ffd700;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --nav-dark: #0C4A6E;
  --max-w: 1200px;
  --font: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-stretch: "Arial Narrow", "Segoe UI", Helvetica, Arial, sans-serif;
  --highlight: #FDE047;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(160deg, var(--bg) 0%, #e0f2fe 42%, #f0f9ff 100%),
    radial-gradient(ellipse 65% 45% at 8% -5%, rgba(14, 165, 233, 0.18), transparent 55%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "rebellion glitch noisy digital-punk distorted";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  font-size: 0;
  opacity: 0.4;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(12, 74, 110, 0.03) 3px,
      rgba(12, 74, 110, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 47px,
      rgba(56, 189, 248, 0.04) 47px,
      rgba(56, 189, 248, 0.04) 48px
    );
}

body::after {
  content: "";
  position: fixed;
  width: 3px;
  height: 3px;
  top: 38%;
  left: 72%;
  z-index: 0;
  pointer-events: none;
  background: var(--primary);
  box-shadow:
    14vw 22vh 0 1px rgba(14, 165, 233, 0.55),
    -18vw 48vh 0 0 rgba(12, 74, 110, 0.45),
    32vw -12vh 0 1px rgba(56, 189, 248, 0.4),
    -40vw 8vh 0 0 rgba(14, 165, 233, 0.35),
    8vw 70vh 0 1px rgba(12, 74, 110, 0.3);
}

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

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--text);
  filter: invert(1) hue-rotate(180deg);
}

.disclosure-wrap {
  position: relative;
  z-index: 50;
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.disclosure-banner {
  display: block;
  width: 100%;
  margin: 0;
  padding: 8px 16px;
  background: transparent;
  color: rgba(12, 74, 110, 0.65);
  font-size: 12px;
  text-align: center;
  line-height: 1.45;
}

.disclosure-mark {
  background: var(--highlight);
  color: var(--text);
  padding: 1px 6px;
  font-weight: 700;
}

.site-header {
  position: static;
  z-index: 40;
  background: var(--nav-dark);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: 90px;
  justify-content: center;
}

.nav-row-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-row-links {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand-lockup:hover {
  color: var(--secondary);
  filter: none;
}

.brand-lockup img {
  width: 120px;
  height: 37px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-stretch);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  transform: scaleX(1.08);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 8px;
}

.nav-links a:hover {
  color: var(--secondary);
  filter: none;
  background: rgba(255, 255, 255, 0.08);
}

.burger-btn {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 60;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
}

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

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

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

.burger-btn span {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 74, 110, 0.55);
  z-index: 90;
}

#drawer-overlay.open {
  display: block;
}

#mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--nav-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 48px 24px;
}

#mobile-drawer.open {
  display: flex;
}

#mobile-drawer a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

#mobile-drawer a:hover {
  color: var(--accent);
  filter: none;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-strip {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 165, 233, 0.35), transparent 40%, rgba(56, 189, 248, 0.25)),
    linear-gradient(0deg, var(--bg), transparent 40%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-body {
  background: var(--bg);
  padding: 40px 24px 48px;
  text-align: center;
  position: relative;
}

.hero-body h1 {
  font-family: var(--font-stretch);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: scaleY(1.15);
  line-height: 1.1;
  position: relative;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
}

.hero-glitch {
  position: relative;
}

.hero-glitch::before,
.hero-glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-glitch::before {
  color: rgba(14, 165, 233, 0.7);
  transform: translate(-2px, 1px);
  clip-path: inset(0 0 55% 0);
}

.hero-glitch::after {
  color: rgba(56, 189, 248, 0.55);
  transform: translate(2px, -1px);
  clip-path: inset(45% 0 0 0);
}

.hero-sub {
  margin-top: 14px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(12, 74, 110, 0.78);
  font-size: 1.05rem;
}

.marquee-rail {
  overflow: hidden;
  background: var(--nav-dark);
  color: var(--secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: inline-block;
  padding: 8px 0;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: marquee-fast 18s linear infinite;
}

.marquee-rail:hover .marquee-track {
  animation-duration: 42s;
}

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

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-image:
    linear-gradient(180deg, rgba(12, 74, 110, 0.72), rgba(12, 74, 110, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-intro {
  max-width: var(--max-w);
  margin: 0 auto 28px;
  text-align: center;
  color: #fff;
}

.offers-intro h2 {
  font-family: var(--font-stretch);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.offers-intro p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 0 auto;
}

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

.offer-card {
  background: var(--offer-bg);
  border: 1px solid var(--offer-border);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.offer-logo {
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.offer-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.offer-bonus-group {
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-bonus {
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: clamp(0.78rem, 2.6vw, 0.98rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}

.offer-terms {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  margin-top: 4px;
}

.offer-desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 18px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  font-weight: 700;
  font-size: 0.9rem;
  width: 100%;
  border: none;
  cursor: pointer;
}

.offer-cta:hover {
  filter: invert(1) hue-rotate(180deg);
  color: var(--offer-cta-text);
}

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

.info-section h2 {
  font-family: var(--font-stretch);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  transform: scaleX(1.03);
  transform-origin: left;
}

.info-section p {
  color: rgba(12, 74, 110, 0.88);
  margin-bottom: 12px;
}

.info-section + .info-section {
  border-top: 1px solid var(--border);
}

.section-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-cta:hover {
  background: var(--text);
  color: var(--secondary);
  filter: none;
}

.decor-wrap {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

.rgb-split {
  position: relative;
}

.rgb-split::before,
.rgb-split::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: inherit;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.45;
}

.rgb-split::before {
  transform: translate(-3px, 0);
  filter: hue-rotate(-20deg);
}

.rgb-split::after {
  transform: translate(3px, 0);
  filter: hue-rotate(25deg);
}

.clip-overlap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  line-height: 1.05;
}

.clip-overlap span {
  position: absolute;
  left: 6px;
  top: 4px;
  color: var(--accent);
  opacity: 0.45;
  white-space: nowrap;
  pointer-events: none;
}

.layout-stack p {
  max-width: 70ch;
}

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

.layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

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

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.mini-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.layout-band {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  padding: 20px 22px;
  margin-top: 12px;
}

.layout-list ul,
ul.layout-list {
  margin: 12px 0 0 18px;
}

.layout-list li,
ul.layout-list li {
  margin-bottom: 8px;
  color: rgba(12, 74, 110, 0.88);
}

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

.layout-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}

.layout-quote {
  margin: 18px 0;
  padding: 22px 24px;
  background: linear-gradient(135deg, var(--secondary), var(--surface));
  border: 1px solid var(--border);
  font-size: 1.15rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.layout-quote::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary);
  top: 10px;
  right: 14px;
  opacity: 0.7;
}

.layout-rail {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
}

.rail-visual {
  width: 160px;
  height: 220px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.stat-cell {
  background: var(--nav-dark);
  color: var(--secondary);
  padding: 16px;
  text-align: center;
}

.stat-cell strong {
  display: block;
  font-size: 1.4rem;
  color: #fff;
}

.stat-cell span {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.layout-invert-hover article {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  transition: filter 0.2s ease, background 0.2s ease;
}

.layout-invert-hover article:hover {
  filter: invert(1) hue-rotate(180deg);
}

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

.site-footer {
  position: relative;
  z-index: 2;
  background: var(--nav-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 24px 32px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-brand:hover {
  filter: none;
  color: var(--secondary);
}

.footer-brand img {
  width: 100px;
  height: 31px;
  object-fit: contain;
}

.footer-brand span {
  font-family: var(--font-stretch);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 22px;
}

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

.footer-links a:hover {
  color: #fff;
  filter: none;
}

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

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

.footer-badges a:hover {
  filter: none;
  opacity: 0.85;
}

.footer-disclosure p {
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 90ch;
}

.footer-company {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.footer-updated {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 74, 110, 0.72);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

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

.modal-box h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.modal-box p {
  color: rgba(12, 74, 110, 0.8);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--text);
}

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

#age-blocked {
  display: none;
  margin-top: 12px;
  color: var(--text);
  font-weight: 700;
}

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

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 180;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  box-shadow: 0 -8px 24px rgba(12, 74, 110, 0.12);
}

#cookie-banner.active {
  display: block;
}

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

.cookie-inner p {
  flex: 1 1 280px;
  font-size: 0.9rem;
  color: rgba(12, 74, 110, 0.85);
}

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

.page-hero {
  padding: 40px 24px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-stretch);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: scaleX(1.04);
  transform-origin: left;
}

.legal-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px 56px;
}

.legal-content h2 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.legal-content p,
.legal-content li {
  color: rgba(12, 74, 110, 0.88);
  margin-bottom: 10px;
}

.legal-content ul {
  margin-left: 18px;
  margin-bottom: 12px;
}

.contact-form {
  margin-top: 28px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 22px;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.9rem;
}

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

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

.field-error {
  display: none;
  color: #b91c1c;
  font-size: 0.85rem;
}

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

.contact-form.is-hidden {
  display: none;
}

#form-success {
  display: none;
  margin-top: 20px;
  padding: 18px;
  background: var(--secondary);
  border: 1px solid var(--border);
  font-weight: 700;
}

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

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

.ad-label {
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary);
}

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

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

.redirect-notes {
  max-width: 520px;
  font-size: 0.88rem;
  color: rgba(12, 74, 110, 0.75);
}

.redirect-notes a {
  text-decoration: underline;
}

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

.error-page h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.error-page a {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.error-page a:hover {
  filter: none;
  background: var(--text);
}

.topic-shell {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.topic-shell h1 {
  font-family: var(--font-stretch);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.topic-shell h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.topic-shell h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.topic-shell p {
  margin-bottom: 12px;
  color: rgba(12, 74, 110, 0.88);
}

.topic-shell ul {
  margin: 0 0 14px 18px;
}

.topic-shell li {
  margin-bottom: 6px;
  color: rgba(12, 74, 110, 0.88);
}

.pull-quote {
  font-size: 1.25rem;
  font-weight: 800;
  border-left: 4px solid var(--accent);
  padding: 12px 0 12px 18px;
  margin: 22px 0;
  overflow: hidden;
  position: relative;
}

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

.side-rail-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
}

.side-rail {
  background-size: cover;
  background-position: center;
  min-height: 280px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.split-hero-topic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.image-band {
  height: 140px;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  margin: 24px 0;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.35), transparent 50%, rgba(56, 189, 248, 0.3));
  mix-blend-mode: soft-light;
}

@media (max-width: 900px) {
  .layout-split,
  .layout-zigzag,
  .layout-mosaic,
  .layout-rail,
  .side-rail-layout,
  .split-hero-topic {
    grid-template-columns: 1fr;
  }

  .layout-cards,
  .layout-stats,
  .stat-band,
  .live-grid {
    grid-template-columns: 1fr;
  }

  .rail-visual,
  .side-rail {
    width: 100%;
    max-width: 100%;
    height: 160px;
    min-height: 160px;
  }

  .nav-row-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .nav-inner {
    min-height: 64px;
    padding: 12px 16px;
  }

  .nav-row-logo {
    border-bottom: none;
    padding-bottom: 0;
    justify-content: flex-start;
  }

  .hero-strip {
    height: 60px;
    max-width: 100%;
  }

  .brand-name {
    font-size: 0.85rem;
  }

  .brand-lockup img {
    width: 90px;
    height: 28px;
  }

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

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

  .decor-wrap,
  .decor-wrap img,
  .decor-img,
  .image-band,
  .rgb-split {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

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

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

  .decor-wrap {
    max-width: 100%;
    max-height: 200px;
  }

  .decor-wrap img,
  .decor-img {
    max-width: 100%;
    max-height: 200px;
  }

  .image-band {
    max-width: 100%;
    height: 100px;
  }

  .info-section,
  .topic-shell {
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: hidden;
  }
}

@media (max-width: 375px) {
  .decor-wrap,
  .decor-wrap img,
  .decor-img,
  .hero-strip,
  .rail-visual,
  .side-rail,
  .image-band,
  .rgb-split {
    max-width: 100%;
  }

  .decor-wrap {
    max-height: 180px;
  }

  .offer-logo {
    width: 120px;
    height: 48px;
  }

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

.topic-rtp .split-hero-topic .decor-wrap {
  justify-self: end;
}

.topic-bonus .checklist {
  list-style: none;
  margin-left: 0;
  display: grid;
  gap: 10px;
}

.topic-bonus .checklist li {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px 14px;
  position: relative;
  padding-left: 36px;
}

.topic-bonus .checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.topic-licence .callout {
  background: var(--nav-dark);
  color: var(--secondary);
  padding: 20px;
  margin: 20px 0;
}

.topic-licence .callout strong {
  color: #fff;
  display: block;
  margin-bottom: 8px;
}
