
:root {
  --bg: #090608;
  --bg-soft: #161013;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.12);
  --text: #fff7f0;
  --muted: #ddd0c3;
  --muted-2: #a89b92;
  --accent: #ff9a33;
  --accent-2: #ff6f1e;
  --accent-blue: #37a8ff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --container: min(1180px, calc(100% - 40px));
}

* { 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;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(55, 168, 255, 0.12), transparent 26%),
    radial-gradient(circle at 85% 0%, rgba(255, 111, 30, 0.14), transparent 30%),
    linear-gradient(180deg, #0b0709 0%, #0a090c 45%, #0d0c0f 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { border: none; }
textarea { resize: vertical; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 88px 0; position: relative; z-index: 1; }

.fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.fx-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 170, 90, 0.9);
  box-shadow: 0 0 12px rgba(255, 132, 0, 0.45);
  opacity: 0;
  animation: floatParticle linear infinite;
}
.fx-particle.blue {
  background: rgba(95, 180, 255, 0.8);
  box-shadow: 0 0 12px rgba(55, 168, 255, 0.4);
}
@keyframes floatParticle {
  0% { transform: translate3d(0, 20px, 0) scale(0.7); opacity: 0; }
  8% { opacity: 1; }
  70% { opacity: 0.7; }
  100% { transform: translate3d(var(--drift-x), -120vh, 0) scale(1.15); opacity: 0; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(11, 8, 10, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 6px 18px rgba(255, 111, 30, 0.25));
}
.brand-copy { display: flex; flex-direction: column; }
.brand-title { font-size: 1rem; font-weight: 900; letter-spacing: 0.04em; }
.brand-subtitle { color: var(--muted-2); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { color: var(--muted); font-weight: 700; font-size: 0.92rem; }
.main-nav a:hover { color: var(--text); }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface); color: white; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: white; border-radius: 999px; display: block; }

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 5, 6, 0.54), rgba(8, 5, 6, 0.88)),
    radial-gradient(circle at 20% 35%, rgba(55, 168, 255, 0.16), transparent 26%),
    radial-gradient(circle at 80% 30%, rgba(255, 111, 30, 0.23), transparent 24%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 72px; }
.hero-card {
  width: min(700px, 100%);
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(16, 11, 13, 0.82), rgba(14, 10, 12, 0.68));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.eyebrow,
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px;
  padding: 8px 14px; border: 1px solid rgba(255, 154, 51, 0.22); border-radius: 999px;
  background: rgba(255, 154, 51, 0.12); color: #ffd2aa; font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.15em; font-weight: 900;
}
.hero h1,
.section-copy h2,
.section-head h2,
.cta-copy h2,
.contact-copy h2,
.modal-card h3 {
  margin: 0; line-height: 0.95; letter-spacing: -0.05em; font-weight: 900;
}
.hero h1 { font-size: clamp(3rem, 7vw, 5.8rem); }
.hero-text { margin: 22px 0 0; max-width: 58ch; color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.18rem); line-height: 1.7; }
.hero-actions,
.cta-actions,
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none;
}
.hero-points li {
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08); color: var(--muted); font-size: 0.92rem; font-weight: 700;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px;
  border-radius: 16px; border: 1px solid transparent; font-weight: 800; letter-spacing: 0.01em;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #180c06; box-shadow: 0 16px 34px rgba(255, 111, 30, 0.28); }
.button-secondary { background: rgba(255,255,255,0.06); color: var(--text); border-color: var(--line); }
.button-secondary:hover { background: rgba(255,255,255,0.1); }

