:root {
  --bg: #05070a;
  --bg-2: #070a0e;
  --bg-3: #0a0e13;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --border-green: rgba(0, 255, 170, 0.42);
  --text: #f4f7fb;
  --muted: #aeb9c5;
  --muted-2: #7f8a96;
  --green: #00ffaa;
  --green-2: #35ffc4;
  --blue: #00b7ff;
  --yellow: #ffd166;
  --danger: #ff4d6d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

code {
  color: var(--green);
  background: rgba(0, 255, 170, 0.08);
  border: 1px solid rgba(0, 255, 170, 0.18);
  padding: 2px 6px;
  border-radius: 7px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 10, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

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

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.95rem;
}

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

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(0, 255, 170, 0.1);
  border: 1px solid rgba(0, 255, 170, 0.45);
  color: var(--green);
  text-decoration: none;
  font-weight: 800;
}

.section-wrap,
.sponsor-wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 130px 20px 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 170, 0.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(0, 183, 255, 0.13), transparent 38%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  right: -180px;
  top: 80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 255, 170, 0.13), transparent 68%);
  filter: blur(4px);
}

.hero-content,
.terminal-preview {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-content h1 {
  margin: 0 0 20px;
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}

.primary-button {
  background: var(--green);
  color: #03100c;
  box-shadow: 0 18px 45px rgba(0, 255, 170, 0.18);
}

.secondary-button {
  border: 1px solid rgba(0, 255, 170, 0.55);
  color: var(--green);
  background: rgba(0, 255, 170, 0.06);
}

.ghost-button {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.nav-button:hover {
  transform: translateY(-1px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #dce6ef;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 700;
}

.terminal-preview {
  border: 1px solid rgba(0, 255, 170, 0.22);
  border-radius: 20px;
  overflow: hidden;
  background: #020403;
  box-shadow:
    0 0 0 1px rgba(0, 255, 170, 0.04),
    0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(0, 255, 170, 0.08);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  background: #10151b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--danger);
}

.terminal-top span:nth-child(2) {
  background: var(--yellow);
}

.terminal-top span:nth-child(3) {
  background: var(--green);
}

.terminal-top p {
  margin: 0 0 0 10px;
  color: var(--muted-2);
  font-size: 0.86rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.terminal-body {
  padding: 24px;
  min-height: 360px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.96rem;
  line-height: 1.7;
}

.terminal-body p {
  margin: 0 0 10px;
}

.prompt,
.success {
  color: var(--green);
}

.muted {
  color: var(--muted-2);
}

.cursor {
  color: var(--green);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.content-section,
.feature-section,
.trailer-section,
.newsletter-section,
.contact-section {
  padding: 90px 20px;
}

.content-section {
  background: var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.content-section h2,
.feature-section h2,
.trailer-section h2,
.newsletter-section h2,
.contact-section h2,
.sponsor-section h2,
.sponsor-detail-section h2,
.sponsor-contact-section h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.content-section p,
.newsletter-section p,
.contact-section p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.feature-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 255, 170, 0.08), transparent 25%),
    var(--bg);
}

.feature-grid,
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.feature-card,
.sponsor-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card h3,
.sponsor-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
}

.feature-card p,
.sponsor-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.trailer-section {
  background: var(--bg-3);
}

.video-shell {
  margin-top: 30px;
  border-radius: 22px;
  border: 1px solid rgba(0, 255, 170, 0.2);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px;
  box-shadow: var(--shadow);
}

.video-placeholder {
  min-height: 420px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(0, 255, 170, 0.1), rgba(0, 183, 255, 0.06)),
    #030507;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}

.video-placeholder p {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
}

.video-placeholder span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.sponsor-section {
  padding: 90px 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 170, 0.16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(0, 132, 255, 0.14), transparent 34%),
    #05070a;
  color: var(--text);
  border-top: 1px solid rgba(0, 255, 170, 0.18);
  border-bottom: 1px solid rgba(0, 255, 170, 0.12);
}

.sponsor-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 255, 170, 0.55);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 255, 170, 0.08);
  font-weight: 850;
}

.sponsor-section h2 {
  max-width: 900px;
}

.sponsor-lead {
  max-width: 860px;
  color: #b9c4cf;
  font-size: 1.12rem;
  line-height: 1.75;
}

.sponsor-card {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
}

.sponsor-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.sponsor-comparison > div {
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.sponsor-comparison .highlighted {
  border-color: rgba(0, 255, 170, 0.45);
  background: rgba(0, 255, 170, 0.07);
}

.sponsor-comparison h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.15rem;
}

