/* ===================================================================
   VisionVeer - animations.css
   Full-featured animation & decorative style pack for VisionVeer
   Save as: /assets/animations.css
   =================================================================== */

/* ---------- Basic resets for animated elements ---------- */
.decor-layer,
.fx-layer {
  position: fixed;
  inset: 0;                /* top:0; right:0; bottom:0; left:0; */
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  will-change: transform, opacity;
}

/* Prefer reduced motion - if user requests reduce, disable heavy animations */
@media (prefers-reduced-motion: reduce) {
  .vv-dot, .vv-micro, .vv-line, .vv-ring, .particle {
    animation: none !important;
    transition: none !important;
    opacity: .6 !important;
  }
}

/* ---------- DECOR: dots, micro-dots, lines, rings ---------- */

/* base dot style */
.vv-dot,
.vv-micro,
.vv-line,
.vv-ring {
  position: absolute;
  display: block;
  transform-origin: center;
  will-change: transform, opacity;
}

/* dot - medium */
.vv-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(58,200,255,0.06) 45%, rgba(58,200,255,0.02) 100%);
  box-shadow:
    0 0 8px rgba(58,200,255,0.14),
    0 0 18px rgba(58,200,255,0.06),
    inset 0 1px 2px rgba(255,255,255,0.06);
  opacity: 0.12;
  mix-blend-mode: screen;
  animation-name: vv-float-rotate;
  animation-duration: 18s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* small and big variations */
.vv-dot.small { width: 6px; height: 6px; opacity: 0.08; }
.vv-dot.big   { width: 22px; height: 22px; opacity: 0.18; box-shadow: 0 0 22px rgba(58,200,255,0.24); }

/* micro dot - tiny sparkles */
.vv-micro {
  width: 3px; height: 3px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(255,255,255,0.18));
  box-shadow: 0 0 6px rgba(255,255,255,0.08);
  opacity: 0.06;
  animation-name: vv-micro-twinkle;
  animation-duration: 26s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* lines - neon strokes */
.vv-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,120,255,0.22) 20%, rgba(58,200,255,0.6) 50%, rgba(255,120,255,0.18) 80%, rgba(255,255,255,0) 100%);
  filter: drop-shadow(0 0 6px rgba(58,200,255,0.06));
  opacity: 0.16;
  animation-name: vv-line-slide;
  animation-duration: 9s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* ring - hollow pulse */
.vv-ring {
  border-radius: 50%;
  border: 2px solid rgba(58,200,255,0.12);
  box-shadow: 0 0 18px rgba(58,200,255,0.06), inset 0 0 6px rgba(255,255,255,0.02);
  opacity: 0.14;
  animation-name: vv-ring-pulse;
  animation-duration: 12s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* small particle seeds for subtle floating */
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,200,255,0.28), rgba(58,200,255,0.06));
  opacity: 0.06;
  will-change: transform, opacity;
  animation-name: vv-particle-drift;
  animation-duration: 6000ms;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

/* ---------- Keyframes: decor ---------- */
@keyframes vv-float-rotate {
  0%   { transform: translate3d(0,0,0) scale(1) rotate(0deg); opacity: .12; }
  25%  { transform: translate3d(-8px,-18px,0) scale(1.02) rotate(12deg); opacity: .14; }
  50%  { transform: translate3d(0,-34px,0) scale(1.06) rotate(0deg); opacity: .18; }
  75%  { transform: translate3d(12px,-18px,0) scale(1.03) rotate(-12deg); opacity: .14; }
  100% { transform: translate3d(0,0,0) scale(1) rotate(0deg); opacity: .12; }
}

@keyframes vv-micro-twinkle {
  0%   { transform: translate3d(0,0,0) scale(1); opacity: 0.04; }
  40%  { transform: translate3d(0,-12px,0) scale(1.6); opacity: 0.12; }
  100% { transform: translate3d(0,0,0) scale(1); opacity: 0.04; }
}

@keyframes vv-line-slide {
  0%   { transform: translateX(-60vw) scaleX(1); opacity: .0; }
  10%  { opacity: .18; }
  90%  { opacity: .18; }
  100% { transform: translateX(60vw) scaleX(1); opacity: .0; }
}