.section-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 54px; align-items: center; }
.section-reverse { grid-template-columns: 0.96fr 1.04fr; }
.section-copy h2,
.section-head h2,
.cta-copy h2,
.contact-copy h2 { font-size: clamp(2.1rem, 4.4vw, 3.9rem); }
.section-copy p,
.section-head p,
.cta-copy p,
.contact-copy p,
.modal-note { color: var(--muted); line-height: 1.75; font-size: 1rem; }
.section-media { position: relative; }
.rounded-image, .product-card, .gallery-card, .feature-card, .cta-panel, .contact-panel, .modal-card {
  box-shadow: var(--shadow);
}
.rounded-image { width: 100%; border-radius: 30px; border: 1px solid rgba(255,255,255,0.08); }
.stat-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px;
}
.stat-grid article,
.feature-card,
.gallery-card,
.product-card,
.cta-panel,
.contact-panel,
.modal-card {
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}
.stat-grid article { padding: 18px; border-radius: 22px; }
.stat-grid strong { display: block; margin-bottom: 8px; font-size: 1rem; }
.stat-grid span { color: var(--muted-2); line-height: 1.55; font-size: 0.95rem; }
.section-head { max-width: 780px; margin-bottom: 34px; }

.trailer-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}
.video-wrap {
  position: relative; width: 100%; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow);
}
.video-wrap::before { content: ""; display: block; padding-top: 56.25%; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.trailer-copy {
  padding: 24px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}
.trailer-copy h3 { margin: 0 0 16px; font-size: 1.4rem; }

.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.feature-card { padding: 22px; border-radius: 24px; }
.feature-icon {
  width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 154, 51, 0.22), rgba(55, 168, 255, 0.16));
  border: 1px solid rgba(255,255,255,0.08); font-size: 1.4rem;
}
.feature-card h3 { margin: 18px 0 10px; font-size: 1.1rem; }
.feature-card p { margin: 0; color: var(--muted-2); line-height: 1.65; }

.bullet-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.bullet-list.compact { margin-top: 14px; }
.bullet-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--muted); line-height: 1.65; }
.bullet-list span {
  width: 10px; height: 10px; border-radius: 999px; flex: 0 0 auto; margin-top: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue)); box-shadow: 0 0 18px rgba(255, 111, 30, 0.35);
}

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-card {
  position: relative; overflow: hidden; padding: 0; border-radius: 24px; cursor: pointer; text-align: left; background: none;
}
.gallery-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.28s ease; }
.gallery-card span {
  position: absolute; left: 14px; bottom: 14px; padding: 8px 12px; border-radius: 999px; background: rgba(10, 8, 9, 0.78);
  border: 1px solid rgba(255,255,255,0.08); font-weight: 800; color: var(--text);
}
.gallery-card:hover img { transform: scale(1.04); }

.merch-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card { overflow: hidden; border-radius: 24px; }
.product-card img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: linear-gradient(180deg, #e8e8e8, #cecece);
}
.product-body { padding: 20px; }
.product-body h3 { margin: 0 0 8px; font-size: 1.2rem; }
.product-body p { margin: 0; color: var(--muted-2); line-height: 1.6; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px;
}
.product-footer strong { font-size: 1.25rem; color: var(--text); }

.cta-panel, .contact-panel {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 34px; border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 111, 30, 0.16), transparent 28%),
    radial-gradient(circle at left center, rgba(55, 168, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
}
.cta-copy, .contact-copy { max-width: 720px; }
.cta-actions.wide { width: auto; }

.site-footer { padding: 26px 0 42px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-title { font-weight: 900; margin: 0 0 6px; }
.footer-text, .footer-meta { color: var(--muted-2); margin: 0; }

.lightbox, .modal {
  position: fixed; inset: 0; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(9, 7, 8, 0.92); z-index: 60;
}
.lightbox.open, .modal.open { display: flex; }
.lightbox-figure { margin: 0; width: min(1200px, 100%); }
.lightbox-figure img {
  width: 100%; max-height: 82vh; object-fit: contain; border-radius: 22px; border: 1px solid rgba(255,255,255,0.1);
}
.lightbox-figure figcaption { margin-top: 12px; color: var(--muted); text-align: center; }
.lightbox-close, .modal-close {
  position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.06); color: white; font-size: 2rem; cursor: pointer;
}
.modal-card {
  position: relative; width: min(620px, 100%); padding: 28px; border-radius: 26px;
}
.order-form { display: grid; gap: 14px; margin-top: 18px; }
.order-form label { display: grid; gap: 8px; font-weight: 700; color: var(--text); }
.order-form input, .order-form textarea {
  width: 100%; padding: 13px 14px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05); color: var(--text);
}
.modal-note { margin-top: 14px; }