.sponsor-comparison ul {
  margin: 0;
  padding-left: 20px;
  color: #c5d0db;
  line-height: 1.8;
}

.sponsor-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.sponsor-page-hero {
  padding: 125px 20px 80px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.95)),
    radial-gradient(circle at top right, rgba(0, 255, 170, 0.18), transparent 38%),
    #05070a;
  color: var(--text);
}

.sponsor-page-hero h1 {
  max-width: 900px;
  margin: 0 0 20px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.sponsor-page-hero p {
  max-width: 880px;
  color: #bac6d3;
  font-size: 1.15rem;
  line-height: 1.75;
}

.sponsor-detail-section {
  padding: 80px 20px;
  background: var(--bg-2);
  color: var(--text);
}

.sponsor-detail-section.alt {
  background: var(--bg-3);
}

.value-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.value-list div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.value-list strong {
  color: var(--green);
}

.value-list span {
  color: var(--muted);
  line-height: 1.6;
}

.sponsor-contact-section {
  padding: 80px 20px 100px;
  background:
    radial-gradient(circle at bottom left, rgba(0, 255, 170, 0.14), transparent 34%),
    #05070a;
  color: var(--text);
}

.newsletter-section {
  background:
    radial-gradient(circle at top right, rgba(0, 183, 255, 0.11), transparent 30%),
    var(--bg-3);
}

.contact-section {
  background: var(--bg-2);
}

.contact-form,
.sponsor-form {
  max-width: 760px;
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.contact-form label,
.sponsor-form label {
  display: grid;
  gap: 8px;
  color: #dce6ef;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.sponsor-form input,
.sponsor-form select,
.sponsor-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font: inherit;
}

.sponsor-form select option {
  color: #08100c;
}

.contact-form textarea,
.sponsor-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.sponsor-form input:focus,
.sponsor-form select:focus,
.sponsor-form textarea:focus {
  outline: none;
  border-color: rgba(0, 255, 170, 0.65);
  box-shadow: 0 0 0 3px rgba(0, 255, 170, 0.12);
}

.contact-form button,
.sponsor-form button {
  width: fit-content;
}

.site-footer {
  padding: 28px 20px;
  background: #030507;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-wrap p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--green);
}

@media (max-width: 980px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 105px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature-grid,
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav-container {
    padding: 12px 16px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .nav-button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero-section,
  .content-section,
  .feature-section,
  .trailer-section,
  .sponsor-section,
  .newsletter-section,
  .contact-section,
  .sponsor-page-hero,
  .sponsor-detail-section,
  .sponsor-contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content h1,
  .sponsor-page-hero h1 {
    letter-spacing: -0.045em;
  }

  .feature-grid,
  .sponsor-grid,
  .sponsor-comparison {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    min-height: 260px;
  }

  .value-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .terminal-body {
    min-height: 300px;
    padding: 18px;
    font-size: 0.86rem;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Added: playable games section, preserving the uploaded layout */
.games-section {
  padding: 90px 20px;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 183, 255, 0.09), transparent 28%),
    var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.game-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.game-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
}

.game-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.danger {
  color: var(--danger);
}

.terminal-body a {
  color: var(--green);
  text-decoration: none;
}

.terminal-body a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}


/* Final hero title style: matches the attached screenshot */
.hero-pill {
  display: inline-block;
  width: fit-content;
  padding: 7px 13px;
  border: 1px solid rgba(0, 255, 170, 0.28);
  border-radius: 999px;
  background: rgba(0, 255, 170, 0.055);
  color: #9effdf;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-title {
  margin: 22px 0 20px !important;
  max-width: 820px !important;
  font-size: clamp(3.5rem, 8vw, 6.6rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.055em !important;
  font-weight: 950 !important;
  color: #f4f7fb;
}

.glitch-title {
  position: relative;
  display: inline-block;
  color: #20ffd0;
  text-shadow:
    2px 0 #00d0ff,
    -2px 0 #00ffaa,
    0 0 24px rgba(0, 255, 170, 0.34);
}

.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}

.glitch-title::before {
  transform: translate(3px, 0);
  color: #00d0ff;
}

.glitch-title::after {
  transform: translate(-3px, 0);
  color: #00ffaa;
}

.hero-dash {
  color: #f4f7fb;
  text-shadow: none;
}

/* Live coffee terminal */
.terminal-body {
  overflow-y: auto;
}

.hmn-line {
  white-space: pre-wrap;
  margin: 0 0 10px;
}

.hmn-prompt {
  color: #7aa7a0;
}

.hmn-input {
  color: #cfe;
}

.hmn-sudo {
  color: var(--green);
  font-weight: 800;
}

.hmn-deny {
  color: var(--danger);
}

.hmn-ok {
  color: var(--green);
}

.hmn-caret {
  display: inline-block;
  width: 9px;
  height: 18px;
  background: var(--green);
  margin-left: 4px;
  animation: hmn-blink 1s steps(1, end) infinite;
  vertical-align: -3px;
}

@keyframes hmn-blink {
  50% { opacity: 0; }
}

.terminal-body a {
  color: var(--green);
  text-decoration: none;
}

.terminal-body a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .hero-title {
    font-size: clamp(3rem, 15vw, 4.6rem) !important;
  }
}


/* Final polish: smaller hero text + Kickstarter buttons */
.hero-title {
  font-size: clamp(2.7rem, 5.7vw, 4.85rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.045em !important;
}

.glitch-title {
  font-size: 1.08em;
}

.hero-dash {
  display: inline-block;
  margin-left: 0.08em;
}

.nav-kickstarter {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px !important;
  border-radius: 15px !important;
  background: linear-gradient(90deg, #05ce78 0%, #18c1e0 100%) !important;
  color: #00120c !important;
  border: 0 !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  box-shadow: 0 12px 34px rgba(0, 255, 170, 0.14);
  white-space: nowrap;
}

.nav-kickstarter:hover {
  transform: translateY(-1px);
  text-decoration: none !important;
}

.kickstarter-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 15px;
  background: linear-gradient(90deg, #05ce78 0%, #18c1e0 100%);
  color: #00120c;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 28px rgba(0, 255, 170, 0.16);
}

.kickstarter-float:hover {
  transform: translateY(-2px) scale(1.02);
  text-decoration: none;
}

@media (max-width: 720px) {
  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.7rem) !important;
  }

  .kickstarter-float {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
}


/* Contact card replacing external form dependency */
.contact-card {
  max-width: 900px;
  padding: 28px;
  border: 1px solid rgba(0, 255, 170, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top left, rgba(0, 255, 170, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.25rem;
}

.contact-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}




/* Anti-bot email contact buttons */
.contact-mail-button {
  font: inherit;
  border: 0;
}

.secondary-button.contact-mail-button {
  border: 1px solid rgba(0, 255, 170, 0.55);
}

.contact-actions button {
  cursor: pointer;
}


/* Cloudflare Worker contact forms */
.contact-intro {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
  margin: 0 0 28px;
}

.hmn-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 4px 0 0;
  color: var(--green);
  font-weight: 800;
}

.form-status-error {
  color: var(--danger);
}

.hmn-contact-form button[disabled] {
  opacity: 0.65;
  cursor: wait;
}

.cf-turnstile {
  margin: 2px 0 4px;
}

/* Privacy/GDPR banner - HackMeNow terminal style */
.privacy-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: none;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(0, 255, 170, 0.32);
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(0, 255, 170, 0.12), transparent 34%), rgba(5, 8, 10, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55), 0 0 28px rgba(0, 255, 170, 0.10);
  backdrop-filter: blur(10px);
}

