:root {
  --bg: #0F172A;
  --surface: #1E293B;
  --text: #E5E7EB;
  --muted: #94A3B8;
  --primary: #64748B;
  --secondary: #38BDF8;
  --accent: #22C55E;
  --border: rgba(229, 231, 235, 0.12);
  --shadow: rgba(0, 0, 0, 0.55);
  --mono: "Courier New", Courier, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

main {
  flex: 1 0 auto;
}

body.no-scroll {
  overflow: hidden;
}

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

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

h1,
h2,
h3 {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
  margin: 0 0 16px;
  text-shadow: 3px 3px 0 var(--shadow);
}

h1 {
  font-size: 2.3rem;
}

h2 {
  font-size: 1.7rem;
  color: var(--text);
}

h3 {
  font-size: 1.15rem;
  letter-spacing: 1px;
}

p {
  margin: 0 0 14px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.disclosure-banner {
  width: 100%;
  background: var(--surface);
  color: var(--muted);
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  padding: 8px 16px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.nav-logo img {
  height: 34px;
  width: auto;
  image-rendering: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  position: relative;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 1px;
  color: var(--text);
  padding: 4px 0;
  overflow: hidden;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 8px;
}

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

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

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

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

.hero {
  position: relative;
  background: var(--bg);
}

.hero-diagonal {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.hero-left {
  position: relative;
  z-index: 2;
  background: var(--primary);
  clip-path: polygon(0 0, 62% 0, 38% 100%, 0 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-left-inner {
  max-width: 540px;
  padding: 48px 24px 48px max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.hero-left h1 {
  font-size: 2.7rem;
  color: #fff;
  text-shadow: 5px 5px 0 var(--shadow);
}

.hero-left p {
  color: #f1f5f9;
  font-size: 1.05rem;
  max-width: 420px;
}

.hero-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 16% 100%);
  z-index: 1;
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.15));
  pointer-events: none;
}

.scanlines {
  position: relative;
}

.scanlines::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0px,
    rgba(0, 0, 0, 0.18) 1px,
    transparent 2px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 3;
}

.hero-strip {
  background: var(--surface);
  border-top: 4px solid var(--accent);
  border-bottom: 1px solid var(--border);
}

.hero-strip p {
  margin: 0;
  padding: 14px 0;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-align: center;
}

.section {
  padding: 56px 0;
}

.section-head {
  margin-bottom: 28px;
}

.section-head .kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.pixel-box {
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: 6px 6px 0 var(--shadow);
}

.offers {
  background-color: #131f38;
  background-image: linear-gradient(135deg, rgba(56, 189, 248, 0.06) 0 25%, transparent 25% 50%, rgba(34, 197, 94, 0.06) 50% 75%, transparent 75% 100%);
  background-size: 48px 48px;
  border-top: 4px solid var(--secondary);
  border-bottom: 4px solid var(--secondary);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: #11203c;
  border: 2px solid #2b3d5c;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
  padding: 22px;
}

.offer-logo {
  width: 260px;
  height: 130px;
  max-width: 100%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border: 2px solid #0b1426;
}

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

.offer-name {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: #fff;
}

.offer-bonus {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 4px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.offer-terms {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px;
}

.offer-desc {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0 0 18px;
}

.offer-cta {
  margin-top: auto;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #06210f;
  background: var(--accent);
  border: none;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  padding: 12px 16px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.offer-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
}

.offer-cta:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.btn-line {
  display: inline-block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg);
  background: var(--secondary);
  border: none;
  box-shadow: 4px 4px 0 var(--shadow);
  padding: 12px 20px;
  cursor: pointer;
}

.info-split {
  display: grid;
  grid-template-columns: minmax(0, 460px) 1fr;
  gap: 36px;
  align-items: center;
}

.info-split.reverse {
  grid-template-columns: 1fr minmax(0, 460px);
}

.info-split.reverse .info-media {
  order: 2;
}

.media-frame {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border: 3px solid var(--border);
  box-shadow: 8px 8px 0 var(--shadow);
  background: var(--surface);
}

.media-frame img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
}

.glitch {
  position: relative;
}

.glitch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  mix-blend-mode: screen;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.12), rgba(34, 197, 94, 0.12));
  transform: translateX(3px);
  pointer-events: none;
}

.info-center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.info-center h2 {
  font-size: 2rem;
}

.info-band {
  position: relative;
  border: 3px solid var(--border);
  box-shadow: 10px 10px 0 var(--shadow);
  overflow: hidden;
}

.info-band-bg {
  background-size: cover;
  background-position: center;
  min-height: 260px;
}

.info-band-bg.bg-3 {
  background-image: url("/images/decorative/decor_3.webp");
}

.info-band-bg.bg-5 {
  background-image: url("/images/decorative/decor_5.jpg");
}

.info-band-overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.78) 55%, rgba(15, 23, 42, 0.35) 100%);
  padding: 40px 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-band-overlay .inner {
  max-width: 560px;
}