.reveal { opacity: 1; transform: none; }
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .section-grid, .section-reverse, .trailer-shell, .cta-panel, .contact-panel { grid-template-columns: 1fr; display: grid; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .merch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 28px, 1180px); }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; top: calc(100% + 8px); left: 14px; right: 14px; display: none; flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px;
    border-radius: 18px; background: rgba(18, 12, 15, 0.95); border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-card { padding: 24px; }
  .section { padding: 64px 0; }
  .stat-grid, .feature-grid, .gallery-grid, .merch-grid { grid-template-columns: 1fr; }
  .footer-wrap, .cta-panel, .contact-panel { display: flex; flex-direction: column; align-items: flex-start; }
  .cta-actions, .hero-actions, .contact-actions, .product-footer { width: 100%; flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .product-footer { align-items: stretch; }
}


/* V2.2 — visible depth effect */
.depth-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 28%, rgba(55, 168, 255, 0.10), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(255, 111, 30, 0.13), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 154, 51, 0.06), transparent 35%);
}

.depth-glow {
  position: fixed;
  width: 42vw;
  height: 42vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.28;
  z-index: 2;
  mix-blend-mode: screen;
  animation: slowPulse 9s ease-in-out infinite;
}

.depth-glow-left {
  left: -18vw;
  top: 24vh;
  background: rgba(55, 168, 255, 0.24);
}

.depth-glow-right {
  right: -18vw;
  top: 10vh;
  background: rgba(255, 111, 30, 0.26);
  animation-delay: -3s;
}

@keyframes slowPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.18; }
  50% { transform: scale(1.04); opacity: 0.32; }
}

.fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.fx-layer-back { z-index: 1; }
.fx-layer-front { z-index: 35; }

.fx-particle {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 176, 82, 0.95);
  box-shadow: 0 0 16px rgba(255, 120, 25, 0.72);
  opacity: 0;
  animation: floatParticle linear infinite;
}

.fx-particle.blue {
  background: rgba(95, 185, 255, 0.92);
  box-shadow: 0 0 16px rgba(55, 168, 255, 0.72);
}

.fx-layer-front .fx-particle {
  filter: blur(0.2px);
  box-shadow: 0 0 22px rgba(255, 140, 45, 0.9);
}

@keyframes floatParticle {
  0% { transform: translate3d(0, 24px, 0) scale(0.55); opacity: 0; }
  10% { opacity: 1; }
  70% { opacity: 0.9; }
  100% { transform: translate3d(var(--drift-x), -125vh, 0) scale(1.25); opacity: 0; }
}

.hero-media img {
  transition: transform 0.25s ease-out;
  will-change: transform;
}

.hero-card,
.trailer-copy,
.feature-card,
.product-card,
.gallery-card,
.contact-panel,
.cta-panel {
  position: relative;
  z-index: 3;
}

.trailer-poster {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 380px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background: #0c090a;
}

.trailer-poster img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.trailer-poster:hover img {
  transform: scale(1.04);
}

.poster-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 111, 30, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(8,5,6,0.25), rgba(8,5,6,0.80));
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #150804;
  font-size: 2rem;
  box-shadow: 0 0 50px rgba(255, 111, 30, 0.45);
}

.poster-copy {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: grid;
  gap: 4px;
}

.poster-copy strong {
  font-size: 1.35rem;
}

