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

:root {
  --bg: #050505;
  --surface: #0E0E0E;
  --text: #F4F4F5;
  --muted: #A1A1AA;
  --primary: #6366F1;
  --secondary: #22C55E;
  --accent: #F43F5E;
  --border: rgba(244, 244, 245, 0.12);
  --max-w: 1200px;
  --nav-h: 60px;
  --font-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", monospace;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-condensed: "Arial Narrow", "Helvetica Neue Condensed", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.04) 0%, transparent 40%),
    linear-gradient(rgba(244, 244, 245, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 244, 245, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  pointer-events: none;
}

main {
  flex: 1 0 auto;
}

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

.offer-card__logo {
  max-width: none;
  height: 100%;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

body.nav-open,
body.age-locked {
  overflow: hidden;
}

.disclosure-banner {
  width: 100%;
  background: #FAFAFA;
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.disclosure-text {
  max-width: var(--max-w);
  margin: 0 auto;
}

.disclosure-highlight {
  background: #FEF08A;
  color: #18181B;
  padding: 1px 5px;
  border-radius: 2px;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 16px;
}

.brand-link img {
  height: 36px;
  width: auto;
}

.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-desktop a {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s ease;
}

.nav-desktop a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

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

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

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

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

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

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

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 24px;
}

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

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.nav-drawer a {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-drawer a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

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

  .nav-burger {
    display: flex;
  }

  .nav-overlay {
    display: block;
  }
}

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

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

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--muted);
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

.footer-au-disclosure {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 900px;
}

.footer-bottom {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.is-hidden {
  display: none;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.15);
}

.modal__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}

.modal__text {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

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

.btn--primary:hover {
  background: #5558E3;
  transform: translateY(-1px);
}

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

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--primary);
  padding: 16px 24px;
  z-index: 8000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-banner.hidden {
  transform: translateY(100%);
}

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

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

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

.page-hero {
  padding: 48px 24px 32px;
  text-align: center;
  background: var(--surface);
  border-bottom: 8px solid var(--accent);
}

.page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 8px;
}

.page-hero p {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
}

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

.legal-content h2 {
  font-size: 1rem;
  margin: 28px 0 10px;
  color: var(--primary);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-content h3 {
  font-size: 0.9rem;
  margin: 20px 0 8px;
  color: var(--secondary);
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}

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

.contact-form {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.contact-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 6px;
}

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

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.form-error {
  font-size: 12px;
  color: var(--accent);
  margin-top: -12px;
  margin-bottom: 12px;
  display: none;
}

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

.form-success {
  padding: 24px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
}

.form-success.hidden,
.contact-form.hidden,
.hidden {
  display: none;
}

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

.go-ad {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.go-page h1 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

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

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

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

.go-compliance {
  font-size: 13px;
  color: var(--muted);
}

.go-compliance p {
  margin-bottom: 8px;
}

.go-age {
  font-weight: 700;
  color: var(--text);
}

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

.error-page h1 {
  font-family: var(--font-mono);
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 16px;
}

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

.hero {
  position: relative;
  padding: 40px 24px;
  text-align: center;
  background: var(--bg);
  border-bottom: 8px solid var(--accent);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
  opacity: 0.6;
}

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

.hero h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 24px;
}

.hero-radar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 24px auto 0;
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 50%;
}

.hero-radar::before {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px dashed rgba(34, 197, 94, 0.35);
  border-radius: 50%;
}

.hero-radar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  transform-origin: left center;
  animation: radar-sweep 3s linear infinite;
}

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

.hero-status {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.status-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-decor {
  margin-top: 28px;
  max-width: 500px;
  max-height: 200px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  height: 160px;
  border: 1px solid var(--border);
  border-radius: 8px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .hero {
    padding: 24px 16px;
  }
}

.offers-section {
  padding: 72px 24px;
  position: relative;
  background-image: url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.94) 0%,
    rgba(14, 14, 14, 0.9) 50%,
    rgba(5, 5, 5, 0.95) 100%
  );
}

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

.offers-header {
  text-align: center;
  margin-bottom: 40px;
}

.offers-header h2 {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--text);
  margin-bottom: 8px;
}

.offers-header p {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-mono);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-items: center;
}

.offer-card {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  width: 100%;
  max-width: 360px;
}

