:root {
  --bg: #070318;
  --bg-deep: #020211;
  --panel: rgba(19, 10, 52, 0.72);
  --panel-strong: rgba(30, 13, 75, 0.88);
  --purple: #a855f7;
  --purple-bright: #d946ef;
  --blue: #123cff;
  --cyan: #22d3ee;
  --pink: #ff2ddf;
  --text: #f6f2ff;
  --muted: #b9aed9;
  --line: rgba(255, 255, 255, 0.15);
  --shadow: 0 0 40px rgba(168, 85, 247, 0.35), 0 0 80px rgba(34, 211, 238, 0.16);
  --radius-large: 32px;
  --radius-medium: 22px;
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(168, 85, 247, 0.22), transparent 32rem),
    radial-gradient(circle at 90% 15%, rgba(18, 60, 255, 0.22), transparent 28rem),
    linear-gradient(135deg, var(--bg-deep), var(--bg) 45%, #10062a);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

code {
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 0.45rem;
}

#starCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  opacity: 0.75;
}

.page-glow {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.42;
  pointer-events: none;
  z-index: -2;
  animation: floatGlow 9s ease-in-out infinite alternate;
}

.page-glow-one {
  top: 5rem;
  left: -8rem;
  background: var(--pink);
}

.page-glow-two {
  right: -9rem;
  bottom: 5rem;
  background: var(--cyan);
  animation-delay: -3s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.8rem 1rem;
  background: rgba(8, 4, 30, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  font-family: var(--font-display);
  font-weight: 900;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--purple), var(--blue) 55%, var(--cyan));
  box-shadow: 0 0 18px rgba(217, 70, 239, 0.72), inset 0 0 16px rgba(255, 255, 255, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.brand small {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  padding: 0.75rem 0.95rem;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  text-shadow: 0 0 14px var(--cyan);
  outline: none;
}

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 99px;
}

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  min-height: calc(100vh - 6rem);
  gap: 3rem;
  padding: 5rem 0 4rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(34, 211, 238, 0.8);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 9vw, 7.4rem);
  letter-spacing: -0.08em;
}

h1 span,
h2 span {
  color: transparent;
  background: linear-gradient(90deg, #fff, var(--cyan), var(--pink), var(--purple));
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 18px rgba(217, 70, 239, 0.42));
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  letter-spacing: -0.055em;
}

.hero-text,
.section-heading p,
.app-copy p,
.feature-card p,
.policy-text p,
.support-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 650px;
  margin: 1.4rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.15rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.primary-button {
  color: #080216;
  border: 0;
  background: linear-gradient(135deg, var(--cyan), #ffffff 45%, var(--pink));
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.48), 0 0 38px rgba(255, 45, 223, 0.28);
}

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

.ghost-button {
  min-height: 2.85rem;
  margin-top: 0.4rem;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.ghost-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  outline: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 650px;
  margin-top: 2.1rem;
}

.stats-row div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  font-family: var(--font-display);
  color: #ffffff;
}

.stats-row span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.hero-visual:focus-visible,
.app-card:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.9);
  outline-offset: 10px;
}

.phone-frame {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 0.52;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05) 26%, rgba(0, 0, 0, 0.72));
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.5), 0 0 90px rgba(18, 60, 255, 0.32), inset 0 0 18px rgba(255, 255, 255, 0.12);
}

.phone-notch {
  position: absolute;
  top: 1.15rem;
  left: 50%;
  z-index: 2;
  width: 6rem;
  height: 1.2rem;
  border-radius: 999px;
  background: #02020b;
  transform: translateX(-50%);
}

.tunnel-preview {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2.25rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 55%, rgba(34, 211, 238, 0.35), transparent 18%),
    radial-gradient(circle at center, rgba(217, 70, 239, 0.25), #09031f 58%, #03020d);
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.tunnel-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(from 45deg, rgba(34, 211, 238, 0.18) 0 8deg, transparent 8deg 18deg, rgba(217, 70, 239, 0.18) 18deg 25deg, transparent 25deg 40deg);
  mix-blend-mode: screen;
  animation: tunnelSpin 10s linear infinite;
}

.tunnel-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 2px solid rgba(34, 211, 238, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--cyan), inset 0 0 18px rgba(217, 70, 239, 0.5);
  transform: translate(-50%, -50%);
  animation: pulseRing 2.5s ease-in-out infinite;
}

.ring-one { width: 68%; height: 38%; }
.ring-two { width: 46%; height: 26%; animation-delay: -0.7s; border-color: rgba(255, 45, 223, 0.86); }
.ring-three { width: 24%; height: 14%; animation-delay: -1.35s; }

.runner-crown {
  position: absolute;
  left: 50%;
  top: 52%;
  display: grid;
  place-items: center;
  width: 4.7rem;
  height: 4.7rem;
  color: #050212;
  font-size: 2.8rem;
  border-radius: 1.45rem;
  background: linear-gradient(135deg, #ffffff, var(--cyan) 45%, var(--pink));
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.45), 0 0 35px rgba(217, 70, 239, 0.75);
  transform: translate(-50%, -50%) rotate(-8deg);
  animation: crownFloat 2.8s ease-in-out infinite;
}

.coin,
.obstacle {
  position: absolute;
  border-radius: 999px;
}

.coin {
  width: 1.1rem;
  height: 1.1rem;
  background: #ffe45e;
  box-shadow: 0 0 17px #ffe45e;
}

.coin-one { top: 26%; left: 23%; }
.coin-two { right: 21%; bottom: 28%; }

.obstacle {
  width: 4.6rem;
  height: 0.85rem;
  background: var(--pink);
  box-shadow: 0 0 16px var(--pink);
  animation: obstaclePulse 1.5s ease-in-out infinite alternate;
}