.poster-copy em {
  color: var(--muted);
  font-style: normal;
}

.trailer-button {
  margin-top: 20px;
}

.micro-note {
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-panel-form {
  align-items: flex-start;
}

.contact-form {
  width: min(520px, 100%);
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  color: var(--text);
  outline: none;
}

.contact-form select option {
  color: #130c0c;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 154, 51, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 154, 51, 0.10);
}

@media (max-width: 780px) {
  .trailer-poster,
  .trailer-poster img {
    min-height: 260px;
  }

  .play-badge {
    width: 70px;
    height: 70px;
  }

  .fx-layer-front .fx-particle {
    display: none;
  }
}


/* V2.3 — YouTube plays directly in the site */
.youtube-direct {
  background: linear-gradient(135deg, rgba(255, 154, 51, 0.10), rgba(55, 168, 255, 0.08));
}

.youtube-direct iframe {
  background: #161616;
}


/* V2.4 — stronger scroll-depth particles + configurable gallery */
.scroll-depth-field {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  min-height: var(--doc-height, 100vh);
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.scroll-dot {
  position: absolute;
  border-radius: 999px;
  opacity: 0.36;
  background: rgba(255, 170, 90, 0.72);
  box-shadow: 0 0 18px rgba(255, 128, 30, 0.48);
}

.scroll-dot.blue {
  background: rgba(85, 175, 255, 0.68);
  box-shadow: 0 0 18px rgba(55, 168, 255, 0.44);
}

.fx-layer-fast {
  z-index: 30;
}

.fx-particle.fast {
  opacity: 0;
  filter: blur(0.7px);
  background: rgba(255, 188, 110, 0.48);
  box-shadow: 0 0 18px rgba(255, 125, 30, 0.35);
}

.fx-particle.fast.blue {
  background: rgba(120, 200, 255, 0.42);
  box-shadow: 0 0 18px rgba(55, 168, 255, 0.33);
}

@keyframes floatParticle {
  0% { transform: translate3d(0, 24px, 0) scale(0.55); opacity: 0; }
  10% { opacity: var(--max-opacity, 1); }
  70% { opacity: calc(var(--max-opacity, 1) * 0.82); }
  100% { transform: translate3d(var(--drift-x), -125vh, 0) scale(1.25); opacity: 0; }
}

.gallery-help {
  margin-top: 18px;
}

.gallery-help strong {
  color: var(--text);
}

.contact-form input[readonly] {
  opacity: 0.82;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 780px) {
  .fx-layer-fast {
    display: none;
  }
}


/* V2.5 — scroll-only depth particles, no autonomous animation */
.fx-layer,
.fx-layer-back,
.fx-layer-fast,
.fx-layer-front,
.scroll-depth-field {
  display: none !important;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

.parallax-particles {
  position: fixed;
  left: 0;
  top: -28vh;
  width: 100%;
  height: 156vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
  will-change: transform;
}

.layer-far {
  z-index: 1;
  opacity: 0.45;
}

.layer-mid {
  z-index: 18;
  opacity: 0.62;
}

.layer-near {
  z-index: 36;
  opacity: 0.70;
}

.parallax-dot {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 166, 76, 0.42);
  box-shadow: 0 0 14px rgba(255, 118, 22, 0.30);
  transform: translateZ(0);
}

.parallax-dot.blue {
  background: rgba(95, 178, 255, 0.38);
  box-shadow: 0 0 14px rgba(55, 168, 255, 0.28);
}

.layer-near .parallax-dot {
  filter: blur(0.2px);
  background: rgba(255, 174, 92, 0.50);
  box-shadow: 0 0 20px rgba(255, 118, 22, 0.42);
}

.layer-near .parallax-dot.blue {
  background: rgba(105, 190, 255, 0.45);
  box-shadow: 0 0 20px rgba(55, 168, 255, 0.38);
}

.site-footer {
  margin-bottom: 0 !important;
}

body::after {
  content: none !important;
}

@media (max-width: 780px) {
  .layer-near {
    display: none;
  }
}


/* V2.6 — Netlify form + stronger visible scroll-depth particles */
.hidden-field {
  display: none !important;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.success-card {
  width: min(720px, 100%);
  text-align: center;
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at top right, rgba(255, 111, 30, 0.16), transparent 32%),
    radial-gradient(circle at bottom left, rgba(55, 168, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
}

.success-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 22px rgba(255, 111, 30, 0.32));
}

.success-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.success-card p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.7;
  margin: 18px auto 0;
}

.success-card .button {
  margin-top: 28px;
}

.parallax-dot {
  opacity: var(--dot-opacity, 0.34);
  transition: opacity 0.12s linear, filter 0.12s linear, box-shadow 0.12s linear;
}

html.scrolling-depth .layer-far .parallax-dot {
  opacity: 0.55 !important;
  filter: brightness(1.45);
}

html.scrolling-depth .layer-mid .parallax-dot {
  opacity: 0.78 !important;
  filter: brightness(1.75);
}

html.scrolling-depth .layer-near .parallax-dot {
  opacity: 0.92 !important;
  filter: brightness(2.05) blur(0.1px);
  box-shadow: 0 0 26px rgba(255, 128, 35, 0.72);
}

html.scrolling-depth .layer-near .parallax-dot.blue {
  box-shadow: 0 0 26px rgba(55, 168, 255, 0.72);
}


/* V2.7 — products are Coming Soon */
.button-disabled {
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 247, 240, 0.62);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
  cursor: not-allowed;
}