.offer-card__logo-wrap {
  background: #fff;
  width: 280px;
  height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.offer-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card__name {
  font-size: 1.15rem;
  color: #ffd700;
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-card__bonus-wrap {
  margin-bottom: 12px;
  flex: 1;
}

.offer-card__bonus {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-card__terms {
  display: block;
  font-size: 10px;
  color: #9ca3af;
  margin-top: 4px;
  font-style: italic;
}

.offer-card__desc {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 14px;
  line-height: 1.45;
}

.offer-cta {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  background: #ffd700;
  color: #1a1a2e;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.offer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {
  .offer-card__logo-wrap {
    width: 240px;
    height: 100px;
  }

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

@media (max-width: 375px) {
  .offers-section {
    padding: 48px 16px;
  }

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

  .decor-frame,
  .info-2__visual,
  .info-4__decor,
  .info-9__visual,
  .info-10__decor {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-frame img,
  .info-9__visual img,
  .info-10__decor img {
    max-width: 100%;
    max-height: 220px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .hero-decor {
    max-width: 100%;
    max-height: 140px;
    height: 140px;
  }

  .info-4__decor {
    float: none;
    margin: 16px 0;
    max-width: 100%;
  }
}

.info-section {
  padding: 64px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

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

.info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 16px;
  color: var(--text);
}

.info-section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.decor-frame {
  position: relative;
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
}

.decor-frame img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.decor-glow {
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

.info-1 {
  background: var(--surface);
}

.info-1__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.info-1__gauge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--secondary);
  border-right-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--secondary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .info-1__grid {
    grid-template-columns: 1fr;
  }

  .info-1__gauge {
    margin: 0 auto 16px;
  }
}

.info-2 {
  background: var(--bg);
}

.info-2__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-2__visual {
  position: relative;
}

.info-2__visual::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 768px) {
  .info-2__split {
    grid-template-columns: 1fr;
  }
}

.info-3 {
  background: var(--surface);
}

.info-3__columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.info-3__panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.info-3__panel li {
  color: var(--muted);
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.info-3__panel li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.info-3__panel ul {
  list-style: none;
  padding: 0;
}

@media (max-width: 768px) {
  .info-3__columns {
    grid-template-columns: 1fr;
  }
}

.info-4 {
  background: var(--bg);
}

.info-4__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  border-left: 2px solid var(--primary);
  padding-left: 24px;
}

.info-4__step {
  position: relative;
  padding-bottom: 20px;
}

.info-4__step::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--secondary);
}

.info-4__step strong {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-4__step p {
  font-size: 14px;
  margin-top: 4px;
}

.info-4__decor {
  float: right;
  margin: 0 0 16px 24px;
  max-width: 280px;
}

@media (max-width: 768px) {
  .info-4__decor {
    float: none;
    margin: 16px auto;
  }
}

.info-5 {
  background: var(--surface);
}

.info-5__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-5__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.info-5__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--primary);
}

.info-5__card p {
  font-size: 13px;
}

@media (max-width: 768px) {
  .info-5__cards {
    grid-template-columns: 1fr;
  }
}

.info-6 {
  background: var(--bg);
}

.info-6__band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-6__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.info-6__stat {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  text-align: center;
}

.info-6__stat-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--secondary);
  display: block;
}

.info-6__stat-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .info-6__band {
    grid-template-columns: 1fr;
  }
}

.info-7 {
  background: var(--surface);
}

.info-7__quote {
  border-left: 4px solid var(--accent);
  padding: 16px 0 16px 24px;
  margin: 20px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
}

.info-7__wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .info-7__wrap {
    grid-template-columns: 1fr;
  }
}

.info-8 {
  background: var(--bg);
}

.info-8__table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  font-size: 14px;
}

.info-8__table th,
.info-8__table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}

.info-8__table th {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--surface);
  color: var(--primary);
}

.info-8__table td {
  color: var(--muted);
}

.info-9 {
  background: var(--surface);
}

.info-9__stream {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.info-9__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
  background: var(--bg);
}

.info-9__tag span {
  color: var(--secondary);
  margin-right: 6px;
}

.info-9__visual {
  margin-top: 24px;
  max-width: 400px;
}

.info-10 {
  background: var(--bg);
}

.info-10__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-10__terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.info-10__line {
  color: var(--muted);
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

.info-10__line::before {
  content: ">";
  color: var(--secondary);
}

.info-10__line.active {
  color: var(--text);
}

.info-10__line.active::before {
  animation: blink 1s step-end infinite;
}

.info-10__decor {
  margin-top: 24px;
  max-width: 320px;
}

@media (max-width: 768px) {
  .info-10__layout {
    grid-template-columns: 1fr;
  }
}