@keyframes vv-ring-pulse {
  0%   { transform: scale(.9); opacity: .08; }
  50%  { transform: scale(1.12); opacity: .24; }
  100% { transform: scale(.9); opacity: .08; }
}

@keyframes vv-particle-drift {
  0%   { transform: translate3d(0,0,0) rotate(0deg); opacity: .06; }
  100% { transform: translate3d(18vw,-10vh,0) rotate(360deg); opacity: .02; }
}

/* ---------- Cursor trail basics (CSS fallback) ---------- */
/* Note: full cursor trail better via JS but this adds ring focus on hover / links */
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate3d(-50%,-50%,0);
  background: radial-gradient(circle, rgba(58,200,255,0.18), rgba(58,200,255,0.02));
  box-shadow: 0 0 12px rgba(58,200,255,0.12);
  transition: transform .12s linear, opacity .18s linear;
  opacity: 0;
}

/* visible when JS toggles active */
.cursor-ring.active { opacity: 1; }

/* ---------- HERO / BANNER animations ---------- */
.hero {
  position: relative;
  overflow: hidden;
  z-index: 4; /* above decor layer */
  padding: 80px 18px;
}

.hero .hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}

.hero .title {
  font-weight: 900;
  font-size: 56px;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(0,0,0,0.6);
  animation: vv-hero-pop .9s cubic-bezier(.2,.9,.2,1) both;
}

.hero .subtitle {
  color: rgba(255,255,255,0.84);
  font-size: 18px;
  opacity: .92;
  margin-bottom: 22px;
  animation: vv-fade-in-up .9s .12s both;
}

/* Hero CTA buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  box-shadow: 0 10px 30px rgba(8,10,12,0.6), 0 2px 6px rgba(58,200,255,0.03);
  transition: transform .18s cubic-bezier(.2,.9,.3,1), box-shadow .12s ease;
}

/* gradient primary */
.btn--primary {
  background: linear-gradient(90deg,#ff3cac 0%, #3ac8ff 100%);
  color: #fff;
  padding: 12px 22px;
}

/* ghost / outline */
.btn--ghost {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
}

/* pressed + hover */
.btn:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(58,200,255,0.06); }
.btn:active { transform: translateY(-1px) scale(.995); }

/* small play icon style */
.btn .icon-play {
  width: 18px; height: 18px;
  border-radius: 3px;
  display: inline-block;
  background: rgba(255,255,255,0.12);
  margin-right: 6px;
}

/* ---------- simple loaders & counters ---------- */
.counter {
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  text-shadow: 0 6px 24px rgba(58,200,255,0.06);
  will-change: transform;
  animation: vv-count-pop 1s cubic-bezier(.2,.9,.2,1);
}

/* small pulse highlight */
.pulse-glow {
  display:inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(58,200,255,0.08), rgba(255,120,255,0.04));
  box-shadow: 0 6px 30px rgba(58,200,255,0.04);
  animation: vv-pulse 2.4s infinite ease-in-out;
}

/* ---------- TRAILER / VIDEO play circle ---------- */
.trailer-play {
  width: 92px; height: 92px;
  border-radius: 50%;
  display: inline-flex;
  align-items:center; justify-content:center;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 8px 30px rgba(58,200,255,0.08), 0 0 36px rgba(255,120,255,0.02) inset;
  cursor: pointer;
  animation: vv-pop-in .8s cubic-bezier(.2,.9,.2,1);
}

/* pulsing ring around the play button */
.trailer-play::after {
  content: "";
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(58,200,255,0.06);
  animation: vv-ring-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* ---------- CARDS / FEATURE boxes ---------- */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.012));
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.02);
  transition: transform .24s cubic-bezier(.18,.9,.36,1), box-shadow .18s ease;
  will-change: transform;
}
.card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 28px 80px rgba(0,0,0,0.6); }

/* glow heading inside card */
.card .card-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 6px 30px rgba(58,200,255,0.06), 0 0 24px rgba(255,120,255,0.02);
  margin-bottom: 8px;
}

/* ---------- NAV: underline + hamburger ---------- */
.site-header {
  position: relative;
  z-index: 60;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .24s ease, transform .18s ease;
}

