:root {
  --bg: #FFF7ED;
  --surface: #FFFFFF;
  --text: #1F2937;
  --muted: #6B7280;
  --primary: #EA580C;
  --secondary: #0EA5E9;
  --accent: #8B5CF6;
  --border: rgba(31, 41, 55, 0.12);
  --font-display: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --theme-arcade: arcade;
  --theme-neon: neon;
  --theme-80s: 80s;
  --theme-gaming: gaming;
  --theme-vibrant: vibrant;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  background-image:
    linear-gradient(135deg, rgba(234, 88, 12, 0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(14, 165, 233, 0.05) 0%, transparent 45%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(139, 92, 246, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(234, 88, 12, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

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

a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

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

.disclosure-banner {
  position: relative;
  z-index: 100;
  max-width: 800px;
  margin: 10px auto;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--muted);
  text-align: center;
}

.disclosure-banner p {
  font-size: 11px;
  color: var(--text);
  line-height: 1.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #0a0a0a;
  height: 58px;
  border-bottom: 1px solid rgba(234, 88, 12, 0.4);
  box-shadow: 0 1px 6px var(--primary);
}

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

.site-logo img {
  height: 32px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: #e5e7eb;
  text-decoration: none;
  padding: 4px 6px;
  transition: color 0.2s, text-shadow 0.2s;
}

.site-nav__link:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

.burger-btn {
  display: none;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 8px 14px;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0a0a0a;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

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

.mobile-nav__close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 8px 16px;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.4);
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

.mobile-nav__link:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

.site-footer {
  flex-shrink: 0;
  margin-top: auto;
  background: #0a0a0a;
  color: #e5e7eb;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(234, 88, 12, 0.3);
  box-shadow: 0 -1px 6px rgba(234, 88, 12, 0.2);
  position: relative;
  z-index: 1;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    rgba(14, 165, 233, 0.03) 8px,
    rgba(14, 165, 233, 0.03) 16px
  );
  pointer-events: none;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 32px;
}

.site-footer__brand img {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
}

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

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.site-footer__links a {
  font-size: 13px;
  color: #d1d5db;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary);
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__badges a {
  display: block;
}

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

.site-footer__copy {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

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

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

.age-gate__panel {
  background: var(--surface);
  border: 2px solid var(--accent);
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--primary), 0 0 20px rgba(139, 92, 246, 0.4);
}

.age-gate__panel h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 16px;
  color: var(--text);
}

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

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

.age-gate__btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  padding: 12px 24px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.age-gate__btn--confirm {
  background: var(--primary);
  color: #fff;
  box-shadow: 4px 4px 0 var(--accent);
}

.age-gate__btn--confirm:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--accent);
}

.age-gate__btn--decline {
  background: transparent;
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 2px solid var(--secondary);
  box-shadow: 0 -4px 20px rgba(14, 165, 233, 0.2);
  padding: 20px 24px;
}

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

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

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

.cookie-banner__btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  padding: 10px 20px;
  background: var(--secondary);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--accent);
}

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

.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text);
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  margin: 28px 0 12px;
  color: var(--text);
}

.legal-page h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 20px 0 8px;
}

.legal-page p {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--text);
}

.legal-page ul {
  margin: 0 0 16px 24px;
}

.legal-page li {
  font-size: 15px;
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--primary);
}

.contact-form {
  max-width: 560px;
  margin-top: 32px;
}

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

.contact-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.3);
}

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

.contact-form__error {
  display: none;
  font-size: 13px;
  color: #dc2626;
  margin-top: 6px;
}

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

.contact-form__submit {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--accent);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--secondary);
  transition: transform 0.15s;
}

.contact-form__submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--secondary);
}

.form-success {
  display: none;
  padding: 24px;
  background: rgba(14, 165, 233, 0.08);
  border: 2px solid var(--secondary);
  margin-top: 24px;
}

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

.form-success p {
  font-size: 15px;
  color: var(--text);
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
}

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

  .burger-btn {
    display: block;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}

.licence-hero-band {
  background: linear-gradient(90deg, rgba(234, 88, 12, 0.15), rgba(139, 92, 246, 0.15), rgba(14, 165, 233, 0.15));
  padding: 40px 24px;
  text-align: center;
  border-bottom: 8px solid var(--primary);
}

.licence-hero-band h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  font-style: italic;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
}

.licence-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 40px 0;
  border: 2px solid var(--text);
}

.licence-stat {
  text-align: center;
  padding: 28px 16px;
  background: #0a0a0a;
  color: #e5e7eb;
  border-right: 1px solid rgba(234, 88, 12, 0.3);
}

.licence-stat:last-child {
  border-right: none;
}

.licence-stat__val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  color: var(--secondary);
  text-shadow: 0 0 8px rgba(14, 165, 233, 0.5);
}

.licence-stat__label {
  font-size: 12px;
  margin-top: 6px;
  opacity: 0.85;
}

.licence-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 48px 0 64px;
}

.licence-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  margin: 28px 0 12px;
}

.licence-content h2:first-child {
  margin-top: 0;
}

.licence-content p {
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.licence-rail {
  position: sticky;
  top: 80px;
  align-self: start;
}

.licence-rail__img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 2px solid #ec4899;
  box-shadow: 0 0 12px rgba(236, 72, 153, 0.5);
  margin-bottom: 20px;
}

.licence-rail__card {
  background: var(--surface);
  border: 2px solid var(--accent);
  padding: 20px;
  box-shadow: 5px 5px 0 var(--primary);
}

.licence-rail__card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 10px;
}

.licence-rail__card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}

.licence-rail__img--spaced {
  margin-top: 20px;
}

.licence-checklist {
  list-style: none;
  margin: 20px 0;
}

.licence-checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px dotted var(--border);
}

.licence-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

@media (max-width: 900px) {
  .licence-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .licence-stat:nth-child(2) {
    border-right: none;
  }

  .licence-split {
    grid-template-columns: 1fr;
  }

  .licence-rail {
    position: static;
  }
}

@media (max-width: 500px) {
  .licence-stats {
    grid-template-columns: 1fr;
  }

  .licence-stat {
    border-right: none;
    border-bottom: 1px solid rgba(234, 88, 12, 0.3);
  }
}

@media (max-width: 600px) {
  .licence-rail__img {
    width: 100%;
    max-width: 100%;
    max-height: 220px;
    object-fit: cover;
  }
}