.privacy-banner.is-visible {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.privacy-terminal-line {
  color: #d7fff3;
  line-height: 1.55;
  font-size: 0.98rem;
}

.privacy-prompt {
  color: var(--green, #00ffaa);
  font-weight: 900;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  margin-right: 8px;
}

.privacy-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.privacy-btn,
.privacy-link,
.privacy-settings-button {
  border-radius: 13px;
  border: 1px solid rgba(0, 255, 170, 0.35);
  background: rgba(8, 20, 17, 0.9);
  color: #cffff0;
  padding: 10px 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

.privacy-btn.primary {
  border: 0;
  background: linear-gradient(90deg, #05ce78 0%, #18c1e0 100%);
  color: #00120c;
}

.privacy-link:hover,
.privacy-btn:hover,
.privacy-settings-button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.privacy-settings-button {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 999;
  display: none;
  font-size: 0.88rem;
  background: rgba(5, 8, 10, 0.84);
  backdrop-filter: blur(8px);
}

.privacy-settings-button.is-visible {
  display: inline-flex;
}

.privacy-video-shell {
  min-height: 310px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  overflow: hidden;
}

.trailer-consent-card {
  width: 100%;
  min-height: 310px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 34px;
  border: 1px solid rgba(0, 255, 170, 0.22);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 255, 170, 0.10), rgba(0, 208, 255, 0.08)), radial-gradient(circle at center, rgba(0, 255, 170, 0.08), transparent 42%), #05080a;
  color: #f4f7fb;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow, 0 16px 50px rgba(0, 0, 0, 0.35));
}

.trailer-consent-card strong {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.trailer-consent-card span {
  max-width: 620px;
  color: var(--muted, #a0a0a0);
  line-height: 1.6;
}

.trailer-consent-card .trailer-kicker {
  color: var(--green, #00ffaa);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.trailer-consent-card em {
  display: inline-flex;
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(90deg, #05ce78 0%, #18c1e0 100%);
  color: #00120c;
  font-style: normal;
  font-weight: 900;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.privacy-page h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 18px 0;
}

.privacy-page h2 {
  margin-top: 30px;
}

.privacy-page li {
  margin: 8px 0;
  color: var(--muted, #a0a0a0);
}

@media (max-width: 820px) {
  .privacy-banner.is-visible {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-actions {
    justify-content: flex-start;
  }

  .privacy-settings-button {
    right: 18px;
    left: auto;
  }
}


/* Clean privacy policy page override */
.privacy-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 255, 170, 0.08), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(0, 208, 255, 0.07), transparent 30%),
    #05080a;
}

.privacy-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 10, 0.88);
  border-bottom: 1px solid rgba(0, 255, 170, 0.16);
  backdrop-filter: blur(10px);
}

.privacy-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.privacy-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4f7fb;
  text-decoration: none;
  font-weight: 900;
}

.privacy-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.privacy-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.privacy-nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 170, 0.34);
  background: rgba(0, 255, 170, 0.08);
  color: #dffff4;
  text-decoration: none;
  font-weight: 800;
}

