:root {
  --bg: #2E1065;
  --surface: #4C1D95;
  --text: #F5F3FF;
  --muted: #C4B5FD;
  --primary: #F472B6;
  --secondary: #5B21B6;
  --accent: #EC4899;
  --border: rgba(255, 255, 255, 0.12);
  --nav-bg: rgba(15, 15, 25, 0.75);
  --grain-opacity: 0.06;
}

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

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

body {
  font-family: "Courier New", Courier, "Lucida Console", Monaco, monospace;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(91, 33, 182, 0.4) 0%, transparent 55%),
    linear-gradient(165deg, #1a0533 0%, var(--bg) 40%, #1e0a42 100%);
  color: var(--text);
  line-height: 1.65;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

h1, h2, h3, h4 {
  font-family: Impact, "Arial Black", "Franklin Gothic Medium", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

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

a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

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

.disclosure-banner {
  width: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, #3b0764 100%);
  color: var(--text);
  font-size: 11px;
  text-align: center;
  padding: 10px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  position: relative;
  z-index: 10;
  letter-spacing: 0.03em;
}

.trust-banner {
  width: 100%;
  background: rgba(15, 15, 25, 0.9);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  padding: 8px 16px 14px;
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.nav-links a:hover {
  text-shadow: 0 0 8px var(--accent);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 4px;
  position: relative;
  z-index: 1001;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  background: rgba(15, 15, 25, 0.85);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scanline 4s linear infinite;
}

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

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

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

.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-company {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
}

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

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

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

.footer-orgs a {
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-orgs a:hover {
  opacity: 1;
}

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

.footer-disclosure {
  font-size: 11px;
  color: rgba(196, 181, 253, 0.7);
  line-height: 1.7;
  max-width: 900px;
}

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

.modal-overlay[hidden] {
  display: none;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.2);
  position: relative;
}

.modal-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.modal-box h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--primary);
}

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

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: box-shadow 0.25s, transform 0.15s;
}

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

.btn-primary:hover {
  box-shadow: 0 0 16px var(--accent);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 25, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
  max-width: 700px;
}

.page-hero-strip {
  background: var(--surface);
  padding: 48px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: cyberpunk-glitch-scan 3s ease-in-out infinite;
}

@keyframes cyberpunk-glitch-scan {
  0%, 100% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(25%); opacity: 1; }
}

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

.page-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 24px;
  color: var(--text);
}

.page-content h2 {
  font-size: 1.3rem;
  margin: 32px 0 16px;
  color: var(--primary);
}

.page-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 12px;
  color: var(--muted);
}

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

.page-content ul {
  margin: 0 0 16px 24px;
  color: var(--muted);
}

.page-content li {
  margin-bottom: 8px;
}

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(15, 15, 25, 0.6);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(236, 72, 153, 0.3);
}

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

.form-error {
  color: #f87171;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

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

.form-success {
  background: rgba(91, 33, 182, 0.4);
  border: 1px solid var(--accent);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
}

.form-success h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

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

  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 1.4rem;
  }
}

.hero {
  background: var(--bg);
  padding: 64px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(236, 72, 153, 0.03) 2px,
      rgba(236, 72, 153, 0.03) 4px
    );
  pointer-events: none;
  animation: detective-scan 8s linear infinite;
}

@keyframes detective-scan {
  0% { transform: translateY(0); }
  100% { transform: translateY(40px); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 700px;
  margin-left: -8px;
  padding-left: 48px;
  color: var(--text);
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.hero-sub {
  max-width: 560px;
  margin-top: 24px;
  margin-left: 120px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

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

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 16, 101, 0.92) 0%, rgba(30, 10, 66, 0.88) 100%);
}

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

.offers-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 48px;
  color: var(--text);
}

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

.offer-card {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.offer-card-logo {
  background: #0f0f19;
  width: 160px;
  height: 64px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.offer-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.offer-card-bonus {
  font-size: 15px;
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.offer-card-terms {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  margin-top: 4px;
}

.offer-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 10px 0 16px;
  flex: 1;
}

.offer-card-cta {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offer-card-cta:hover {
  box-shadow: 0 0 16px rgba(225, 29, 72, 0.5);
}

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

.info-section:nth-child(even) {
  background: rgba(76, 29, 149, 0.25);
}

.info-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 28px;
  color: var(--primary);
}

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

.info-cta-link {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: background 0.25s, box-shadow 0.25s;
}

.info-cta-link:hover {
  background: rgba(236, 72, 153, 0.15);
  box-shadow: 0 0 12px rgba(236, 72, 153, 0.4);
}

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

.info-1-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}

.info-1-visual img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.9);
}