.button-disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.075);
}

.product-footer strong::after {
  content: " target price";
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* V2.8 — no visible product/game prices */
.hidden-field {
  display: none !important;
}

.product-footer strong::after {
  content: none !important;
}

.product-footer {
  align-items: center;
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.success-card {
  width: min(720px, 100%);
  text-align: center;
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at top right, rgba(255, 111, 30, 0.16), transparent 32%),
    radial-gradient(circle at bottom left, rgba(55, 168, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
}

.success-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 22px rgba(255, 111, 30, 0.32));
}

.success-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.success-card p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.7;
  margin: 18px auto 0;
}

.success-card .button {
  margin-top: 28px;
}

/* Particles stronger while scrolling */
.parallax-dot {
  opacity: var(--dot-opacity, 0.34);
  transition: opacity 0.12s linear, filter 0.12s linear, box-shadow 0.12s linear;
}

html.scrolling-depth .layer-far .parallax-dot {
  opacity: 0.55 !important;
  filter: brightness(1.45);
}

html.scrolling-depth .layer-mid .parallax-dot {
  opacity: 0.78 !important;
  filter: brightness(1.75);
}

html.scrolling-depth .layer-near .parallax-dot {
  opacity: 0.92 !important;
  filter: brightness(2.05) blur(0.1px);
  box-shadow: 0 0 26px rgba(255, 128, 35, 0.72);
}

html.scrolling-depth .layer-near .parallax-dot.blue {
  box-shadow: 0 0 26px rgba(55, 168, 255, 0.72);
}


/* V2.9 — inline Netlify form status, no success-page redirect */
.form-status {
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 750;
}

.form-status.success {
  color: #9dffb2;
}

.form-status.error {
  color: #ffb09b;
}


/* V3.1 — aligned merch cards and stronger scroll-depth particles */
.product-grid {
  align-items: stretch;
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.product-copy p {
  flex: 1 1 auto;
}

.product-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  min-height: 56px;
}

.product-footer strong {
  display: none !important;
}

.product-footer .button {
  min-width: 152px;
  text-align: center;
}

.button-disabled {
  min-width: 152px;
}

/* Stronger particles */
.parallax-particles {
  top: -35vh;
  height: 170vh;
}

.parallax-dot {
  opacity: var(--dot-opacity, 0.42);
  filter: brightness(1.12);
}

