:root {
  --sg-cyan: #f5c84c;
  --sg-pink: #ff8a4d;
  --sg-gold: #f5c84c;
  --sg-cream: #f4efe1;
  --sg-ink: #070b0e;
  --sg-navy: #171c1f;
}

body.ewtl-gate-active {
  overflow: hidden;
  background: var(--sg-ink);
}

body.ewtl-gate-active > #root {
  visibility: hidden !important;
  pointer-events: none !important;
}

body.ewtl-gate-active > :not(#ewtl-start-gate):not(script):not(style):not(link):not(noscript) {
  visibility: hidden !important;
  pointer-events: none !important;
}

body.ewtl-gate-active > #ewtl-cinematic-home {
  display: none !important;
}

#ewtl-start-gate[hidden] {
  display: none !important;
}

.sg-gate {
  position: fixed;
  inset: 0;
  z-index: 1200;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  color: #fff;
  background: #070b0e;
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  isolation: isolate;
}

.sg-television,
.sg-cabinet {
  width: 100%;
  height: 100%;
}

.sg-cabinet {
  position: relative;
  display: grid;
  grid-template-rows: clamp(36px, 5.2vh, 60px) minmax(0, 1fr) clamp(76px, 11.5vh, 124px);
  gap: clamp(7px, 1.1vh, 13px);
  padding-top: max(clamp(8px, 1.15vw, 18px), env(safe-area-inset-top));
  padding-right: max(clamp(8px, 1.15vw, 18px), env(safe-area-inset-right));
  padding-bottom: max(clamp(8px, 1.15vw, 18px), env(safe-area-inset-bottom));
  padding-left: max(clamp(8px, 1.15vw, 18px), env(safe-area-inset-left));
  border: 1px solid rgba(222, 193, 123, 0.38);
  background:
    linear-gradient(90deg, rgba(255, 138, 77, 0.07), transparent 15% 85%, rgba(245, 200, 76, 0.06)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 7px),
    linear-gradient(145deg, #1d1b20 0%, #08080c 38%, #19171a 67%, #050609 100%);
  box-shadow: inset 0 0 0 2px #020205, inset 0 0 70px rgba(0, 0, 0, 0.8);
}

.sg-cabinet::before {
  position: absolute;
  inset: 0;
  z-index: 8;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 0 110px rgba(0, 0, 0, 0.42);
}

.sg-tv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 0 clamp(8px, 1.4vw, 22px);
  border-bottom: 1px solid rgba(222, 193, 123, 0.25);
}

.sg-tv-brand {
  color: var(--sg-cream);
  font: 400 clamp(10px, 1vw, 15px) "Michroma", sans-serif;
  letter-spacing: 0.23em;
  text-shadow: -2px 0 12px rgba(245, 200, 76, 0.36), 2px 0 12px rgba(255, 138, 77, 0.32);
}

.sg-tv-model {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.48);
  font: 400 clamp(7px, 0.7vw, 10px) "Michroma", sans-serif;
  letter-spacing: 0.17em;
}

.sg-tv-model i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sg-pink);
  box-shadow: 0 0 5px #fff, 0 0 14px var(--sg-pink);
  animation: sg-led 1.8s ease-in-out infinite;
}

.sg-screen-frame {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: clamp(7px, 1vw, 14px);
  overflow: hidden;
  border: 1px solid rgba(222, 193, 123, 0.45);
  border-radius: clamp(18px, 2.6vw, 42px);
  background: linear-gradient(145deg, #81704b 0%, #1c1b1e 7%, #030407 50%, #252127 93%, #b99a5e 100%);
  box-shadow:
    inset 0 0 0 3px rgba(0, 0, 0, 0.88),
    inset 0 0 28px #000,
    0 0 36px rgba(245, 200, 76, 0.08),
    0 0 54px rgba(255, 138, 77, 0.07);
}

.sg-screen-frame::before,
.sg-screen-frame::after {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 2px;
  height: 63%;
  content: "";
  transform: translateY(-50%);
}

.sg-screen-frame::before {
  left: 4px;
  background: var(--sg-cyan);
  box-shadow: 0 0 16px 4px rgba(245, 200, 76, 0.43);
}

.sg-screen-frame::after {
  right: 4px;
  background: var(--sg-pink);
  box-shadow: 0 0 16px 4px rgba(255, 138, 77, 0.43);
}

.sg-screen {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: clamp(14px, 2.15vw, 34px) / clamp(12px, 3.7vw, 54px);
  background: #050814;
  box-shadow:
    inset 0 0 0 4px rgba(0, 0, 0, 0.72),
    inset 0 0 75px rgba(0, 0, 0, 0.88),
    inset 0 0 160px rgba(0, 0, 0, 0.54),
    0 0 20px rgba(245, 200, 76, 0.12);
}

.sg-screen::before {
  position: absolute;
  inset: 0;
  z-index: 5;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 50% 46%, transparent 48%, rgba(0, 0, 0, 0.25) 72%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(245, 200, 76, 0.09), transparent 11% 89%, rgba(255, 138, 77, 0.1));
  box-shadow: inset 0 0 38px #000;
}

