:root {
  --bg: #064E3B;
  --surface: #065F46;
  --text: #ECFDF5;
  --muted: #A7F3D0;
  --primary: #F59E0B;
  --secondary: #10B981;
  --accent: #FCD34D;
  --border: rgba(255,255,255,0.15);
  --font-cond: "Arial Narrow", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Arial Narrow", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, rgba(6,78,59,0.9) 0%, var(--bg) 40%, rgba(6,78,59,0.75) 100%) fixed;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  top: -20%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(16,185,129,0.14) 0%, rgba(16,185,129,0) 65%);
  pointer-events: none;
  z-index: 0;
}

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

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

a { color: var(--accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--text); }

h1, h2, h3, h4 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 800;
  line-height: 1.15;
}

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

.disclaimer-bar {
  position: relative;
  background: var(--text);
  color: var(--bg);
  font-size: 12px;
  text-align: center;
  padding: 8px 16px 14px;
  z-index: 60;
  margin-bottom: -14px;
}

.disclaimer-bar p { position: relative; z-index: 2; }

.disclaimer-bar .wave-edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  width: 100%;
  height: 14px;
  display: block;
  z-index: 2;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  padding-bottom: 26px;
}

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

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

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

.brand .brand-name {
  font-family: var(--font-cond);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 19px;
  color: var(--text);
  letter-spacing: 0.03em;
}

.brand .brand-name em {
  font-style: normal;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 2px;
  background: linear-gradient(var(--primary), var(--primary)) left bottom / 0% 2px no-repeat;
  transition: background-size 0.25s ease, color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
  background-size: 100% 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease;
}

.nav-toggle:hover { border-color: var(--primary); }

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--accent);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle::before { top: 13px; }
.nav-toggle span { top: 21px; }
.nav-toggle::after { top: 29px; }

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(16,185,129,0.12) 0%, rgba(6,78,59,0) 55%);
  pointer-events: none;
}

.hero .hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 18px;
}

.hero .hero-frame {
  border: 4px solid var(--accent);
  padding: 8px;
  max-width: 300px;
  margin: 26px auto;
  background: var(--surface);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.hero .hero-frame img {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 4px;
}

.hero .hero-sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.hero .hero-note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-note a { color: var(--accent); text-decoration: underline; }

.live-ticker {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.stream-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border-right: 1px solid var(--border);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 1.2s ease infinite;
}

.ticker-clip {
  flex: 1;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 48px;
  padding: 10px 0;
  width: max-content;
  animation: ticker 36s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.offers-section {
  position: relative;
  padding: 64px 0;
  background-image: linear-gradient(180deg, rgba(5,61,46,0.93) 0%, rgba(6,78,59,0.88) 100%), url(/images/offers_bg/offers_bg.webp);
  background-size: cover;
  background-position: center;
}

.offers-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(245,158,11,0) 60%);
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head .kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(24px, 3.4vw, 36px);
}

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

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 22px 50px rgba(0,0,0,0.4);
}

.offer-logo {
  width: 220px;
  height: 120px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.offer-card h3 {
  font-size: 22px;
  text-align: center;
}

.offer-bonus {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

.offer-terms {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: -8px;
}

.offer-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.offer-cta {
  display: block;
  text-align: center;
  margin-top: auto;
  background: var(--primary);
  color: var(--bg);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.offer-cta:hover {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.03);
}

.info-section {
  position: relative;
  padding: 64px 0;
}

.info-section .container { position: relative; z-index: 1; }

.info-section h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 20px;
}

.info-section h2 .num {
  color: var(--primary);
  margin-right: 10px;
}

.info-section p { color: var(--text); max-width: 860px; }

.info-section .kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
}

.info-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.info-split .panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
}

.info-split .panel h3 {
  font-size: 17px;
  color: var(--accent);
  margin-bottom: 12px;
}

.info-split .panel ul {
  list-style: none;
}

.info-split .panel li {
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.info-split .panel li:last-child { border-bottom: none; }

.info-split .panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 3px;
  background: var(--primary);
}