.layer-far {
  opacity: 0.62;
}

.layer-mid {
  opacity: 0.82;
}

.layer-near {
  opacity: 0.92;
}

.layer-far .parallax-dot {
  box-shadow: 0 0 18px rgba(255, 118, 22, 0.34);
}

.layer-mid .parallax-dot {
  box-shadow: 0 0 22px rgba(255, 118, 22, 0.42);
}

.layer-near .parallax-dot {
  box-shadow: 0 0 28px rgba(255, 118, 22, 0.56);
}

.layer-far .parallax-dot.blue {
  box-shadow: 0 0 18px rgba(55, 168, 255, 0.34);
}

.layer-mid .parallax-dot.blue {
  box-shadow: 0 0 22px rgba(55, 168, 255, 0.42);
}

.layer-near .parallax-dot.blue {
  box-shadow: 0 0 28px rgba(55, 168, 255, 0.56);
}

html.scrolling-depth .layer-far .parallax-dot {
  opacity: 0.70 !important;
  filter: brightness(1.65);
}

html.scrolling-depth .layer-mid .parallax-dot {
  opacity: 0.92 !important;
  filter: brightness(2.0);
}

html.scrolling-depth .layer-near .parallax-dot {
  opacity: 1 !important;
  filter: brightness(2.3) blur(0.15px);
  box-shadow: 0 0 34px rgba(255, 128, 35, 0.92);
}

html.scrolling-depth .layer-near .parallax-dot.blue {
  box-shadow: 0 0 34px rgba(55, 168, 255, 0.92);
}


/* V3.3 — custom PNG depth particles with stronger 3D scroll feeling */
.parallax-particles {
  top: -42vh;
  height: 190vh;
  will-change: transform;
  transition: opacity 0.12s linear;
}

.parallax-sprite {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--sprite-size, 88px);
  height: auto;
  object-fit: contain;
  opacity: var(--sprite-opacity, 0.38);
  user-select: none;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform, opacity, filter;
}

.layer-far {
  z-index: 1;
  opacity: 0.58;
}

.layer-mid {
  z-index: 18;
  opacity: 0.84;
}

.layer-near {
  z-index: 36;
  opacity: 1;
}

.layer-far .parallax-sprite {
  filter:
    blur(0.8px)
    saturate(0.95)
    brightness(0.95)
    drop-shadow(0 0 10px rgba(0,0,0,0.26));
}

.layer-mid .parallax-sprite {
  filter:
    blur(0.2px)
    saturate(1.05)
    brightness(1.04)
    drop-shadow(0 0 14px rgba(0,0,0,0.28));
}

.layer-near .parallax-sprite {
  filter:
    saturate(1.15)
    brightness(1.08)
    drop-shadow(0 0 20px rgba(0,0,0,0.34));
}

html.scrolling-depth .layer-far .parallax-sprite {
  opacity: 0.56 !important;
  filter:
    blur(0.6px)
    saturate(1.0)
    brightness(1.08)
    drop-shadow(0 0 14px rgba(255, 125, 30, 0.22));
}

html.scrolling-depth .layer-mid .parallax-sprite {
  opacity: 0.72 !important;
  filter:
    blur(0.1px)
    saturate(1.15)
    brightness(1.16)
    drop-shadow(0 0 20px rgba(255, 125, 30, 0.26));
}

html.scrolling-depth .layer-near .parallax-sprite {
  opacity: 0.92 !important;
  filter:
    saturate(1.25)
    brightness(1.24)
    drop-shadow(0 0 28px rgba(255, 125, 30, 0.34));
}

@media (max-width: 780px) {
  .parallax-particles {
    top: -24vh;
    height: 150vh;
  }

  .layer-near .parallax-sprite {
    display: none;
  }
}


