:root{
  --bg:#040609;
  --line:rgba(255,255,255,.12);
  --text:#f7f9fc;
  --muted:#9ca6b4;
  --orange:#ff6500;
  --orange2:#ff8b35;
  --green:#4fe188;
  --yellow:#ffd25a;
  --red:#ff5c55;
}

*{box-sizing:border-box;margin:0;padding:0}
html{background:var(--bg)}
body{
  min-width:320px;
  color:var(--text);
  background:radial-gradient(circle at 50% -5%,rgba(255,101,0,.08),transparent 38rem),var(--bg);
  font-family:Inter,sans-serif;
}
a{color:inherit;text-decoration:none}
button{font:inherit}

.topbar{
  width:min(calc(100% - 44px),1580px);
  min-height:76px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand,.brand img{width:66px;height:66px}
.brand img{display:block;object-fit:contain}
.topbar-actions{
  display:flex;
  align-items:center;
  gap:20px;
  font-size:.68rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.nav-link{
  position:relative;
  color:#d9dee6;
  transition:color .2s ease;
}
.nav-link:hover{color:var(--orange2)}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:1px;
  background:var(--orange);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s ease;
}
.nav-link:hover::after{transform:scaleX(1)}
.meeting-button{
  min-height:40px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(255,101,0,.7);
  border-radius:8px;
  background:linear-gradient(135deg,var(--orange2),var(--orange));
  color:#07090c;
  box-shadow:0 12px 28px rgba(255,101,0,.18);
}

.game-shell{
  width:min(calc(100% - 24px),1580px);
  margin:0 auto 24px;
  padding:15px;
  border:1px solid rgba(255,101,0,.5);
  border-radius:24px;
  background:rgba(5,8,12,.96);
  box-shadow:0 50px 140px rgba(0,0,0,.58);
}
.game-titlebar{
  padding:3px 3px 16px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
}
.construction-badge{
  width:max-content;
  margin-bottom:12px;
  padding:8px 12px;
  display:inline-flex;
  align-items:center;
  gap:9px;
  border:1px solid rgba(255,101,0,.48);
  border-radius:999px;
  background:rgba(255,101,0,.08);
  color:var(--orange2);
  font-size:.62rem;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.construction-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 14px rgba(255,101,0,.85);
  animation:constructionPulse 1.5s ease-in-out infinite;
}
@keyframes constructionPulse{
  50%{opacity:.35;transform:scale(.8)}
}
.title-copy p{
  color:var(--orange2);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.title-copy h1{
  margin-top:6px;
  font:800 clamp(2.9rem,4.5vw,5rem)/.88 "Barlow Condensed";
  text-transform:uppercase;
}
.title-copy span{display:block;margin-top:10px;color:#c7ced8;font-size:.86rem}

.scoreboard{display:grid;grid-template-columns:repeat(5,minmax(92px,1fr));gap:9px}
.scoreboard article{padding:12px;border:1px solid var(--line);border-radius:11px;text-align:center}
.scoreboard small{display:block;color:var(--muted);font-size:.52rem;font-weight:800;text-transform:uppercase}
.scoreboard strong{display:block;margin-top:5px;color:var(--orange2);font:800 1.78rem/1 "Barlow Condensed"}
.scoreboard i{font-size:.58rem;color:var(--muted);font-style:normal}

.stage{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  min-height:660px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
  background:#06090e;
}
#game-svg{display:block;width:100%;height:100%}

.shot-panel,.streak-panel,.release-guide{
  position:absolute;
  z-index:5;
  border:1px solid rgba(255,255,255,.14);
  border-radius:13px;
  background:rgba(3,5,8,.80);
  backdrop-filter:blur(10px);
}
.shot-panel{top:26px;left:26px;width:190px;padding:18px}
.shot-panel span,.streak-panel>span,.release-guide>span{
  color:var(--muted);
  font-size:.58rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.shot-panel strong{display:block;margin-top:10px;font:800 1.35rem/1 "Barlow Condensed";text-transform:uppercase}
.shot-panel small{display:block;margin-top:7px;color:#d2d7df;font-size:.67rem;text-transform:uppercase}

.streak-panel{top:26px;right:26px;width:270px;padding:17px 18px}
.streak-panel>div{display:flex;justify-content:space-between;gap:10px;margin-top:14px}
.streak-panel b{
  display:grid;width:46px;height:46px;place-items:center;
  border:1px solid rgba(255,255,255,.25);border-radius:50%;
  color:#c3cad4;font:800 1rem "Barlow Condensed";
}
.streak-panel b.active{border-color:var(--orange);color:#fff;box-shadow:0 0 18px rgba(255,101,0,.24)}

.release-guide{right:26px;bottom:26px;width:188px;padding:17px}
.release-guide>span{display:block;margin-bottom:13px}
.release-guide>div{margin-top:10px}
.release-guide b{display:block;font-size:.72rem;text-transform:uppercase}
.release-guide small{color:var(--muted);font-size:.6rem;text-transform:uppercase}
.perfect{color:var(--green)}.good{color:var(--yellow)}.bad{color:var(--red)}

.release-ui{
  position:absolute;
  z-index:6;
  left:50%;
  bottom:20px;
  display:grid;
  justify-items:center;
  gap:8px;
  transform:translateX(-50%);
  pointer-events:none;
}
.release-ring{position:relative;width:132px;height:132px;border-radius:50%;background:rgba(3,5,8,.62)}
.ring-base,.ring-green,.ring-progress{
  position:absolute;inset:0;border-radius:50%;
  mask:radial-gradient(circle,transparent 61%,#000 63%);
  -webkit-mask:radial-gradient(circle,transparent 61%,#000 63%);
}
.ring-base{background:conic-gradient(rgba(255,255,255,.24) 0 360deg)}
.ring-green{background:conic-gradient(transparent 0deg 252deg,var(--green) 252deg 300deg,transparent 300deg 360deg)}
.ring-progress{background:conic-gradient(var(--orange) var(--progress,0deg),transparent 0)}
.ring-center{
  position:absolute;inset:28px;border:1px solid rgba(255,255,255,.15);
  border-radius:50%;background:radial-gradient(circle at 50% 30%,#252b32,#090c10 72%);
}
.release-ui strong{font-size:.68rem;font-weight:800;letter-spacing:.11em;text-transform:uppercase}

.shoot-zone{position:absolute;inset:0;z-index:4;border:0;background:transparent;cursor:crosshair}

.overlay{
  position:absolute;inset:0;z-index:10;
  display:grid;place-content:center;justify-items:center;
  text-align:center;background:rgba(1,3,6,.72);backdrop-filter:blur(8px);
}
.overlay.hidden{opacity:0;visibility:hidden;pointer-events:none}
.overlay p{color:var(--orange2);font-size:.68rem;font-weight:800;text-transform:uppercase}
.overlay h2{margin-top:10px;font:800 clamp(3rem,5vw,5rem)/.92 "Barlow Condensed";text-transform:uppercase}
.overlay span{max-width:620px;margin-top:14px;color:var(--muted)}
.overlay button{
  margin-top:25px;min-height:52px;padding:0 27px;border:0;border-radius:9px;
  background:linear-gradient(135deg,var(--orange2),var(--orange));
  color:#07090c;font-weight:900;text-transform:uppercase;cursor:pointer;
}

.construction{
  padding:30px 24px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}
.construction-copy{
  max-width:760px;
}
.construction p{
  color:var(--orange2);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.construction h2{
  margin-top:7px;
  font:800 clamp(2rem,3vw,3.1rem)/1 "Barlow Condensed";
  text-transform:uppercase;
}
.construction span{
  display:block;
  margin-top:10px;
  color:var(--muted);
  line-height:1.7;
}
.construction-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}
.primary-cta,.secondary-cta{
  min-height:44px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.primary-cta{
  border:1px solid var(--orange);
  background:linear-gradient(135deg,var(--orange2),var(--orange));
  color:#07090c;
  box-shadow:0 14px 34px rgba(255,101,0,.18);
}
.secondary-cta{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.025);
  color:#dfe4eb;
}
.secondary-cta:hover{
  border-color:rgba(255,101,0,.65);
  color:var(--orange2);
}

footer{
  width:min(calc(100% - 44px),1580px);
  margin:auto;padding:0 4px 24px;
  display:flex;justify-content:space-between;
  color:#7f8793;font-size:.68rem;
}
footer div{display:flex;gap:20px}

body.shake .stage{animation:shake .22s linear}
@keyframes shake{
  25%{transform:translate(-3px,2px)}
  50%{transform:translate(3px,-2px)}
  75%{transform:translate(-2px,-1px)}
}

@media(max-width:1040px){
  .game-titlebar{align-items:flex-start;flex-direction:column}
  .scoreboard{width:100%}
}
@media(max-width:720px){
  .topbar{width:min(calc(100% - 18px),1580px)}
  .brand,.brand img{width:55px;height:55px}
  .topbar-actions .nav-link{display:none}
.topbar-actions{gap:8px}
.meeting-button{
  min-height:36px;
  padding:0 12px;
  font-size:.58rem;
}
  .game-shell{width:min(calc(100% - 10px),1580px);padding:7px}
  .game-titlebar{padding:6px 4px 10px;gap:12px}
  .title-copy h1{font-size:2.25rem}
  .title-copy span{font-size:.7rem}
  .scoreboard{grid-template-columns:repeat(5,1fr);gap:5px}
  .scoreboard article{min-width:0;padding:8px 2px}
  .scoreboard small{font-size:.42rem}
  .scoreboard strong{font-size:1.32rem}
  .stage{height:calc(100svh - 230px);min-height:590px;aspect-ratio:auto}
  #game-svg{width:100%;height:100%;object-fit:cover}
  .shot-panel{top:12px;left:12px;width:145px;padding:12px}
  .shot-panel strong{font-size:1rem}
  .streak-panel{top:12px;right:12px;width:150px;padding:11px}
  .streak-panel b{width:29px;height:29px;font-size:.72rem}
  .release-guide{display:none}
  .release-ui{bottom:18px}
  .release-ring{width:116px;height:116px}
  .construction{
    padding:24px 14px 15px;
    align-items:flex-start;
    flex-direction:column;
    gap:18px;
  }
  .construction h2{font-size:2rem}
  .construction-actions{
    width:100%;
    justify-content:flex-start;
  }
  .primary-cta,.secondary-cta{
    flex:1 1 calc(50% - 8px);
  }
  .construction-badge{
    margin-bottom:9px;
    padding:7px 10px;
    font-size:.54rem;
  }
  footer{display:none}
}




/* =========================================================
   V8 — PRODUCT-FIRST HERO
   ========================================================= */

.page{
  overflow:hidden;
}

.topbar{
  position:relative;
  z-index:20;
  min-height:88px;
}

.brand,
.brand img{
  width:78px;
  height:78px;
}

.topbar-status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border:1px solid rgba(255,101,0,.42);
  border-radius:999px;
  color:#dfe5ed;
  background:rgba(255,101,0,.055);
  font-size:.63rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.status-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 18px rgba(255,101,0,.9);
  animation:constructionPulse 1.5s ease-in-out infinite;
}

.construction.hero{
  position:relative;
  isolation:isolate;
  width:min(calc(100% - 44px),1580px);
  min-height:clamp(560px,72vh,790px);
  margin:0 auto 42px;
  padding:clamp(52px,7vw,104px) clamp(26px,6vw,90px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  overflow:hidden;
  border:1px solid rgba(255,101,0,.42);
  border-radius:30px;
  background:
    linear-gradient(115deg,rgba(255,101,0,.09),transparent 43%),
    radial-gradient(circle at 82% 48%,rgba(255,101,0,.14),transparent 27rem),
    rgba(4,7,10,.95);
  box-shadow:
    0 60px 160px rgba(0,0,0,.52),
    inset 0 1px rgba(255,255,255,.035);
}

.hero-glow{
  position:absolute;
  z-index:-1;
  left:-12%;
  bottom:-45%;
  width:70%;
  aspect-ratio:1;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,101,0,.16),transparent 68%);
  filter:blur(15px);
}

.hero-copy{
  position:relative;
  z-index:2;
  max-width:1080px;
}

.construction.hero p{
  margin:0 0 18px;
  color:var(--orange2);
  font-size:clamp(.76rem,.9vw,.95rem);
  font-weight:900;
  letter-spacing:.23em;
  text-transform:uppercase;
}

.construction.hero h1{
  max-width:1050px;
  margin:0;
  font:800 clamp(4rem,7.3vw,8.4rem)/.82 "Barlow Condensed",sans-serif;
  letter-spacing:-.025em;
  text-transform:uppercase;
}

.construction.hero h1 span{
  display:block;
  color:transparent;
  background:linear-gradient(110deg,#fff 2%,#ffb47e 48%,var(--orange) 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.hero-description{
  max-width:880px;
  margin-top:30px;
  color:#b2bbc8;
  font-size:clamp(1.12rem,1.55vw,1.48rem);
  line-height:1.62;
}

.hero-actions{
  margin-top:38px;
  justify-content:flex-start;
  gap:12px;
}

.hero-actions .primary-cta,
.hero-actions .secondary-cta{
  min-height:58px;
  padding:0 23px;
  border-radius:11px;
  font-size:.75rem;
}

.hero-actions .primary-cta{
  min-width:176px;
  box-shadow:
    0 18px 44px rgba(255,101,0,.24),
    inset 0 1px rgba(255,255,255,.25);
}

.hero-note{
  margin-top:28px;
  color:#707a87;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.hero-mark{
  position:absolute;
  right:-2%;
  bottom:-18%;
  z-index:0;
  opacity:.055;
  pointer-events:none;
}

.hero-mark span{
  color:#fff;
  font:800 clamp(15rem,28vw,34rem)/1 "Barlow Condensed",sans-serif;
  letter-spacing:-.08em;
}

/* Game becomes a secondary interactive section */
.game-shell{
  width:min(calc(100% - 44px),1380px);
  margin:0 auto 30px;
  padding:13px;
  border-color:rgba(255,101,0,.34);
  border-radius:22px;
}

.game-titlebar{
  align-items:center;
  padding:10px 8px 16px;
}

.title-copy p{
  font-size:.62rem;
}

.title-copy h2{
  margin-top:5px;
  font:800 clamp(2rem,3.2vw,3.6rem)/.9 "Barlow Condensed",sans-serif;
  text-transform:uppercase;
}

.title-copy span{
  margin-top:8px;
  font-size:.78rem;
}

.stage{
  min-height:0;
  aspect-ratio:16/9;
}

.scoreboard{
  grid-template-columns:repeat(5,minmax(82px,1fr));
}

.scoreboard article{
  padding:10px;
}

.scoreboard strong{
  font-size:1.55rem;
}

footer{
  width:min(calc(100% - 44px),1380px);
}

@media(max-width:1040px){
  .construction.hero{
    min-height:auto;
    padding-top:72px;
    padding-bottom:72px;
  }

  .construction.hero h1{
    max-width:900px;
  }

  .hero-mark{
    right:-9%;
    bottom:-10%;
  }
}

@media(max-width:720px){
  .topbar{
    min-height:72px;
  }

  .brand,
  .brand img{
    width:58px;
    height:58px;
  }

  .topbar-status{
    padding:8px 11px;
    font-size:.54rem;
  }

  .construction.hero{
    width:min(calc(100% - 16px),1580px);
    min-height:calc(100svh - 90px);
    margin-bottom:22px;
    padding:52px 22px 44px;
    align-items:center;
    border-radius:22px;
  }

  .construction.hero h1{
    font-size:clamp(3.6rem,18vw,6rem);
    line-height:.84;
  }

  .hero-description{
    margin-top:22px;
    font-size:1rem;
    line-height:1.55;
  }

  .hero-actions{
    margin-top:28px;
  }

  .hero-actions .primary-cta,
  .hero-actions .secondary-cta{
    flex:1 1 calc(50% - 8px);
    min-height:50px;
    padding:0 12px;
    font-size:.62rem;
  }

  .hero-note{
    font-size:.58rem;
    line-height:1.6;
  }

  .hero-mark{
    display:none;
  }

  .game-shell{
    width:min(calc(100% - 10px),1380px);
  }

  .title-copy h2{
    font-size:2.05rem;
  }

  .scoreboard{
    grid-template-columns:repeat(5,minmax(55px,1fr));
    gap:5px;
  }

  .scoreboard article{
    padding:8px 3px;
  }

  .scoreboard strong{
    font-size:1.25rem;
  }
}


/* =========================================================
   V9 — BALANCED HERO SCALE
   ========================================================= */

.construction.hero{
  min-height:clamp(470px,60vh,650px);
  padding:clamp(42px,5vw,72px) clamp(24px,5vw,72px);
  margin-bottom:30px;
}

.construction.hero h1{
  max-width:980px;
  font-size:clamp(3.1rem,5.35vw,6.2rem);
  line-height:.88;
}

.hero-description{
  max-width:820px;
  margin-top:24px;
  font-size:clamp(1rem,1.25vw,1.22rem);
  line-height:1.55;
}

.hero-actions{
  margin-top:30px;
}

.hero-actions .primary-cta,
.hero-actions .secondary-cta{
  min-height:50px;
  padding:0 18px;
  font-size:.68rem;
}

.hero-note{
  margin-top:22px;
}

.hero-mark{
  right:-4%;
  bottom:-25%;
}

.game-shell{
  margin-top:0;
}

@media(max-width:1040px){
  .construction.hero{
    min-height:520px;
    padding-top:58px;
    padding-bottom:58px;
  }

  .construction.hero h1{
    font-size:clamp(3rem,7vw,5.4rem);
    max-width:820px;
  }
}

@media(max-width:720px){
  .construction.hero{
    min-height:auto;
    padding:42px 20px 36px;
  }

  .construction.hero h1{
    font-size:clamp(3rem,14vw,4.8rem);
    line-height:.88;
  }

  .hero-description{
    margin-top:18px;
    font-size:.95rem;
  }

  .hero-actions{
    margin-top:24px;
  }

  .hero-actions .primary-cta,
  .hero-actions .secondary-cta{
    min-height:46px;
  }
}


/* =========================================================
   V10 — SMALLER, FULLY VISIBLE HERO WATERMARK
   ========================================================= */

.hero-mark{
  right:4%;
  bottom:50%;
  transform:translateY(50%);
  opacity:.07;
  width:clamp(260px,23vw,430px);
  height:clamp(260px,23vw,430px);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}

.hero-mark span{
  display:block;
  width:100%;
  color:#fff;
  font:800 clamp(10rem,14vw,17rem)/1 "Barlow Condensed",sans-serif;
  letter-spacing:-.07em;
  text-align:center;
  white-space:nowrap;
  transform:none;
}

/* Keep the full watermark inside the hero boundaries */
.construction.hero{
  padding-right:clamp(320px,30vw,500px);
}

@media(max-width:1180px){
  .construction.hero{
    padding-right:clamp(240px,26vw,360px);
  }

  .hero-mark{
    right:2%;
    width:clamp(210px,22vw,310px);
    height:clamp(210px,22vw,310px);
  }

  .hero-mark span{
    font-size:clamp(8rem,13vw,12rem);
  }
}

@media(max-width:900px){
  .construction.hero{
    padding-right:clamp(24px,5vw,72px);
  }

  .hero-mark{
    right:4%;
    bottom:8%;
    transform:none;
    width:180px;
    height:180px;
    opacity:.045;
  }

  .hero-mark span{
    font-size:7rem;
  }
}

@media(max-width:720px){
  .hero-mark{
    display:none;
  }
}


/* =========================================================
   V11 — MOBILE HERO SPACING FIX
   ========================================================= */

/*
  The generic rule ".construction span" was also affecting the
  highlighted words inside the H1. This explicitly removes its
  margin and large line-height.
*/
.construction.hero h1 span{
  display:block;
  margin:0;
  line-height:inherit;
}

/* Balanced wrapping on supported browsers */
.construction.hero h1{
  text-wrap:balance;
}

@media(max-width:720px){

  .construction.hero{
    width:calc(100% - 16px);
    padding:34px 20px 30px;
    margin-bottom:18px;
  }

  .construction.hero p{
    margin-bottom:16px;
    font-size:clamp(.82rem,4vw,1rem);
    letter-spacing:.18em;
  }

  .construction.hero h1{
    max-width:100%;
    margin:0;
    font-size:clamp(2.85rem,12.6vw,4rem);
    line-height:.86;
    letter-spacing:-.018em;
  }

  .construction.hero h1 span{
    margin:0;
    line-height:.86;
  }

  .hero-description{
    margin-top:22px;
    font-size:.94rem;
    line-height:1.5;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    width:100%;
    margin-top:24px;
  }

  .hero-actions .primary-cta,
  .hero-actions .secondary-cta{
    width:100%;
    min-width:0;
    min-height:48px;
    padding:0 10px;
    font-size:.61rem;
  }

  .hero-actions .primary-cta{
    grid-column:1 / -1;
  }

  .hero-note{
    margin-top:18px;
    font-size:.52rem;
    line-height:1.45;
    letter-spacing:.1em;
  }
}

@media(max-width:390px){

  .construction.hero{
    padding-left:17px;
    padding-right:17px;
  }

  .construction.hero h1{
    font-size:clamp(2.65rem,12vw,3.45rem);
  }

  .hero-actions .primary-cta,
  .hero-actions .secondary-cta{
    font-size:.57rem;
  }
}


/* =========================================================
   V12 — DEFINITIVE MOBILE HEADLINE FIX
   ========================================================= */

/*
  The title now contains only two dedicated spans. This prevents the
  generic `.construction span` rule and mobile browser line boxes from
  creating large vertical gaps.
*/
.hero-title{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0;
}

.hero-title > span{
  display:block;
  width:100%;
  margin:0 !important;
  padding:0;
  line-height:.88 !important;
}

.hero-title-top{
  color:#f7f7f8 !important;
  background:none !important;
  -webkit-text-fill-color:currentColor;
}

.hero-title-accent{
  color:transparent !important;
  background:linear-gradient(110deg,#fff 2%,#ffb47e 48%,var(--orange) 100%) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  -webkit-text-fill-color:transparent;
}

@media(max-width:720px){

  .hero-title{
    display:flex;
    gap:8px;
    font-size:clamp(2.75rem,11.7vw,3.75rem) !important;
    line-height:.86 !important;
    text-wrap:initial;
  }

  .hero-title > span{
    line-height:.86 !important;
  }

  .hero-title-top{
    max-width:100%;
  }

  .hero-title-accent{
    max-width:100%;
  }

  .hero-description{
    margin-top:20px;
  }
}

@media(max-width:420px){

  .hero-title{
    gap:6px;
    font-size:clamp(2.55rem,11.2vw,3.35rem) !important;
  }

  .hero-title > span{
    line-height:.87 !important;
  }
}


/* =========================================================
   V13 — DISABLE MOBILE TEXT SELECTION / LONG-PRESS MENU
   ========================================================= */

/*
  Prevents iPhone/Safari from selecting the SVG/game area and showing
  the Copy / Search context menu while the player is holding to shoot.
*/
.game-shell,
.game-shell *,
.stage,
.stage *,
svg,
svg *{
  -webkit-user-select:none;
  user-select:none;
  -webkit-touch-callout:none;
  -webkit-tap-highlight-color:transparent;
}

.stage,
.stage svg{
  touch-action:none;
  cursor:pointer;
}

/* Keep links and normal page text usable outside the game */
a,
button,
input,
textarea{
  -webkit-user-select:auto;
  user-select:auto;
}