.comp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.comp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.comp-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
}

.comp-card h3 {
  font-size: 19px;
  color: var(--accent);
  margin-bottom: 8px;
}

.comp-card p { font-size: 14px; color: var(--muted); }

.band-img {
  position: relative;
  padding: 56px 0;
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.band-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,78,59,0.9) 0%, rgba(6,78,59,0.86) 100%);
}

.band-img .container { position: relative; z-index: 1; }

.band-img h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 20px;
}

.band-img p { color: var(--text); max-width: 860px; }

.band-img .kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
}

.duo-imgs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.duo-imgs .img-frame {
  border: 3px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  max-width: 260px;
}

.duo-imgs .img-frame img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.callout-panel {
  background: linear-gradient(120deg, rgba(245,158,11,0.12) 0%, rgba(6,95,70,0.9) 55%);
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  border-radius: 12px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.callout-panel ul { list-style: none; }

.callout-panel li {
  padding: 8px 0 8px 24px;
  position: relative;
}

.callout-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
}

.callout-panel .helpline {
  margin-top: 12px;
  font-size: 14px;
  color: var(--accent);
}

.compare-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.compare-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.compare-col h3 {
  font-size: 20px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.compare-col ul { list-style: none; }

.compare-col li { padding: 7px 0 7px 20px; position: relative; }

.compare-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 3px;
  background: var(--secondary);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.step-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 18px;
  position: relative;
  transition: transform 0.25s ease;
}

.step-box:hover { transform: translateY(-5px); }

.step-box .step-num {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
}

.step-box h3 { font-size: 17px; margin-bottom: 8px; }

.step-box p { font-size: 14px; color: var(--muted); }

.band {
  background: linear-gradient(100deg, var(--surface) 0%, rgba(6,95,70,0.6) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.band .info-section { padding: 56px 0; }

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

.chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.esports-chip { border-color: var(--secondary); }

.split-media {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.split-media .media-frame {
  border: 3px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

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

.quote-block {
  border-left: 5px solid var(--primary);
  padding: 18px 26px;
  margin: 22px 0;
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  font-size: 20px;
  font-family: var(--font-cond);
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  max-width: 760px;
}

.versus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
}

.versus-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
}

.versus-col h3 {
  font-size: 21px;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
}

.versus-col ul { list-style: none; }

.versus-col li {
  padding: 9px 0 9px 22px;
  position: relative;
}

.versus-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--primary);
}

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

.check-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.check-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.check-card .tick {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16,185,129,0.2);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-weight: 800;
  text-align: center;
  line-height: 26px;
}

.check-card h3 { font-size: 16px; margin-bottom: 6px; }

.check-card p { font-size: 14px; color: var(--muted); }

.topic-cta {
  display: inline-block;
  margin-top: 26px;
  background: rgba(245,158,11,0.14);
  border: 1px solid var(--primary);
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.topic-cta:hover {
  background: var(--primary);
  color: var(--bg);
  transform: translateY(-2px);
}

.legal-page .legal-prose {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  margin: 40px 0;
}

.legal-page .legal-prose h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 18px;
}

.legal-page .legal-prose h2 {
  font-size: 22px;
  margin: 26px 0 10px;
  color: var(--accent);
}

.legal-page .legal-prose h3 {
  font-size: 17px;
  margin: 18px 0 8px;
  color: var(--muted);
}

.legal-page .legal-prose p { margin-bottom: 12px; }

.legal-page .legal-prose ul {
  margin: 0 0 14px 22px;
}

.legal-page .legal-prose li { margin-bottom: 6px; }

.legal-page .legal-prose code {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.9em;
}

.page-hero-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 46px 24px;
}

.page-hero-strip .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-hero-strip h1 {
  font-size: clamp(28px, 4.5vw, 44px);
}

.page-hero-strip p {
  color: var(--muted);
  max-width: 720px;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 44px 24px 30px;
  margin-top: 40px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

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

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

.footer-col h4 {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 14px;
}

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

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

.footer-col a {
  color: var(--text);
  font-size: 14px;
}

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

.footer-help-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
}