/* V3.4 — fewer / bigger PNG depth particles, behind the text */
.parallax-particles {
  top: -38vh;
  height: 190vh;
  z-index: 0 !important;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}

.layer-far,
.layer-mid,
.layer-near {
  z-index: 0 !important;
  opacity: 1 !important;
}

.parallax-sprite {
  opacity: var(--sprite-opacity, 0.26) !important;
  transition: none !important;
  will-change: transform;
}

.layer-far .parallax-sprite {
  filter:
    blur(1px)
    saturate(0.92)
    brightness(0.92)
    drop-shadow(0 0 10px rgba(0,0,0,0.20));
}

.layer-mid .parallax-sprite {
  filter:
    blur(0.35px)
    saturate(1)
    brightness(1)
    drop-shadow(0 0 14px rgba(0,0,0,0.22));
}

.layer-near .parallax-sprite {
  filter:
    saturate(1.08)
    brightness(1.03)
    drop-shadow(0 0 18px rgba(0,0,0,0.26));
}

/* Remove the opacity / glow boost while scrolling */
html.scrolling-depth .layer-far .parallax-sprite,
html.scrolling-depth .layer-mid .parallax-sprite,
html.scrolling-depth .layer-near .parallax-sprite {
  opacity: var(--sprite-opacity, 0.26) !important;
  filter: none !important;
}

html.scrolling-depth .layer-far .parallax-sprite {
  filter:
    blur(1px)
    saturate(0.92)
    brightness(0.92)
    drop-shadow(0 0 10px rgba(0,0,0,0.20)) !important;
}

html.scrolling-depth .layer-mid .parallax-sprite {
  filter:
    blur(0.35px)
    saturate(1)
    brightness(1)
    drop-shadow(0 0 14px rgba(0,0,0,0.22)) !important;
}

html.scrolling-depth .layer-near .parallax-sprite {
  filter:
    saturate(1.08)
    brightness(1.03)
    drop-shadow(0 0 18px rgba(0,0,0,0.26)) !important;
}

@media (max-width: 780px) {
  .parallax-particles {
    top: -24vh;
    height: 150vh;
  }
}


/* V3.7 — prevent PNG robot parts from being visually cut too much */
.parallax-particles {
  overflow: visible !important;
}

.layer-near .parallax-sprite {
  opacity: var(--sprite-opacity, 0.36) !important;
  filter:
    saturate(1.18)
    brightness(1.18)
    drop-shadow(0 0 22px rgba(0,0,0,0.34)) !important;
}

.layer-mid .parallax-sprite {
  filter:
    blur(0.2px)
    saturate(1.05)
    brightness(1.10)
    drop-shadow(0 0 16px rgba(0,0,0,0.28)) !important;
}


/* V3.8 — more big pieces, full-page visibility, stronger 3D parallax */
.parallax-particles {
  top: -70vh !important;
  height: 320vh !important;
  overflow: visible !important;
  z-index: 0 !important;
  pointer-events: none;
}

.layer-far,
.layer-mid,
.layer-near {
  z-index: 0 !important;
  opacity: 1 !important;
}

.parallax-sprite {
  transition: none !important;
  opacity: var(--sprite-opacity, 0.24) !important;
  will-change: transform;
}

.layer-far .parallax-sprite {
  filter:
    blur(1.2px)
    saturate(0.92)
    brightness(0.92)
    drop-shadow(0 0 8px rgba(0,0,0,0.18)) !important;
}

.layer-mid .parallax-sprite {
  filter:
    blur(0.28px)
    saturate(1.04)
    brightness(1.06)
    drop-shadow(0 0 14px rgba(0,0,0,0.22)) !important;
}

.layer-near .parallax-sprite {
  filter:
    saturate(1.14)
    brightness(1.12)
    drop-shadow(0 0 22px rgba(0,0,0,0.28)) !important;
}

@media (max-width: 780px) {
  .parallax-particles {
    top: -34vh !important;
    height: 210vh !important;
  }
}