/* nav items */
.main-nav a {
  color: rgba(255,255,255,0.86);
  font-weight: 700;
  letter-spacing: .02em;
  padding: 8px 10px;
  position: relative;
  transition: color .18s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -8px;
  height: 4px;
  background: linear-gradient(90deg,#ff3cac 0%, #3ac8ff 100%);
  border-radius: 12px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .32s cubic-bezier(.2,.9,.2,1), opacity .12s;
  opacity: 0;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); opacity: 1; }

/* hamburger */
.hamburger { width: 46px; height: 46px; display: inline-flex; align-items:center; justify-content:center; cursor: pointer; }
.hamburger .bar { width: 22px; height: 2px; background: #fff; display:block; border-radius:2px; transition: transform .18s ease; }

/* slide-in menu */
.mobile-menu { transform: translateX(100%); transition: transform .36s cubic-bezier(.2,.9,.2,1); }
.mobile-menu.open { transform: translateX(0%); }

/* ---------- small animations ---------- */
@keyframes vv-pop-in {
  0% { transform: scale(.86); opacity: 0; }
  60% { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes vv-hero-pop {
  0% { transform: translateY(8px) scale(.98); opacity: 0; filter: blur(6px); }
  100% { transform: translateY(0) scale(1); opacity: 1; filter: blur(0); }
}
@keyframes vv-fade-in-up {
  0% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes vv-count-pop {
  0% { transform: translateY(6px) scale(.98); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes vv-pulse {
  0% { transform: scale(.98); box-shadow: 0 6px 20px rgba(58,200,255,0.04); }
  50% { transform: scale(1.03); box-shadow: 0 18px 60px rgba(58,200,255,0.06); }
  100% { transform: scale(.98); box-shadow: 0 6px 20px rgba(58,200,255,0.04); }
}

/* ---------- Game frame + iframe styling ---------- */
.game-iframe, iframe[data-game], .game-frame {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 520px;
  margin: 18px auto;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8,10,12,0.6), rgba(8,10,12,0.9));
  border: 1px solid rgba(255,255,255,0.02);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 6px 22px rgba(58,200,255,0.02) inset;
}

/* small device adjustments */
@media (max-width: 900px) {
  .hero .title { font-size: 36px; }
  .game-iframe, iframe[data-game] { height: 380px; border-radius: 10px; }
  .vv-dot.big { display:none; }
  .vv-line { display:none; } /* lighten mobile */
}

/* ---------- focus + accessible animations ---------- */
a:focus, button:focus, .btn:focus { outline: none; box-shadow: 0 0 0 4px rgba(58,200,255,0.08); transform: translateY(-2px); }

/* prefer reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero .title, .btn, .card, .counter, .trailer-play, .decor-layer * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- utility classes ---------- */
.hidden { display: none !important; visibility: hidden !important; }
.visible { display: block !important; visibility: visible !important; }
.center { display:flex; align-items:center; justify-content:center; }

/* z-index helpers */
.z-top { z-index: 99999 !important; }
.z-mid { z-index: 60 !important; }
.z-back { z-index: 1 !important; }

/* ---------- advanced neon text / headings ---------- */
.neon-heading {
  font-weight: 900;
  letter-spacing: .08em;
  color: #fff;
  text-transform: uppercase;
  text-shadow:
    0 12px 30px rgba(0,0,0,0.55),
    0 0 34px rgba(58,200,255,0.06),
    0 0 18px rgba(255,120,255,0.02);
  position: relative;
  display: inline-block;
}
.neon-heading::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -12%;
  height: 6px;
  background: linear-gradient(90deg,#ff3cac 0%, #3ac8ff 100%);
  filter: blur(12px);
  opacity: .22;
  border-radius: 12px;
  transform-origin: center;
}

/* ---------- button micro-interactions (ripple fallback) ---------- */
.btn[data-ripple] { position: relative; overflow: hidden; }
.btn[data-ripple] .ripple {
  position: absolute;
  background: rgba(255,255,255,0.18);
  transform: scale(0);
  border-radius: 50%;
  pointer-events: none;
  animation: vv-ripple 600ms linear;
}
@keyframes vv-ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ---------- trailer container / modal safe styles ---------- */
.trailer-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  background: rgba(0,0,0,0.66);
  backdrop-filter: blur(8px);
}
.trailer-modal .tray {
  width: calc(100% - 48px);
  max-width: 1100px;
  height: 60vh;
  max-height: 720px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 120px rgba(0,0,0,0.65);
}

/* ---------- small visual helpers for search / filters ---------- */
.filter-badge {
  display:inline-block;
  padding:8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg,#ff3cac, #3ac8ff);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(58,200,255,0.06);
  transition: transform .18s ease;
}
.filter-badge:hover { transform: translateY(-4px); }

/* ---------- glow underline for special links ---------- */
.glow-link {
  position: relative;
  color: #fff;
  text-decoration: none;
}
.glow-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px; height: 6px;
  background: linear-gradient(90deg,#ff3cac,#3ac8ff);
  opacity: .14;
  filter: blur(8px);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .36s cubic-bezier(.2,.9,.2,1);
}
.glow-link:hover::after { transform: scaleX(1); opacity: .24; }

/* ---------- responsive utility tweaks ---------- */
@media (max-width: 1280px) {
  .hero .title { font-size: 48px; }
}
@media (max-width: 900px) {
  .hero { padding: 46px 12px; }
  .hero .title { font-size: 34px; }
  .main-nav { display: none; }
}

/* ---------- finisher: ensure decor does not block inputs ---------- */
.decor-layer, .fx-layer { pointer-events: none !important; user-select: none !important; }

/* ===================================================================
   End of animations.css
   =================================================================== */
/* ------------------ NAV POLISH: neon spacing + underline ------------------ */
.site-header .main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: flex-end;
  padding-right: 36px;
}

.main-nav a {
  position: relative;
  padding: 10px 6px;
  color: rgba(255,255,255,0.92);
  letter-spacing: .06em;
  font-weight: 800;
  text-transform: uppercase;
  transition: color .22s ease, transform .12s ease;
  -webkit-tap-highlight-color: transparent;
}

/* stronger neon underline with glow */
.main-nav a::after{
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -8px;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg,#ff3cac 0%, #3ac8ff 100%);
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  filter: blur(6px);
  transition: transform .36s cubic-bezier(.2,.9,.2,1), opacity .18s;
  z-index: -1;
}
.main-nav a:hover, .main-nav a:focus { color: #ffffff; transform: translateY(-2px); }
.main-nav a:hover::after, .main-nav a.active::after {
  transform: scaleX(1); opacity: .95;
}

/* make the active nav pill more obvious */
.main-nav a.active {
  box-shadow: 0 8px 28px rgba(58,200,255,0.06), inset 0 -6px 16px rgba(0,0,0,0.35);
  border-radius: 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

/* small screens: stacked nav -> hamburger fallback */
@media (max-width:900px){
  .site-header .main-nav { display:none; }
  .hamburger { display:inline-flex; }
}

/* ------------------ SCROLL REVEAL / NEON GLOW ------------------ */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(.996);
  transition: transform .72s cubic-bezier(.2,.9,.2,1), opacity .6s ease;
  will-change: transform, opacity;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* neon glow for headings when in view */
.neon-heading.in-view {
  animation: vv-neon-glow 2.6s ease-in-out both;
  text-shadow:
    0 12px 30px rgba(0,0,0,0.55),
    0 0 34px rgba(58,200,255,0.12),
    0 0 18px rgba(255,120,255,0.06);
}

@keyframes vv-neon-glow {
  0% { filter: blur(0px); text-shadow: 0 0 0 rgba(58,200,255,0); opacity:.6; transform: translateY(6px) }
  40% { text-shadow: 0 8px 40px rgba(58,200,255,0.18), 0 0 36px rgba(255,120,255,0.06); opacity:1; transform: translateY(0) }
  100% { text-shadow: 0 16px 60px rgba(58,200,255,0.14), 0 0 40px rgba(255,120,255,0.06); opacity:1; transform: translateY(0) }
}

/* feature card little slide and neon when in view */
.card.reveal.in-view {
  transform: translateY(0) scale(1);
  box-shadow: 0 28px 80px rgba(0,0,0,0.7), 0 8px 36px rgba(58,200,255,0.02);
  border: 1px solid rgba(58,200,255,0.03);
}

/* ------------------ PARTICLE DENSITY REDUCTION CONTROLS ------------------ */
/* default (desktop) - already exists */
/* low density mode - hide many micro-dots and lines */
body.low-density .vv-micro { opacity: 0.03 !important; transform: scale(.8) !important; display:block; }
body.low-density .vv-dot.small, body.low-density .vv-dot.big { opacity: 0.06 !important; transform: scale(.9) !important; }
body.low-density .vv-line { opacity: 0.06 !important; display:block; }
body.low-density .vv-dot:nth-child(3n) { display:none !important; } /* remove some dots */
body.low-density .vv-micro:nth-child(2n) { display:none !important; }

/* ultra-light mode (very small screens) */
@media (max-width:520px){
  body.low-density .vv-dot, body.low-density .vv-micro, body.low-density .vv-line, body.low-density .vv-ring { display:none !important; }
  .game-iframe, iframe[data-game] { height: 360px !important; }
}

/* small utility to temporarily highlight decor while testing */
.decor-layer.debug { z-index: 3 !important; opacity: 1 !important; }
/* ------------------ MOBILE-SPECIFIC OVERRIDES ------------------ */
/* Apply on smaller viewports to prevent layout breaking on phones */

@media (max-width: 900px) {
  /* Reduce decorative load */
  .decor-layer .vv-dot { transform: translateZ(0); opacity: .06 !important; }
  .decor-layer .vv-micro, .decor-layer .vv-line, .decor-layer .vv-ring { display: none !important; }

  /* Make header compact and touch-friendly */
  .site-header { padding: 10px 12px; }
  .site-header .logo { width: 56px; height: auto; margin-right: 12px; }
  .main-nav { display: none !important; } /* use hamburger on mobile */
  .hamburger { display: inline-flex !important; margin-left: 8px; }

  /* Hero adjustments */
  .hero { padding: 36px 12px; background-position: center; }
  .hero .title { font-size: 28px !important; line-height: 1.05; letter-spacing: .03em; }
  .hero .subtitle { font-size: 14px !important; margin-bottom: 14px; }

  /* Content width & spacing */
  .container, .hero .hero-inner, main, section {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }
  /* Make cards stack and readable */
  .card, .feature-card, .panel {
    margin: 12px 0 !important;
    padding: 14px !important;
    background: rgba(0,0,0,0.7) !important;
    border-radius: 12px !important;
  }

  /* Game iframe shrink for phones */
  .game-iframe, iframe[data-game] { height: 360px !important; max-width: 100% !important; }

  /* Buttons: bigger tap targets */
  .btn { padding: 12px 18px !important; border-radius: 12px !important; font-size: 14px !important; }

  /* Text sizing */
  h1 { font-size: 28px !important; }
  h2 { font-size: 20px !important; }
  p, .lead { font-size: 15px !important; line-height: 1.5 !important; }

  /* Ensure body scroll available */
  body, html { overflow-x: hidden !important; -webkit-overflow-scrolling: touch; }

  /* Reduce heavy shadows for perf */
  .card { box-shadow: 0 10px 24px rgba(0,0,0,0.6) !important; }

  /* Hide big decorative rings to avoid overlap on small screens */
  .vv-ring { display:none !important; }
}

/* Extra small screens */
@media (max-width: 520px) {
  .hero .title { font-size: 22px !important; }
  .game-iframe, iframe[data-game] { height: 300px !important; }
}
/* APPEND: final mobile polish */
@media (max-width:900px){
  .decor-layer { opacity:0.28 !important; pointer-events:none !important; }
  .decor-layer .vv-line, .decor-layer .vv-ring, .decor-layer .vv-micro { display:none !important; }
  .decor-layer .vv-dot { opacity:0.05 !important; transform:translateZ(0) !important; }
  .hero, .hero-inner { background-image:none !important; background:linear-gradient(180deg, rgba(4,4,6,0.98), rgba(8,8,12,0.98)) !important; }
  .site-header .logo img { max-width:72px !important; }
  .main-nav { display:none !important; }
}