.help-logo-box {
  background: var(--text);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.help-logo-box:hover { transform: translateY(-3px); }

.help-logo-box img {
  display: block;
  object-fit: contain;
  object-position: center;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom .footer-note { max-width: 940px; }

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

.footer-advertorial {
  font-size: 11px;
  color: rgba(167,243,208,0.75);
  max-width: 980px;
  margin-top: 6px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(2,24,17,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate .age-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 14px;
  padding: 36px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.age-gate .age-badge {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}

.age-gate h2 { font-size: 24px; margin-bottom: 12px; }

.age-gate p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}

.age-gate .age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
  border: none;
  border-radius: 8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

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

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

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

.btn-ghost:hover { border-color: var(--primary); color: var(--accent); }

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: 12px;
  padding: 20px 22px;
  display: none;
  align-items: center;
  gap: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  flex-wrap: wrap;
}

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

.cookie-banner p {
  font-size: 13px;
  color: var(--text);
  flex: 1 1 320px;
}

.cookie-banner p a { color: var(--accent); text-decoration: underline; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  max-width: 560px;
  margin-top: 26px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 14px 0 6px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-error {
  color: var(--primary);
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

.contact-form .btn-primary { margin-top: 18px; width: 100%; }

.form-success {
  background: rgba(16,185,129,0.14);
  border: 1px solid var(--secondary);
  border-radius: 12px;
  padding: 30px;
  max-width: 560px;
  margin-top: 26px;
  display: none;
  text-align: center;
}

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

.notfound-wrap {
  padding: 80px 24px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.notfound-wrap .nf-code {
  font-size: clamp(70px, 12vw, 120px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.notfound-wrap h1 { font-size: 30px; margin: 18px 0 14px; }

.notfound-wrap p { color: var(--muted); margin-bottom: 26px; }

@media (max-width: 900px) {
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-cols { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .checklist-cards { grid-template-columns: repeat(2, 1fr); }
  .info-split,
  .split-media { grid-template-columns: 1fr; }
  .callout-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-nav { clip-path: none; padding-bottom: 0; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6,78,59,0.98);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    z-index: 70;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; }
  .nav-toggle { display: block; position: relative; z-index: 80; }
  .hero { padding: 24px; }
  .hero .hero-frame { max-width: 200px; }
  .info-section { padding: 44px 0; }
  .comp-grid,
  .versus-grid { grid-template-columns: 1fr; }
  .legal-page .legal-prose { padding: 24px 18px; }
}

@media (max-width: 600px) {
  .offers-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .checklist-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .offer-logo { width: 180px; height: 96px; }
  .split-media .media-frame img { max-height: 240px; }
  .duo-imgs .img-frame { max-width: 100%; }
}


.offers-note {
  margin-top: 26px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.split-mini {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 26px;
}

.split-mini .mini-frame {
  border: 3px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.split-mini .mini-frame img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.split-mini .mini-text {
  color: var(--muted);
  font-size: 15px;
}

.market-table {
  margin-top: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.market-table .mt-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
}

.market-table .mt-row:last-child { border-bottom: none; }

.market-table .mt-name {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--accent);
  flex: 0 0 auto;
}

.market-table .mt-desc {
  font-size: 14px;
  color: var(--muted);
  text-align: right;
}

@media (max-width: 700px) {
  .split-mini { grid-template-columns: 1fr; }
  .market-table .mt-row { flex-direction: column; gap: 4px; }
  .market-table .mt-desc { text-align: left; }
}

.gaming-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--primary);
  border-radius: 4px;
}

.energy-line {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 18px;
  border-radius: 2px;
}

.duo-imgs .duo-text {
  flex: 1;
  min-width: 240px;
  color: var(--muted);
  font-size: 15px;
}

.info-copy { max-width: 640px; }
.info-copy p { color: var(--muted); }
.info-copy h3 { color: var(--accent); margin-bottom: 8px; }

.cf-intro { font-size: 14px; color: var(--muted); }
