:root {
  --bg: #F4EBD9;
  --surface: #EFE1C5;
  --text: #2C241D;
  --muted: #6B5E4F;
  --primary: #8D5B3E;
  --secondary: #4A3728;
  --accent: #C0522B;
  --border: rgba(44,36,29,0.15);
  --font-mono: ui-monospace, "Cascadia Mono", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  --font-stencil: "Arial Black", "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  --nav-h: 56px;
  --offer-bg: #1a1a1a;
  --offer-border: #2a2a2a;
  --offer-bonus: #ffd700;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --ui-military: military;
  --ui-hud: hud;
  --ui-tactical: tactical;
  --ui-security: security;
  --ui-encryption: encryption;
  --night-vision: night-vision;
}

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

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

body {
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, var(--bg) 0%, rgba(141, 91, 62, 0.12) 42%, var(--bg) 78%),
    radial-gradient(ellipse 70% 45% at 8% 0%, rgba(192, 82, 43, 0.14) 0%, transparent 55%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "military hud tactical security encryption";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  font-size: 0;
  opacity: 0.45;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 28px,
      rgba(44, 36, 29, 0.04) 28px,
      rgba(44, 36, 29, 0.04) 29px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 42px,
      rgba(141, 91, 62, 0.04) 42px,
      rgba(141, 91, 62, 0.04) 43px
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath fill='none' stroke='%234A3728' stroke-opacity='0.08' stroke-width='1' d='M0 60 Q30 20 60 60 T120 60 M0 90 Q40 50 80 90 T160 90'/%3E%3C/svg%3E");
  background-size: auto, auto, 120px 120px;
}

body::after {
  content: "";
  position: fixed;
  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;
  pointer-events: none;
  z-index: 0;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(192, 82, 43, 0.07) 28deg, transparent 56deg);
  animation: radar-sweep 14s linear infinite;
  opacity: 0.55;
}

@keyframes radar-sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes military {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes tactical {
  0%,
  100% {
    filter: none;
  }
  50% {
    filter: brightness(1.03);
  }
}

@keyframes encryption-line {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes hud-pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

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

@keyframes underline-slide {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

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

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

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

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

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

.military {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-stencil);
}

.tactical {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hud {
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 1px rgba(141, 91, 62, 0.12);
}

.security {
  outline: 1px solid rgba(192, 82, 43, 0.35);
  outline-offset: 2px;
}

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

.encryption::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: encryption-line 3.5s ease-in-out infinite;
  pointer-events: none;
}

.night-vision {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(192, 82, 43, 0.45);
}

.topographic {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cpath fill='none' stroke='%236B5E4F' stroke-opacity='0.22' d='M10 80c20-40 40-40 60 0s40 40 60 0'/%3E%3C/svg%3E");
}

.disclosure-banner {
  width: 100%;
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
  padding: 8px 16px;
  border-top: 1px dotted var(--muted);
  border-bottom: 1px dotted var(--muted);
  position: relative;
  z-index: 50;
}

.disclosure-banner p {
  font-size: 12px;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--nav-h);
  background: var(--secondary);
  box-shadow: 0 1px 0 var(--primary), 0 0 8px var(--primary);
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bg);
  flex-shrink: 0;
}

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

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

.brand-name {
  font-family: var(--font-stencil);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
}

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

.nav-links a {
  position: relative;
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--surface);
}

.nav-links a:hover::after {
  width: 100%;
}

.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--bg);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px;
}

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

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

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

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

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 29, 0.92);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--secondary);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

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

.mobile-nav a {
  color: var(--bg);
  font-family: var(--font-stencil);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 48px 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: military 4s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-stencil);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
  line-height: 1.1;
}

.hero-sub {
  color: #ffffff;
  font-size: 1rem;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.offers-section {
  padding: 64px 24px;
  background-image:
    linear-gradient(180deg, rgba(44, 36, 29, 0.88), rgba(74, 55, 40, 0.92)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--primary);
}

.offers-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
  color: #ffffff;
}

.offers-intro h2 {
  font-family: var(--font-stencil);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

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

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

.offer-card {
  background: var(--offer-bg);
  border: 3px solid var(--offer-border);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: rise-in 0.7s ease-out both;
}

.offer-card:nth-child(2) {
  border-width: 5px;
  border-color: #3a3a3a;
}

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

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

.offer-name {
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  min-width: 0;
}

.offer-bonus {
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: clamp(0.85rem, 2.4vw, 1.05rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-terms {
  color: #94a3b8;
  font-size: 0.72rem;
}

.offer-desc {
  color: #94a3b8;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  border: none;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

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

.info-section {
  padding: 56px 24px;
  position: relative;
}

.info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 40% 50% at 100% 0%, rgba(141, 91, 62, 0.08), transparent 60%);
}

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

.info-section h2 {
  font-family: var(--font-stencil);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--text);
}

.info-section p {
  color: var(--text);
  margin-bottom: 12px;
}

.info-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.info-cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 18px;
  border: 2px solid var(--primary);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.info-cta:hover {
  background: var(--primary);
  color: var(--bg);
}

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

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

.window-frame {
  border: 2px solid var(--border);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(141, 91, 62, 0.1), 8px 8px 0 rgba(74, 55, 40, 0.08);
  padding: 16px;
}

.site-footer {
  background: var(--secondary);
  color: var(--surface);
  padding: 48px 24px 32px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-brand .brand-lockup {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(244, 235, 217, 0.82);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-content: flex-start;
}

.footer-nav a {
  color: var(--bg);
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
}

.footer-nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer-compliance {
  font-size: 0.85rem;
  color: rgba(244, 235, 217, 0.78);
  margin-bottom: 20px;
  line-height: 1.55;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px dotted rgba(244, 235, 217, 0.25);
  border-bottom: 1px dotted rgba(244, 235, 217, 0.25);
}

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

.footer-requisites,
.footer-updated,
.footer-note {
  font-size: 0.8rem;
  color: rgba(244, 235, 217, 0.7);
  margin-bottom: 8px;
}

.footer-note a {
  color: var(--bg);
}

.page-hero {
  padding: 40px 24px;
  background: var(--secondary);
  color: var(--bg);
  border-bottom: 3px solid var(--accent);
}

.page-hero h1 {
  font-family: var(--font-stencil);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 8px;
}

.page-hero p {
  color: rgba(244, 235, 217, 0.85);
  max-width: 640px;
}

.page-content {
  padding: 40px 24px 64px;
}

.page-content .section-wrap {
  max-width: 820px;
}

.page-content h2 {
  font-family: var(--font-stencil);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 28px 0 12px;
  color: var(--secondary);
}

.page-content h3 {
  font-size: 1rem;
  margin: 18px 0 8px;
  color: var(--primary);
}

.page-content p,
.page-content li {
  margin-bottom: 12px;
  color: var(--text);
}

.page-content ul {
  padding-left: 1.2rem;
  margin-bottom: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  max-width: 520px;
}

.contact-form label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

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

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

.contact-form button {
  align-self: flex-start;
  padding: 12px 22px;
  background: var(--primary);
  color: var(--bg);
  border: none;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--accent);
}

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

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

.form-success {
  display: none;
  padding: 20px;
  border: 2px solid var(--primary);
  background: var(--surface);
  margin-top: 16px;
}

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

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44, 36, 29, 0.82);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.modal-box {
  background: var(--bg);
  border: 3px solid var(--primary);
  padding: 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: tactical 3s ease-in-out infinite;
}