.obstacle-one { top: 34%; right: 14%; transform: rotate(26deg); }
.obstacle-two { left: 12%; bottom: 34%; transform: rotate(-18deg); background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }

.click-hint {
  margin: 1.2rem 0 0;
  color: var(--cyan);
  text-align: center;
  font-weight: 800;
  text-shadow: 0 0 16px rgba(34, 211, 238, 0.9);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.app-section,
.features-section,
.gallery-preview,
.privacy-section,
.support-section {
  padding: 4rem 0;
}

.app-card,
.glass-panel,
.support-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.app-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: var(--shadow);
}

.app-icon-wrap {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 280px;
  border-radius: 2rem;
  background:
    radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(168, 85, 247, 0.32), rgba(18, 60, 255, 0.22));
}

.app-icon {
  display: grid;
  place-items: center;
  width: 8.7rem;
  aspect-ratio: 1;
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55), transparent 18%),
    linear-gradient(135deg, #2e1065, #123cff 46%, #d946ef 100%);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.95), 0 0 50px rgba(34, 211, 238, 0.5), inset 0 0 30px rgba(255, 255, 255, 0.18);
}

.app-icon span {
  font-size: 5.3rem;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.85), 0 0 35px var(--pink);
}

.neon-badge {
  margin-top: 1rem;
  padding: 0.55rem 0.85rem;
  color: #080216;
  font-weight: 900;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.7);
}

.app-copy h3,
.feature-card h3 {
  font-size: 1.35rem;
}

.app-copy p {
  margin: 0.8rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  min-height: 230px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.065);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: rgba(217, 70, 239, 0.2);
  filter: blur(20px);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 70, 239, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.feature-card span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08), 0 0 18px rgba(34, 211, 238, 0.18);
  font-size: 1.35rem;
}

.preview-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.preview-item,
.gallery-thumb,
.main-gallery-image {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.preview-item {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius-medium);
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.preview-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.preview-item img,
.main-gallery-image img,
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder-shot {
  display: grid;
  place-items: center;
  min-height: inherit;
  padding: 1rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(217, 70, 239, 0.22), rgba(18, 60, 255, 0.22)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 26px);
}

.placeholder-shot strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  color: #ffffff;
}

.placeholder-shot span {
  color: var(--muted);
}

.glass-panel,
.support-card {
  padding: clamp(1.3rem, 3vw, 2.1rem);
}

.policy-text {
  max-width: 920px;
}

.policy-text a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(34, 211, 238, 0.45);
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.13), rgba(217, 70, 239, 0.13)),
    rgba(255, 255, 255, 0.055);
}

.support-card p {
  max-width: 760px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 2rem auto 0;
  padding: 2rem 0 2.4rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  gap: 1rem;
}

.site-footer a {
  color: var(--text);
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 100;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 17, 0.76);
  backdrop-filter: blur(12px);
}

.modal-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(20, 8, 55, 0.96), rgba(8, 4, 30, 0.96));
  box-shadow: 0 0 90px rgba(168, 85, 247, 0.38);
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-header {
  margin-right: 3.2rem;
}

.main-gallery-image {
  display: grid;
  place-items: center;
  min-height: 430px;
  margin: 1.4rem 0 1rem;
  border-radius: 1.4rem;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-thumb {
  min-height: 130px;
  border-radius: 1rem;
  cursor: pointer;
  opacity: 0.68;
  transition: opacity 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.75);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  z-index: 120;
  width: max-content;
  max-width: calc(100% - 2rem);
  padding: 0.9rem 1.1rem;
  color: #09031f;
  font-weight: 800;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.65);
  transform: translate(-50%, 150%);
  transition: transform 0.25s ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(2rem, -1.2rem, 0) scale(1.08); }
}

@keyframes tunnelSpin {
  to { transform: rotate(360deg); }
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.92); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes crownFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-8deg) scale(1); }
  50% { transform: translate(-50%, -56%) rotate(6deg) scale(1.05); }
}

@keyframes obstaclePulse {
  from { opacity: 0.65; }
  to { opacity: 1; }
}

@media (max-width: 980px) {
  .hero,
  .app-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .feature-grid,
  .preview-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-frame {
    width: min(82vw, 340px);
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 1.6rem;
  }

  .menu-button {
    display: flex;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.75rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    background: rgba(8, 4, 30, 0.94);
    backdrop-filter: blur(18px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .stats-row,
  .support-card,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .support-mail-button {
    width: 100%;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-gallery-image {
    min-height: 310px;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .feature-grid,
  .preview-strip,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .policy-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .ghost-button {
    width: 100%;
  }

  .phone-frame {
    border-radius: 2.4rem;
  }

  .tunnel-preview {
    border-radius: 1.8rem;
  }
}

/* Real screenshots added from NeonCrown uploads */
.real-preview {
  display: grid;
  place-items: center;
  background: #050211;
}

.real-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), transparent 34%, rgba(217, 70, 239, 0.16));
  animation: none;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-screenshot {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.04);
}

.screen-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 45px rgba(34, 211, 238, 0.28), inset 0 0 80px rgba(217, 70, 239, 0.18);
}

.app-icon {
  overflow: hidden;
  background: #ffffff;
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-item,
.gallery-thumb {
  padding: 0;
  color: inherit;
  font: inherit;
}

.preview-item {
  min-height: 280px;
  aspect-ratio: 3 / 4;
}

.main-gallery-image {
  min-height: 520px;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.12), rgba(3, 2, 13, 0.98));
}

.main-gallery-image img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  padding: 0.5rem;
}

.gallery-thumbs {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.gallery-thumb {
  min-height: 115px;
  aspect-ratio: 1.15 / 1;
}

@media (max-width: 760px) {
  .main-gallery-image {
    min-height: 360px;
  }
}
