:root {
  --bg: #0B0B0B;
  --surface: #151515;
  --text: #FAFAFA;
  --muted: #A3A3A3;
  --primary: #DC2626;
  --secondary: #FACC15;
  --accent: #16A34A;
  --border: rgba(250, 250, 250, 0.12);
  --hud-green: #22c55e;
  --hud-amber: #f59e0b;
  --font-mono: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace;
  --tactical-overlay: rgba(22, 163, 74, 0.04);
  --hud-display-accent: var(--hud-green);
  --military-grid-line: rgba(22, 163, 74, 0.03);
  --security-panel-border: var(--border);
  --encryption-mask: transparent;
}

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

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

body {
  font-family: var(--font-mono);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-image:
    linear-gradient(135deg, rgba(22, 163, 74, 0.04) 0%, transparent 50%),
    linear-gradient(225deg, rgba(220, 38, 38, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 80%, rgba(22, 163, 74, 0.06) 0%, transparent 50%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, var(--military-grid-line) 39px, var(--military-grid-line) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, var(--military-grid-line) 39px, var(--military-grid-line) 40px);
  opacity: 0.5;
}

body::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200vmax;
  height: 200vmax;
  margin: -100vmax 0 0 -100vmax;
  pointer-events: none;
  z-index: 0;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(22, 163, 74, 0.04) 30deg, transparent 60deg);
  animation: radar-sweep 12s linear infinite;
}

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

.disclosure-banner {
  background: #0a0a0a;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}

.disclosure-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.disclosure-banner__icon {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--hud-amber);
}

.disclosure-banner__text {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
  text-align: left;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--surface);
  border-bottom: 1px solid rgba(250, 250, 250, 0.1);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__link {
  color: var(--text);
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 10px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.site-nav__link:hover {
  border-bottom-color: var(--hud-green);
  color: var(--hud-green);
}

.burger-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 11, 0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav__link {
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-nav__close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  cursor: pointer;
  font-family: var(--font-mono);
}

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

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

.section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--hud-green);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--text);
  border-left: 3px solid var(--primary);
  padding-left: 12px;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 32px;
}

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

.site-footer__brand img {
  height: 32px;
  margin-bottom: 12px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.site-footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: var(--hud-green);
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.site-footer__badges a,
.site-footer__badges span {
  display: block;
}

.site-footer__badges img {
  height: 40px;
  width: auto;
}

.site-footer__nz-disclosure {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.site-footer__nz-disclosure a {
  color: var(--hud-green);
}

.site-footer__copy {
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
}

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

.age-gate.is-hidden {
  display: none;
}

.age-gate__panel {
  background: var(--surface);
  border: 1px solid var(--hud-green);
  max-width: 440px;
  width: 100%;
  padding: 32px;
  position: relative;
}

.age-gate__panel::before {
  content: "SEC";
  position: absolute;
  top: -1px;
  right: 12px;
  font-size: 9px;
  background: var(--hud-green);
  color: var(--bg);
  padding: 2px 8px;
  letter-spacing: 0.15em;
}

.age-gate__title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: var(--hud-amber);
}

.age-gate__text {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.age-gate__actions {
  display: flex;
  gap: 12px;
}

.age-gate__btn {
  flex: 1;
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}

.age-gate__btn--confirm {
  border-color: var(--hud-green);
  color: var(--hud-green);
}

.age-gate__btn--confirm:hover {
  background: rgba(22, 163, 74, 0.15);
}

.age-gate__btn--decline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--hud-green);
  z-index: 9999;
  padding: 16px 24px;
}

.cookie-banner.is-hidden {
  display: none;
}

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

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

.cookie-banner__btn {
  padding: 10px 24px;
  background: var(--hud-green);
  color: var(--bg);
  border: none;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.05em;
}

.legal-content {
  padding: 48px 0 64px;
}

.legal-content h1 {
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 12px;
}

.legal-content h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 28px 0 12px;
  color: var(--hud-amber);
}

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

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

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

.contact-form {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(21, 21, 21, 0.8);
}

.contact-form__group {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hud-green);
  margin-bottom: 8px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 14px;
}

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

.contact-form__error {
  font-size: 12px;
  color: var(--primary);
  margin-top: 6px;
  display: none;
}

.contact-form__error.is-visible {
  display: block;
}

.contact-form__submit {
  padding: 12px 32px;
  background: transparent;
  border: 1px solid var(--hud-green);
  color: var(--hud-green);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.08em;
}

.contact-form__submit:hover {
  background: rgba(22, 163, 74, 0.12);
}

.contact-form__success {
  display: none;
  padding: 24px;
  border: 1px solid var(--hud-green);
  color: var(--hud-green);
  font-size: 14px;
}

.contact-form__success.is-visible {
  display: block;
}

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

  .burger-btn {
    display: block;
  }
}

.odds-hero {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(22, 163, 74, 0.08) 0%, transparent 60%);
}

.odds-hero__tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--hud-green);
  margin-bottom: 8px;
}

.odds-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 48px 0 64px;
}

.odds-sidebar {
  border: 1px solid var(--hud-green);
  padding: 20px;
  background: rgba(22, 163, 74, 0.04);
  position: sticky;
  top: 80px;
  align-self: start;
}

.odds-sidebar__title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--hud-amber);
  margin-bottom: 16px;
}

.odds-sidebar__img {
  width: 100%;
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.odds-sidebar__nav a {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.odds-sidebar__nav a:hover {
  color: var(--hud-green);
}

.odds-content h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hud-amber);
  margin: 32px 0 12px;
  border-left: 3px solid var(--primary);
  padding-left: 12px;
}

.odds-content p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.odds-rail-img {
  float: right;
  max-width: 280px;
  max-height: 200px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 0 16px 24px;
  border: 1px solid var(--border);
}

.odds-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
}

.odds-table th,
.odds-table td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}

.odds-table th {
  background: var(--surface);
  color: var(--hud-green);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.odds-table td {
  color: var(--muted);
}

@media (max-width: 768px) {
  .odds-layout {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .odds-sidebar {
    position: static;
    overflow: hidden;
  }

  .odds-sidebar__img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    object-position: center;
  }

  .odds-rail-img {
    float: none;
    max-width: 100%;
    max-height: 180px;
    margin: 0 0 16px;
    object-fit: contain;
    object-position: center;
  }
}