.modal-box h2 {
  font-family: var(--font-stencil);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

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

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

.btn {
  padding: 10px 16px;
  border: 2px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

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

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

#age-blocked {
  display: none;
  color: var(--accent);
}

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

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1800;
  background: var(--secondary);
  color: var(--bg);
  padding: 16px 24px;
  border-top: 2px solid var(--accent);
}

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

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1 1 280px;
  font-size: 0.88rem;
}

.cookie-inner a {
  color: var(--surface);
  text-decoration: underline;
}

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

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

.go-page h1 {
  font-family: var(--font-stencil);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.go-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  animation: radar-sweep 0.8s linear infinite;
}

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

#AD {
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  color: var(--accent);
}

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

.error-page h1 {
  font-family: var(--font-stencil);
  font-size: 3rem;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .nav-inner {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .nav-overlay,
  .mobile-nav {
    display: flex;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 250px;
    background-attachment: scroll;
    padding: 36px 20px;
  }

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

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

  .decor-clip,
  .img-band,
  .img-rail,
  .mosaic,
  .hero-strip {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-clip img,
  .img-band img,
  .img-rail img,
  .mosaic img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 240px;
  }
}

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

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

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

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

  .info-section,
  .page-content,
  .offers-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

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

.topic-rtp .topic-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
}

.topic-rtp .side-rail {
  position: sticky;
  top: 72px;
  background: var(--surface);
  border: 3px solid var(--accent);
  padding: 18px;
}

.topic-rtp .side-rail h2 {
  font-family: var(--font-stencil);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.topic-rtp .side-rail li {
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.topic-rtp .img-band {
  margin: 24px 0;
  max-width: 500px;
}

.topic-rtp .img-band img {
  height: 220px;
  object-fit: cover;
}

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

.topic-vivo .stat-band div {
  background: var(--surface);
  border: 2px solid var(--border);
  padding: 18px;
  text-align: center;
}

.topic-vivo .stat-band strong {
  display: block;
  font-family: var(--font-stencil);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.topic-vivo .pull-quote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--accent);
  background: rgba(141, 91, 62, 0.08);
  font-size: 1.05rem;
}

.topic-vivo .hero-strip {
  min-height: 180px;
  background:
    linear-gradient(120deg, rgba(44, 36, 29, 0.75), rgba(74, 55, 40, 0.55)),
    url("/images/decorative/decor_9.jpg");
  background-size: cover;
  background-position: center;
  border: 3px solid var(--primary);
  margin-bottom: 28px;
}

.topic-pagos .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 20px 0;
}

.topic-pagos .pay-card {
  background: var(--surface);
  border: 2px solid var(--border);
  padding: 18px;
}

.topic-pagos .img-rail {
  margin: 24px 0;
  max-width: 500px;
}

.topic-retiros .steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.topic-retiros .steps-grid article {
  border: 2px solid var(--border);
  background: var(--bg);
  padding: 16px;
}

.topic-retiros .mosaic {
  margin: 24px 0;
  border: 3px solid var(--secondary);
  overflow: hidden;
  max-width: 500px;
}

.topic-retiros .mosaic img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .topic-rtp .topic-layout,
  .topic-vivo .stat-band,
  .topic-pagos .split,
  .topic-retiros .steps-grid {
    grid-template-columns: 1fr;
  }

  .topic-rtp .side-rail {
    position: static;
  }

  .topic-rtp .img-band,
  .topic-pagos .img-rail,
  .topic-retiros .mosaic,
  .topic-vivo .hero-strip {
    max-width: 100%;
    overflow: hidden;
  }

  .topic-rtp .img-band img,
  .topic-pagos .img-rail img,
  .topic-retiros .mosaic img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
  }
}

@media (max-width: 375px) {
  .topic-rtp .img-band img,
  .topic-pagos .img-rail img,
  .topic-retiros .mosaic img {
    max-width: 100%;
    max-height: 160px;
  }

  .topic-vivo .hero-strip {
    min-height: 140px;
    max-width: 100%;
  }
}