.privacy-nav-links a:hover {
  background: rgba(0, 255, 170, 0.16);
  color: #ffffff;
  text-decoration: none;
}

.privacy-clean-page {
  padding-top: 42px;
  padding-bottom: 60px;
}

.privacy-hero-small {
  max-width: 860px;
  margin: 0 auto 22px;
  padding: 26px 28px;
  border: 1px solid rgba(0, 255, 170, 0.20);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(0, 255, 170, 0.10), rgba(0, 208, 255, 0.06)),
    rgba(8, 12, 14, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.privacy-hero-small h1 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.privacy-hero-small p {
  max-width: 720px;
  margin: 0;
  color: var(--muted, #a0a0a0);
  line-height: 1.65;
  font-size: 1.02rem;
}

.privacy-content-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(10, 14, 17, 0.84);
}

.privacy-content-card h2 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.privacy-content-card h2:first-of-type {
  margin-top: 8px;
}

.privacy-content-card p,
.privacy-content-card li {
  color: var(--muted, #a0a0a0);
  line-height: 1.75;
}

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

.privacy-content-card strong {
  color: #f4f7fb;
}

.privacy-updated {
  margin: 0 0 18px;
  color: rgba(215, 255, 243, 0.68);
  font-size: 0.92rem;
}

.privacy-bottom-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.privacy-back-primary,
.privacy-back-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
}

.privacy-back-primary {
  background: linear-gradient(90deg, #05ce78 0%, #18c1e0 100%);
  color: #00120c;
}

.privacy-back-secondary {
  border: 1px solid rgba(0, 255, 170, 0.36);
  background: rgba(0, 255, 170, 0.08);
  color: #dffff4;
}

.privacy-back-primary:hover,
.privacy-back-secondary:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.privacy-footer {
  padding-bottom: 28px;
}

@media (max-width: 720px) {
  .privacy-nav {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .privacy-nav-links {
    width: 100%;
  }

  .privacy-nav-links a {
    flex: 1;
  }

  .privacy-clean-page {
    padding-top: 24px;
  }

  .privacy-hero-small,
  .privacy-content-card {
    padding: 22px;
  }
}


/* FORCE FIX: compact privacy.html page only */
body.privacy-page-body {
  margin: 0 !important;
  min-height: 100vh !important;
  background: #05080a !important;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(0,255,170,.10), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(24,193,224,.08), transparent 30%) !important;
  color: #f4f7fb !important;
  overflow-x: hidden !important;
}

body.privacy-page-body::before,
body.privacy-page-body::after {
  display: none !important;
  content: none !important;
}

body.privacy-page-body .hero,
body.privacy-page-body .hero-wrap,
body.privacy-page-body .hero-media,
body.privacy-page-body .background,
body.privacy-page-body .site-hero,
body.privacy-page-body .privacy-hero,
body.privacy-page-body .panel.pad {
  display: none !important;
}

.privacy-topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  width: 100% !important;
  background: rgba(5, 8, 10, .96) !important;
  border-bottom: 1px solid rgba(0,255,170,.18) !important;
  backdrop-filter: blur(10px) !important;
}

.privacy-topbar-inner {
  width: min(1120px, calc(100% - 36px)) !important;
  min-height: 68px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

.privacy-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #fff !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.privacy-logo-link img {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
}

.privacy-page-nav {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

.privacy-page-nav a {
  display: inline-flex !important;
  min-height: 38px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 14px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(0,255,170,.34) !important;
  background: rgba(0,255,170,.09) !important;
  color: #dffff4 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.privacy-page-nav a:hover {
  background: rgba(0,255,170,.18) !important;
  color: #fff !important;
}

.privacy-main {
  width: min(880px, calc(100% - 36px)) !important;
  margin: 0 auto !important;
  padding: 34px 0 56px !important;
}

.privacy-title-card {
  display: block !important;
  margin: 0 0 18px !important;
  padding: 22px 24px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(0,255,170,.20) !important;
  background: linear-gradient(135deg, rgba(0,255,170,.10), rgba(24,193,224,.06)), rgba(8,12,14,.88) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.28) !important;
}

.privacy-title-card h1 {
  margin: 8px 0 8px !important;
  font-size: clamp(1.9rem, 4vw, 3rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -.04em !important;
  color: #f4f7fb !important;
}

.privacy-title-card p {
  margin: 0 !important;
  max-width: 680px !important;
  color: #aeb8b5 !important;
  line-height: 1.6 !important;
  font-size: 1rem !important;
}

.privacy-mini-label {
  display: inline-flex !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0,255,170,.28) !important;
  background: rgba(0,255,170,.08) !important;
  color: #00ffaa !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
  font-size: .78rem !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.privacy-readable-card {
  display: block !important;
  padding: 28px 30px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  background: rgba(10,14,17,.92) !important;
}

.privacy-readable-card h2 {
  margin: 26px 0 10px !important;
  color: #f4f7fb !important;
  font-size: 1.28rem !important;
}

.privacy-readable-card h2:first-of-type {
  margin-top: 4px !important;
}

.privacy-readable-card p,
.privacy-readable-card li {
  color: #aeb8b5 !important;
  line-height: 1.72 !important;
  font-size: 1rem !important;
}

.privacy-readable-card ul {
  padding-left: 22px !important;
}

.privacy-readable-card strong {
  color: #fff !important;
}

.privacy-date {
  margin: 0 0 16px !important;
  color: rgba(215,255,243,.7) !important;
  font-size: .92rem !important;
}

.privacy-actions-bottom {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin-top: 30px !important;
}

.privacy-main-button,
.privacy-secondary-button {
  display: inline-flex !important;
  min-height: 42px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 11px 16px !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  font-weight: 900 !important;
}

.privacy-main-button {
  background: linear-gradient(90deg, #05ce78 0%, #18c1e0 100%) !important;
  color: #00120c !important;
}

.privacy-secondary-button {
  border: 1px solid rgba(0,255,170,.36) !important;
  background: rgba(0,255,170,.08) !important;
  color: #dffff4 !important;
}

.privacy-footer-small {
  width: min(880px, calc(100% - 36px)) !important;
  margin: 0 auto !important;
  padding: 0 0 32px !important;
  color: #84908d !important;
  font-size: .92rem !important;
}

@media (max-width: 720px) {
  .privacy-topbar-inner {
    align-items: flex-start !important;
    flex-direction: column !important;
    padding: 14px 0 !important;
  }

  .privacy-page-nav {
    width: 100% !important;
  }

  .privacy-page-nav a {
    flex: 1 !important;
  }

  .privacy-readable-card,
  .privacy-title-card {
    padding: 21px !important;
  }
}


/* YouTube trailer now loads directly via privacy-enhanced youtube-nocookie embed */
.trailer-consent-card {
  display: none !important;
}


/* Contact form status polish */
.form-status-error {
  color: #ff5d85 !important;
}

.form-status {
  max-width: 760px;
  line-height: 1.45;
}


/* Turnstile form spacing fix */
.cf-turnstile {
  min-height: 68px;
  margin: 8px 0 10px;
}

.form-status-error {
  color: #ff5d85 !important;
}