.info-1-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(236, 72, 153, 0.2) 100%);
  pointer-events: none;
}

.info-2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.info-2-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
}

.info-2-card h3 {
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.info-2-card p {
  font-size: 13px;
  margin: 0;
}

.info-3-steps {
  display: flex;
  gap: 0;
  margin-top: 28px;
  position: relative;
}

.info-3-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}

.info-3-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.info-3-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 12px var(--accent);
}

.info-3-step h3 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text);
}

.info-3-step p {
  font-size: 13px;
  margin: 0;
}

.info-4-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.info-4-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.info-4-table th {
  background: var(--secondary);
  color: var(--text);
  padding: 14px 16px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
}

.info-4-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.info-4-table tr:nth-child(even) td {
  background: rgba(15, 15, 25, 0.3);
}

.info-5-columns {
  columns: 2;
  column-gap: 32px;
  margin-top: 20px;
}

.info-5-block {
  break-inside: avoid;
  background: rgba(15, 15, 25, 0.4);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 0 6px 6px 0;
}

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

.info-5-block p {
  font-size: 13px;
  margin: 0;
}

.info-6-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.info-6-rail {
  background: linear-gradient(180deg, var(--secondary), var(--bg));
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.info-6-rail h3 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.info-6-rail ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-6-rail li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.info-7-mobile {
  display: flex;
  gap: 48px;
  align-items: center;
}

.info-7-device {
  flex-shrink: 0;
  width: 200px;
  padding: 16px;
  background: #0a0a12;
  border-radius: 24px;
  border: 3px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.info-7-screen {
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.info-7-screen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  animation: cyberpunk-glitch-scan 2s ease-in-out infinite;
}

.info-7-screen img {
  max-width: 100%;
  max-height: 200px;
  margin: 0 auto;
  border-radius: 6px;
}

.info-8-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.info-8-block {
  background: var(--surface);
  padding: 24px 16px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.25s;
}

.info-8-block:hover {
  border-color: var(--accent);
}

.info-8-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.info-8-block h3 {
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 8px;
}

.info-8-block p {
  font-size: 12px;
  margin: 0;
}

.info-9-steps-list {
  counter-reset: step;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.info-9-steps-list li {
  counter-increment: step;
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.info-9-steps-list li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.info-9-steps-list h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.info-9-steps-list p {
  font-size: 14px;
  margin: 0;
}

.info-10-highlight {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(91, 33, 182, 0.3) 100%);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 36px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.info-10-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.info-10-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.info-10-item {
  padding: 16px;
  background: rgba(15, 15, 25, 0.5);
  border-radius: 6px;
}

.info-10-item h3 {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.info-10-item p {
  font-size: 13px;
  margin: 0;
}

.info-10-visual {
  margin-top: 28px;
  max-width: 100%;
  overflow: hidden;
}

.info-10-visual img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.cyber-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
}

.mystery-glow {
  box-shadow: inset 0 0 60px rgba(236, 72, 153, 0.08);
}

.gloomy-overlay {
  filter: brightness(0.95) contrast(1.05);
}

.cinematic-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .hero h1 {
    margin-left: 0;
    padding-left: 24px;
    text-align: center;
  }

  .hero h1::after {
    display: none;
  }

  .hero-sub {
    margin-left: 0;
    text-align: center;
    padding: 0 16px;
  }

  .info-1-layout,
  .info-6-sidebar,
  .info-7-mobile {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-2-cards {
    grid-template-columns: 1fr;
  }

  .info-3-steps {
    flex-direction: column;
    gap: 24px;
  }

  .info-3-steps::before {
    display: none;
  }

  .info-5-columns {
    columns: 1;
  }

  .info-8-blocks {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-10-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .info-8-blocks {
    grid-template-columns: 1fr;
  }

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

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

  .offer-card-bonus {
    font-size: 14px;
  }

  .info-1-visual img,
  .info-10-visual img {
    max-height: 220px;
  }

  .info-7-device {
    max-width: 100%;
  }

  .info-7-screen {
    max-width: 100%;
  }

  .info-7-screen img {
    max-width: 100%;
    max-height: 180px;
    height: auto;
  }
}