.info-columns {
  border-left: 6px solid var(--accent);
  padding-left: 28px;
}

.info-columns .cols {
  columns: 2;
  column-gap: 36px;
}

.info-columns .cols p {
  break-inside: avoid;
}

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

.stat-box {
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: 5px 5px 0 var(--shadow);
  padding: 20px;
  text-align: center;
}

.stat-box .num {
  font-family: var(--mono);
  font-size: 2rem;
  color: var(--secondary);
  text-shadow: 3px 3px 0 var(--shadow);
}

.stat-box .lbl {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.layered {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--secondary);
  padding: 32px;
}

.layered::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  background: rgba(56, 189, 248, 0.08);
  border: 2px solid var(--border);
  z-index: -1;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.chip {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: 3px 3px 0 var(--shadow);
  padding: 8px 14px;
}

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

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 18px 56px;
  color: var(--muted);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: #06210f;
  font-family: var(--mono);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--shadow);
}

.steps li strong {
  color: var(--text);
  display: block;
}

.pixel-divider {
  height: 8px;
  width: 180px;
  margin: 18px auto;
  background: repeating-linear-gradient(90deg, var(--accent) 0 12px, transparent 12px 24px);
}

.footer {
  background: var(--surface);
  border-top: 4px solid var(--primary);
  padding: 44px 0 24px;
  margin-top: 24px;
}

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

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

.footer-col h3 {
  font-size: 0.95rem;
  color: var(--secondary);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--text);
}

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

.footer-badges img {
  height: 34px;
  width: auto;
  opacity: 0.85;
}

.footer-bottom {
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

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

.overlay.active {
  display: flex;
}

.modal {
  max-width: 460px;
  width: 100%;
  background: var(--surface);
  border: 3px solid var(--secondary);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.6);
  padding: 32px;
  text-align: center;
}

.modal h2 {
  color: var(--secondary);
}

.modal p {
  color: var(--muted);
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #06210f;
  background: var(--accent);
  border: none;
  box-shadow: 4px 4px 0 var(--shadow);
  padding: 12px 22px;
  cursor: pointer;
}

.btn-ghost {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: 2px solid var(--border);
  padding: 12px 22px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  background: var(--surface);
  border: 2px solid var(--accent);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.6);
  padding: 18px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
}

.cookie-banner.active {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  flex: 1 1 360px;
}

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

.legal {
  padding: 48px 0 24px;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h1 {
  color: var(--secondary);
  font-size: 2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  color: var(--text);
  margin-top: 32px;
  border-left: 5px solid var(--accent);
  padding-left: 14px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: var(--secondary);
}

.contact-form {
  max-width: 620px;
  margin: 28px auto 0;
  background: var(--surface);
  border: 2px solid var(--border);
  box-shadow: 8px 8px 0 var(--shadow);
  padding: 28px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 8px;
}

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

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

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

.field-error {
  display: none;
  color: #fda4af;
  font-size: 0.82rem;
  margin-top: 6px;
}

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

.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.12);
  border: 2px solid var(--accent);
  color: var(--text);
  padding: 24px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--shadow);
}

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

.redirect-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.redirect-card {
  max-width: 520px;
  width: 100%;
  text-align: center;
  background: var(--surface);
  border: 3px solid var(--secondary);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.6);
  padding: 40px 28px;
}

.spinner {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border: 6px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

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

.ad-tag {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--bg);
  background: var(--secondary);
  padding: 2px 8px;
  margin-bottom: 14px;
}

.fineprint {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 16px;
}

.notfound {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.notfound .code {
  font-family: var(--mono);
  font-size: 6rem;
  color: var(--secondary);
  text-shadow: 6px 6px 0 var(--shadow);
  margin: 0;
}

@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
  .offer-logo {
    width: 240px;
    height: 120px;
    max-width: 100%;
  }
  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
  .media-frame,
  .media-frame img {
    max-width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .info-split,
  .info-split.reverse {
    grid-template-columns: 1fr;
  }
  .info-split.reverse .info-media {
    order: 0;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .info-columns .cols {
    columns: 1;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 78%;
    max-width: 300px;
    background: var(--surface);
    border-right: 3px solid var(--accent);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 0 24px;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    z-index: 70;
    overflow-y: auto;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-menu .nav-link {
    width: 100%;
    padding: 14px 24px;
    border-left: 4px solid var(--accent);
  }
  .nav-menu .nav-link::after {
    display: none;
  }
  .hero-left {
    clip-path: none;
    min-height: auto;
  }
  .hero-right {
    display: none;
  }
  .hero-diagonal {
    min-height: auto;
  }
  .hero-left-inner {
    padding: 40px 24px;
    max-width: 100%;
  }
  .hero-left h1 {
    font-size: 2rem;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 1.8rem;
  }
  .notfound .code {
    font-size: 4rem;
  }
}