.sg-picture {
  position: absolute;
  inset: -2.5%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 11, 14, 0.66), rgba(7, 11, 14, 0.18) 45%, rgba(255, 138, 77, 0.12)),
    linear-gradient(180deg, rgba(1, 3, 10, 0.08), rgba(1, 3, 10, 0.72)),
    url("/ewtl/theme/hero-yacht.webp") 50% 49% / cover no-repeat;
  filter: saturate(1.22) contrast(1.09) brightness(0.78);
  transform: scale(1.025);
}

.sg-picture::after {
  position: absolute;
  right: -10%;
  bottom: -28%;
  left: -10%;
  height: 55%;
  content: "";
  opacity: 0.48;
  background:
    repeating-linear-gradient(90deg, rgba(245, 200, 76, 0.55) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255, 138, 77, 0.55) 0 1px, transparent 1px 34px);
  transform: perspective(320px) rotateX(64deg);
  transform-origin: 50% 100%;
  mask-image: linear-gradient(#000, transparent 92%);
}

.sg-static {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.16;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 37% 41%, transparent 0 1px, rgba(255, 255, 255, 0.32) 1px 2px, transparent 2px 4px),
    repeating-linear-gradient(93deg, rgba(245, 200, 76, 0.12) 0 1px, transparent 1px 4px, rgba(255, 138, 77, 0.1) 4px 5px, transparent 5px 9px);
  background-size: 7px 9px, 13px 17px;
  mix-blend-mode: screen;
  animation: sg-noise 0.16s steps(2, end) infinite;
}

.sg-static::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, 0.09) 48%, transparent 55%);
  transform: translateX(-110%);
  animation: sg-reflection 7s ease-in-out infinite;
}

.sg-scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.34;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.08) 0 2px, rgba(245, 200, 76, 0.04) 2px 3px, rgba(0, 0, 0, 0.38) 3px 5px);
  background-size: 100% 5px;
  animation: sg-scan 8s linear infinite;
}

.sg-tracking {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.sg-tracking i {
  position: absolute;
  right: -3%;
  left: -3%;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--sg-cyan) 15%, #fff 48%, var(--sg-pink) 85%, transparent);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 4px 14px rgba(245, 200, 76, 0.4);
  animation: sg-tracking 6.8s linear infinite;
}

.sg-tracking i:nth-child(2) { animation-delay: -2.3s; }
.sg-tracking i:nth-child(3) { animation-delay: -4.8s; }

.sg-screen-content {
  position: relative;
  z-index: 6;
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(34px, 6vh, 82px) clamp(24px, 7vw, 120px);
  overflow: hidden;
  text-align: center;
}

.sg-broadcast,
.sg-screen-code {
  position: absolute;
  right: clamp(18px, 3vw, 48px);
  left: clamp(18px, 3vw, 48px);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font: 400 clamp(6px, 0.58vw, 9px) "Michroma", sans-serif;
  letter-spacing: 0.18em;
  text-shadow: -1px 0 7px var(--sg-cyan), 1px 0 7px var(--sg-pink);
}

.sg-broadcast { top: clamp(18px, 3vh, 34px); }
.sg-screen-code { bottom: clamp(16px, 2.7vh, 30px); }

.sg-broadcast span:last-child::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  content: "";
  background: var(--sg-pink);
  box-shadow: 0 0 11px var(--sg-pink);
}

.sg-kicker {
  color: var(--sg-cyan);
  font: 400 clamp(7px, 0.72vw, 11px) "Michroma", sans-serif;
  letter-spacing: 0.34em;
  text-shadow: -2px 0 12px rgba(245, 200, 76, 0.8), 2px 0 8px rgba(255, 138, 77, 0.62);
  margin-bottom: clamp(15px, 2.4vh, 27px);
}

.sg-screen h1 {
  position: relative;
  max-width: min(980px, 88vw);
  margin: 0;
  font: italic 600 clamp(42px, min(7.2vw, 11.5vh), 102px) / 0.88 "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: -3px 0 14px rgba(245, 200, 76, 0.32), 3px 0 14px rgba(255, 138, 77, 0.36), 0 8px 28px rgba(0, 0, 0, 0.7);
  animation: sg-title-shift 7s steps(1, end) infinite;
}

.sg-screen h1::before,
.sg-screen h1::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: attr(data-text);
  opacity: 0;
  pointer-events: none;
}

.sg-screen h1::before {
  color: var(--sg-cyan);
  transform: translateX(-5px);
  animation: sg-copy-glitch 6.2s steps(1, end) infinite;
}

.sg-screen h1::after {
  color: var(--sg-pink);
  transform: translateX(5px);
  animation: sg-copy-glitch 6.2s 80ms steps(1, end) infinite reverse;
}

.sg-screen p {
  max-width: 540px;
  margin: clamp(10px, 1.7vh, 18px) 0 clamp(18px, 2.8vh, 30px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(10px, 1vw, 15px);
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px #000;
}

.sg-start {
  position: relative;
  display: inline-flex;
  width: min(310px, calc(100% - 16px));
  min-width: min(230px, calc(100% - 16px));
  min-height: clamp(50px, 6.5vh, 66px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0 26px;
  color: #fff;
  background: linear-gradient(90deg, rgba(245, 200, 76, 0.3), rgba(7, 11, 14, 0.94) 29% 71%, rgba(255, 138, 77, 0.3));
  box-shadow: -10px 0 28px rgba(245, 200, 76, 0.24), 10px 0 28px rgba(255, 138, 77, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.34);
  font: 700 clamp(8px, 0.76vw, 11px) "Michroma", sans-serif;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.sg-start::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--sg-cyan), var(--sg-gold), var(--sg-pink));
}

.sg-start:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: -16px 0 36px rgba(245, 200, 76, 0.38), 16px 0 36px rgba(255, 138, 77, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.sg-start:active { transform: translateY(1px) scale(0.99); }
.sg-start:focus-visible { outline: 2px solid var(--sg-gold); outline-offset: 5px; }

.sg-start-light {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sg-cyan);
  box-shadow: 0 0 8px #fff, 0 0 18px var(--sg-cyan);
  animation: sg-led 1.5s ease-in-out infinite;
}

.sg-start .ph { color: var(--sg-pink); font-size: 17px; }

.sg-tv-deck {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto minmax(140px, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2.5vw, 42px);
  min-width: 0;
  min-height: 0;
  padding: 0 clamp(12px, 2vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(222, 193, 123, 0.23);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.24));
}

.sg-power {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.34);
  font: 400 clamp(5px, 0.5vw, 8px) "Michroma", sans-serif;
  letter-spacing: 0.13em;
}

.sg-power i {
  width: clamp(11px, 1.2vw, 17px);
  height: clamp(11px, 1.2vw, 17px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: var(--sg-cyan);
  box-shadow: inset 0 0 5px #fff, 0 0 13px var(--sg-cyan);
}

.sg-dial {
  position: relative;
  display: grid;
  width: clamp(43px, 5.2vh, 64px);
  height: clamp(43px, 5.2vh, 64px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: conic-gradient(from 20deg, #2c2b30, #d1bb85, #242329, #777069, #2c2b30);
  box-shadow: inset 0 0 0 4px #111116, inset 0 0 0 5px rgba(222, 193, 123, 0.42), 0 5px 10px rgba(0, 0, 0, 0.6);
}

.sg-dial b {
  color: rgba(255, 255, 255, 0.66);
  font: 400 clamp(5px, 0.5vw, 8px) "Michroma", sans-serif;
}

.sg-dial i {
  position: absolute;
  top: 7px;
  width: 2px;
  height: 9px;
  border-radius: 2px;
  background: var(--sg-pink);
  box-shadow: 0 0 5px var(--sg-pink);
}

.sg-speaker {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: clamp(5px, 0.65vw, 10px);
  height: 46%;
  min-height: 24px;
  padding: 0 clamp(8px, 1.5vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.16);
}

.sg-speaker i {
  display: block;
  width: 100%;
  height: 70%;
  border-radius: 999px;
  background: repeating-linear-gradient(0deg, #020204 0 2px, #3a3739 2px 3px, #09090c 3px 5px);
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.08);
}

.sg-signature {
  color: rgba(222, 193, 123, 0.68);
  font: italic 600 clamp(13px, 1.6vw, 24px) "Cormorant Garamond", serif;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.sg-footnote {
  position: absolute;
  right: clamp(10px, 1.5vw, 24px);
  bottom: max(4px, env(safe-area-inset-bottom));
  z-index: 9;
  margin: 0;
  color: rgba(255, 255, 255, 0.25);
  font: 400 clamp(4px, 0.42vw, 7px) "Michroma", sans-serif;
  letter-spacing: 0.16em;
  pointer-events: none;
}

.ewtl-gate-leaving .sg-screen { animation: sg-poweroff 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.ewtl-gate-leaving .sg-gate { animation: sg-gate-out 620ms ease forwards; }
.ewtl-gate-leaving .sg-start { pointer-events: none; }

@keyframes sg-led { 50% { opacity: 0.45; transform: scale(0.82); } }
@keyframes sg-flicker { 0%, 9%, 11%, 49%, 51%, 100% { filter: brightness(1); } 10%, 50% { filter: brightness(0.92); } }
@keyframes sg-noise { 0% { transform: translate(0, 0); } 25% { transform: translate(-2%, 1%); } 50% { transform: translate(1%, -2%); } 75% { transform: translate(2%, 2%); } 100% { transform: translate(-1%, 0); } }
@keyframes sg-scan { to { background-position: 0 100px; } }
@keyframes sg-reflection { 0%, 63% { transform: translateX(-115%); } 83%, 100% { transform: translateX(120%); } }
@keyframes sg-tracking { 0%, 86% { top: -4%; opacity: 0; } 87% { opacity: 0.72; } 94% { top: 104%; opacity: 0.2; } 95%, 100% { top: 104%; opacity: 0; } }
@keyframes sg-signal { 0%, 91%, 93%, 95%, 100% { transform: translate(0, 0) scale(1.025); } 92% { transform: translate(-5px, 2px) scale(1.03); filter: saturate(1.6) contrast(1.15) brightness(0.83); } 94% { transform: translate(4px, -1px) scale(1.025); } }
@keyframes sg-title-shift { 0%, 89%, 91%, 93%, 100% { transform: translateX(0); } 90% { transform: translateX(-3px); } 92% { transform: translateX(3px); } }
@keyframes sg-copy-glitch { 0%, 88%, 91%, 94%, 100% { opacity: 0; clip-path: inset(0 0 100% 0); } 89% { opacity: 0.72; clip-path: inset(15% 0 56% 0); } 90% { opacity: 0.5; clip-path: inset(67% 0 10% 0); } 92% { opacity: 0.62; clip-path: inset(42% 0 37% 0); } 93% { opacity: 0.38; clip-path: inset(7% 0 77% 0); } }
@keyframes sg-poweroff { 0% { transform: scale(1); filter: brightness(1); } 48% { transform: scaleY(0.025) scaleX(1); filter: brightness(2.4); } 72% { transform: scaleY(0.012) scaleX(0.06); filter: brightness(4); } 100% { opacity: 0; transform: scale(0); filter: brightness(5); } }
@keyframes sg-gate-out { 72% { background: #070b0e; } 100% { opacity: 0; background: #000; } }

@media (max-width: 640px) {
  .sg-cabinet {
    grid-template-rows: clamp(34px, 5.2dvh, 40px) minmax(0, 1fr) clamp(68px, 10dvh, 78px);
    gap: 6px;
    padding-top: max(6px, env(safe-area-inset-top));
    padding-right: max(6px, env(safe-area-inset-right));
    padding-bottom: max(6px, env(safe-area-inset-bottom));
    padding-left: max(6px, env(safe-area-inset-left));
  }
  .sg-tv-header { padding: 0 8px; }
  .sg-tv-brand { font-size: 8px; letter-spacing: 0.18em; }
  .sg-tv-model { font-size: 5px; gap: 5px; }
  .sg-tv-model i { width: 5px; height: 5px; }
  .sg-screen-frame { padding: 6px; border-radius: 18px; }
  .sg-screen { border-radius: 13px / 21px; }
  .sg-picture { background-position: 58% 50%; }
  .sg-screen-content { padding: clamp(40px, 7dvh, 49px) clamp(14px, 4.8vw, 18px) clamp(35px, 6dvh, 43px); }
  .sg-broadcast, .sg-screen-code { right: 15px; left: 15px; font-size: 5px; letter-spacing: 0.12em; }
  .sg-broadcast { top: 17px; }
  .sg-screen-code { bottom: 15px; }
  .sg-kicker { font-size: 6px; letter-spacing: 0.25em; }
  .sg-kicker { margin-bottom: 18px; }
  .sg-screen h1 { max-width: min(350px, 90vw); font-size: clamp(38px, min(13vw, 8.5vh), 58px); line-height: 0.89; }
  .sg-screen p { max-width: 285px; margin: 12px 0 20px; font-size: 9px; }
  .sg-start { width: min(216px, calc(100% - 12px)); min-width: 0; min-height: 50px; font-size: 7px; }
  .sg-tv-deck { grid-template-columns: auto auto auto 1fr; gap: 10px; padding: 0 9px; }
  .sg-power span, .sg-signature { display: none; }
  .sg-dial { width: 42px; height: 42px; }
  .sg-speaker { grid-template-columns: repeat(6, 1fr); gap: 5px; padding: 0 7px; }
  .sg-speaker i:nth-child(n + 7) { display: none; }
  .sg-footnote { display: none; }
}

@media (max-height: 560px) {
  .sg-cabinet {
    grid-template-rows: 30px minmax(0, 1fr) 58px;
    gap: 4px;
    padding-top: max(4px, env(safe-area-inset-top));
    padding-right: max(4px, env(safe-area-inset-right));
    padding-bottom: max(4px, env(safe-area-inset-bottom));
    padding-left: max(4px, env(safe-area-inset-left));
  }
  .sg-tv-brand { font-size: 7px; }
  .sg-screen-content { padding-block: 27px; }
  .sg-broadcast { top: 9px; }
  .sg-screen-code { bottom: 8px; }
  .sg-kicker { margin-bottom: 8px; }
  .sg-screen h1 { font-size: clamp(32px, min(7vw, 13vh), 66px); }
  .sg-screen p { margin: 7px 0 10px; }
  .sg-start { width: min(205px, calc(100% - 12px)); min-width: 0; min-height: 42px; }
  .sg-dial { width: 35px; height: 35px; }
}

@media (max-width: 360px) {
  .sg-tv-model { display: none; }
  .sg-screen-content { padding-right: 12px; padding-left: 12px; }
  .sg-screen h1 { max-width: 92vw; font-size: clamp(34px, 12.5vw, 45px); }
  .sg-screen p { max-width: 255px; }
  .sg-start { width: min(210px, 90%); padding-right: 16px; padding-left: 16px; }
  .sg-screen-code span:last-child { display: none; }
}

@media (max-height: 430px) {
  .sg-screen-content { padding-top: 18px; padding-bottom: 18px; }
  .sg-screen p, .sg-screen-code { display: none; }
  .sg-kicker { margin-bottom: 6px; }
  .sg-screen h1 { font-size: clamp(30px, min(7vw, 14vh), 58px); }
  .sg-start { min-height: 42px; margin-top: 10px; }
}

@media (min-width: 1800px) and (min-height: 900px) {
  .sg-screen-content { padding-right: clamp(120px, 10vw, 220px); padding-left: clamp(120px, 10vw, 220px); }
  .sg-screen h1 { max-width: 1100px; }
}

@media (prefers-reduced-motion: reduce) {
  .sg-tv-model i,
  .sg-screen,
  .sg-picture,
  .sg-static,
  .sg-static::after,
  .sg-scanlines,
  .sg-tracking i,
  .sg-screen h1,
  .sg-screen h1::before,
  .sg-screen h1::after,
  .sg-start-light { animation: none; }
  .sg-static { opacity: 0.07; }
  .ewtl-gate-leaving .sg-screen,
  .ewtl-gate-leaving .sg-gate { animation-duration: 120ms; }
}
