:root {
  --night: #050a19;
  --deep: #07142f;
  --panel: rgba(12, 29, 67, 0.72);
  --panel-solid: #0c1d43;
  --blue: #167ee8;
  --cyan: #2ee5f4;
  --gold: #f2ae37;
  --gold-light: #ffe4a3;
  --ivory: #fff9e9;
  --muted: #afbdd9;
  --purple: #9d57ff;
  --green: #43e05f;
  --red: #ff4f57;
  --radius: 28px;
  --shadow-blue: 0 20px 80px rgba(0, 132, 255, 0.25);
  --shadow-gold: 0 20px 80px rgba(242, 174, 55, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--blue) var(--night);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 75% 4%, rgba(23, 126, 232, 0.16), transparent 24rem),
    radial-gradient(circle at 5% 25%, rgba(157, 87, 255, 0.11), transparent 22rem),
    var(--night);
  font-family: "Fredoka", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: #06142e;
  background: var(--cyan);
}

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

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

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
  box-shadow: 0 0 14px var(--cyan);
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 380px;
  height: 380px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 201, 255, 0.09), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

#aurora-canvas {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  width: 100%;
  height: 105vh;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
}

.site-header {
  position: fixed;
  z-index: 900;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 30px));
  min-height: 70px;
  padding: 9px 12px 9px 20px;
  border: 1px solid rgba(136, 190, 255, 0.18);
  border-radius: 22px;
  background: rgba(5, 12, 31, 0.62);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px) saturate(145%);
  transform: translateX(-50%);
  transition: background 0.3s ease, border-color 0.3s ease, top 0.3s ease;
}

.site-header.scrolled {
  top: 8px;
  border-color: rgba(46, 229, 244, 0.24);
  background: rgba(4, 10, 25, 0.86);
}

.brand {
  width: 122px;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 4px 10px rgba(0, 113, 255, 0.42));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 46px);
  color: #c9d5ec;
  font-size: 0.92rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  transition: color 0.25s ease;
}

.main-nav a::after {
  position: absolute;
  bottom: 7px;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  content: "";
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: white;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-download {
  padding: 13px 22px;
  border: 1px solid rgba(255, 230, 160, 0.48);
  border-radius: 14px;
  color: #211304;
  background: linear-gradient(180deg, #ffe6a0, #e89b23);
  box-shadow: inset 0 1px 0 white, 0 8px 26px rgba(242, 174, 55, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-download:hover {
  box-shadow: inset 0 1px 0 white, 0 10px 30px rgba(242, 174, 55, 0.3);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  min-height: 100svh;
  padding: 154px 0 90px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #9ec9ee;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 38px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 8px var(--cyan);
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
  font-weight: 700;
}

h1 span,
h2 em {
  color: transparent;
  background: linear-gradient(180deg, #ffffff 5%, #8bdbff 48%, #2a94ed 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 8px 25px rgba(26, 158, 255, 0.22));
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0;
  color: #b7c5df;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.royal-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 25px 12px 12px;
  overflow: hidden;
  border: 1px solid rgba(97, 234, 255, 0.58);
  border-radius: 18px;
  color: white;
  background: linear-gradient(180deg, #168fe9, #0759bd);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 12px 34px rgba(0, 132, 255, 0.28);
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.royal-cta::before {
  position: absolute;
  top: -80%;
  left: -50%;
  width: 34%;
  height: 250%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  content: "";
  transform: rotate(24deg);
  animation: button-shine 4s ease-in-out infinite;
}

.royal-cta:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 18px 42px rgba(0, 159, 255, 0.42);
  transform: translateY(-3px);
}

.cta-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #19213b;
  background: linear-gradient(180deg, #fff3c5, #f3b032);
  box-shadow: inset 0 1px 0 white;
}

.text-link {
  color: #d4def0;
  font-size: 0.95rem;
  font-weight: 500;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--cyan);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-proof {
  display: flex;
  gap: 32px;
  margin-top: 43px;
  padding-top: 27px;
  border-top: 1px solid rgba(157, 192, 231, 0.14);
}

.hero-proof div {
  display: grid;
}

.hero-proof strong {
  color: white;
  font-size: 1.65rem;
  line-height: 1;
}

.hero-proof span {
  margin-top: 6px;
  color: #758aaf;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-height: 690px;
}

.crest-halo {
  position: absolute;
  z-index: 0;
  top: 10%;
  left: 50%;
  width: 76%;
  max-width: 590px;
  transform: translateX(-47%);
}

.crest-halo::before,
.crest-halo::after {
  position: absolute;
  z-index: -1;
  inset: 18%;
  border-radius: 50%;
  background: rgba(22, 126, 232, 0.28);
  box-shadow: 0 0 120px 50px rgba(16, 148, 255, 0.24), 0 0 220px 70px rgba(141, 54, 255, 0.12);
  content: "";
}

.crest-halo::after {
  inset: -5%;
  border: 1px solid rgba(86, 201, 255, 0.18);
  background: transparent;
  box-shadow: none;
  animation: halo-spin 18s linear infinite;
}

.crest-halo img {
  width: 100%;
  opacity: 0.36;
  filter: saturate(120%) blur(0.2px) drop-shadow(0 0 30px rgba(34, 188, 255, 0.34));
}

.hero-king {
  position: absolute;
  z-index: 3;
  bottom: -28px;
  left: 48%;
  width: min(72%, 530px);
  max-height: 740px;
  object-fit: contain;
  filter: drop-shadow(0 36px 45px rgba(0, 0, 0, 0.56)) drop-shadow(0 0 20px rgba(14, 115, 255, 0.2));
  transform: translateX(-50%);
}

.hero-raven {
  position: absolute;
  z-index: 5;
  right: -1%;
  bottom: 10%;
  width: 29%;
  filter: drop-shadow(0 22px 25px rgba(0, 0, 0, 0.6));
  animation: float-raven 5s ease-in-out infinite;
}

.hero-potion {
  position: absolute;
  z-index: 5;
  top: 20%;
  left: 4%;
  width: 18%;
  filter: drop-shadow(0 0 24px rgba(46, 229, 244, 0.5));
  animation: float-potion 4s ease-in-out infinite;
}

.hero-spark {
  position: absolute;
  z-index: 6;
  width: 68px;
  mix-blend-mode: screen;
}

.spark-one {
  top: 22%;
  right: 14%;
  animation: sparkle-pulse 2.4s ease-in-out infinite;
}

.spark-two {
  bottom: 17%;
  left: 9%;
  width: 52px;
  animation: sparkle-pulse 3.2s 0.8s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 185px;
  padding: 10px 13px;
  border: 1px solid rgba(126, 202, 255, 0.24);
  border-radius: 15px;
  color: #adbedc;
  background: rgba(7, 19, 48, 0.76);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(15px);
  font-size: 0.72rem;
  line-height: 1.2;
}

.floating-badge img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.floating-badge b {
  display: block;
  color: white;
  font-size: 0.78rem;
}

.badge-one {
  top: 12%;
  right: -1%;
}

.badge-two {
  bottom: 7%;
  left: -3%;
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(59, 183, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.orb-one {
  top: 22%;
  right: 5%;
  width: 460px;
  height: 460px;
}

.orb-two {
  right: 12%;
  bottom: 4%;
  width: 620px;
  height: 620px;
  border-style: dashed;
  opacity: 0.6;
}

.hero-scroll {
  position: absolute;
  bottom: 23px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7f9f;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll span {
  position: relative;
  width: 24px;
  height: 38px;
  border: 1px solid #486486;
  border-radius: 15px;
}

.hero-scroll span::after {
  position: absolute;
  top: 7px;
  left: 10px;
  width: 3px;
  height: 7px;
  border-radius: 4px;
  background: var(--cyan);
  content: "";
  animation: scroll-dot 2s infinite;
}

.essence-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid rgba(92, 156, 228, 0.12);
  background: rgba(6, 17, 42, 0.78);
}

.essence-track {
  display: flex;
  width: max-content;
  padding: 17px 0;
  animation: marquee 30s linear infinite;
}

.essence-track span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 190px;
  color: #9fb0ca;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.essence-dot {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 14px currentColor;
}

.cyan { color: #28e6f2; background: #28e6f2; }
.emerald { color: #36e85b; background: #36e85b; }
.sapphire { color: #207ce8; background: #207ce8; }
.ruby { color: #ff4f57; background: #ff4f57; }
.amber { color: #ffad22; background: #ffad22; }
.amethyst { color: #a649f3; background: #a649f3; }

.story,
.characters,
.gameplay,
.gallery,
.art-direction,
.download {
  position: relative;
  z-index: 2;
  padding-block: 140px;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

h2 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 650;
}

.section-heading > p:not(.eyebrow),
.art-copy > p:not(.eyebrow),
.loop-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading.centered > p:not(.eyebrow) {
  margin-inline: auto;
}

.story::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -35%;
  width: 80%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 117, 216, 0.11), transparent 65%);
  content: "";
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.story-card {
  position: relative;
  min-height: 460px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(104, 165, 233, 0.17);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(18, 44, 95, 0.65), rgba(5, 14, 34, 0.88)),
    url("assets/Backgrounds/bg_home_softfocus.png") center/cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 28px 70px rgba(0, 0, 0, 0.25);
}

.story-card-large {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  grid-column: 1 / -1;
  align-items: center;
  min-height: 440px;
  background:
    linear-gradient(100deg, rgba(7, 21, 54, 0.94) 5%, rgba(8, 28, 66, 0.64), rgba(6, 14, 34, 0.86)),
    url("assets/Backgrounds/bg_splash_softfocus.png") center/cover;
}

.story-number {
  position: absolute;
  top: 20px;
  right: 30px;
  color: rgba(255, 225, 157, 0.15);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
}

.story-card-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.story-kicker {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-card h3,
.character-card h3,
.rule-card h3 {
  margin: 0;
  color: white;
  font-size: 1.75rem;
  line-height: 1.05;
}

.story-card p:not(.story-kicker) {
  position: relative;
  z-index: 2;
  max-width: 530px;
  color: #aebdd5;
}

.story-card > img {
  position: absolute;
  right: 5%;
  bottom: -8%;
  width: 52%;
  max-height: 79%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 25px 38px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s ease;
}

.story-card-large > img {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  max-height: 340px;
  justify-self: end;
}

.story-card:hover > img {
  transform: translateY(-8px) scale(1.03) rotate(1deg);
}

.story-card:not(.story-card-large) h3,
.story-card:not(.story-card-large) > p {
  max-width: 57%;
}

.characters {
  padding-top: 100px;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.character-card {
  position: relative;
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid rgba(108, 170, 232, 0.17);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 37, 81, 0.77), rgba(5, 14, 34, 0.94));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.character-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  content: "";
  pointer-events: none;
}

.character-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, rgba(39, 153, 255, 0.24), transparent 57%);
}

.character-art::before {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(81, 192, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.character-art img {
  position: relative;
  z-index: 2;
  width: 112%;
  max-width: none;
  max-height: 360px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.52));
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}

.character-card:hover .character-art img {
  transform: scale(1.05) translateY(-5px);
}

.raven-card .character-art img {
  width: 96%;
  padding-bottom: 25px;
}

.symbolic-art img {
  width: 64%;
  max-height: 290px;
  margin-bottom: 30px;
}

.frost-art img {
  opacity: 0.8;
  filter: grayscale(70%) hue-rotate(170deg) drop-shadow(0 0 30px rgba(96, 207, 255, 0.55));
}

.role-gem {
  position: absolute;
  z-index: 1;
  top: 38px;
  left: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.45;
  transform: translateX(-50%);
}

.role-gem.blue { background: #1686ff; }
.role-gem.purple { background: #9540ff; }
.role-gem.green { background: #25e46e; }
.role-gem.ice { background: #8de7ff; }

.character-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px 32px 35px 10px;
}

.role {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.character-card h3 {
  font-size: 2rem;
}

.character-card p {
  margin: 16px 0;
  color: #a8b7d0;
  font-size: 0.9rem;
}

.character-card blockquote {
  margin: auto 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(145, 180, 222, 0.13);
  color: #d6e7f9;
  font-size: 0.82rem;
  font-style: italic;
}

.gameplay {
  padding-top: 120px;
}

.gameplay-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 32px;
  align-items: stretch;
}

.demo-panel {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(75, 192, 255, 0.28);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(8, 28, 67, 0.82), rgba(4, 12, 30, 0.94)),
    url("assets/Backgrounds/bg_gameplay_softfocus.png") center/cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow-blue);
}

.demo-panel::before {
  position: absolute;
  top: -160px;
  left: 50%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(33, 181, 255, 0.16);
  filter: blur(60px);
  content: "";
  transform: translateX(-50%);
}

.demo-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(118, 178, 230, 0.15);
}

.demo-head > div:first-child {
  display: grid;
}

.demo-label {
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-head strong {
  margin-top: 4px;
  font-size: 1.3rem;
}

.demo-score {
  display: grid;
  min-width: 82px;
  padding: 7px 12px;
  border: 1px solid rgba(87, 167, 240, 0.2);
  border-radius: 13px;
  text-align: center;
  background: rgba(5, 14, 34, 0.52);
}

.demo-score span {
  color: #8299b9;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.demo-score b {
  color: var(--cyan);
  font-size: 1.2rem;
}

.demo-instruction {
  position: relative;
  z-index: 2;
  min-height: 24px;
  margin: 17px 0 0;
  color: #9eb2cf;
  text-align: center;
  font-size: 0.85rem;
}

.tube-board {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(64px, 1fr));
  align-items: end;
  gap: clamp(10px, 2vw, 22px);
  min-height: 390px;
  padding: 55px 12px 30px;
}

.demo-tube {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 260px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), filter 0.25s ease;
}

.demo-tube:hover {
  filter: brightness(1.1);
  transform: translateY(-6px);
}

.demo-tube.selected {
  filter: drop-shadow(0 0 16px rgba(37, 219, 255, 0.9));
  transform: translateY(-18px) scale(1.03);
}

.demo-tube.invalid {
  animation: tube-shake 0.35s ease;
}

.tube-glass {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  width: 73px;
  height: 232px;
  padding: 11px 8px 9px;
  overflow: hidden;
  border: 3px solid rgba(202, 231, 255, 0.55);
  border-top-width: 7px;
  border-radius: 14px 14px 34px 34px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.12), transparent 18%, transparent 72%, rgba(255,255,255,.16)),
    rgba(5, 18, 44, 0.45);
  box-shadow: inset 9px 0 10px rgba(197, 230, 255, 0.08), inset -7px 0 10px rgba(255,255,255,.09), 0 14px 22px rgba(0,0,0,.34);
}

.tube-glass::before {
  position: absolute;
  z-index: 4;
  top: -8px;
  left: -9px;
  width: calc(100% + 18px);
  height: 14px;
  border: 3px solid #e5b44a;
  border-radius: 50%;
  background: #1b3159;
  box-shadow: inset 0 2px 0 #fff1b1, 0 0 10px rgba(255, 192, 63, 0.3);
  content: "";
}

.tube-glass::after {
  position: absolute;
  z-index: 5;
  top: 14px;
  left: 10px;
  width: 5px;
  height: 72%;
  border-radius: 8px;
  background: linear-gradient(white, rgba(255,255,255,.04));
  content: "";
  opacity: 0.34;
}

.liquid-unit {
  position: relative;
  height: 30%;
  min-height: 0;
  margin-top: -1px;
  border-top: 1px solid rgba(255,255,255,.28);
  box-shadow: inset 0 7px 10px rgba(255,255,255,.12), inset 0 -9px 12px rgba(0,0,0,.2), 0 0 13px currentColor;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.liquid-unit:first-child {
  border-radius: 0 0 20px 20px;
}

.liquid-unit::before {
  position: absolute;
  top: -4px;
  left: 3%;
  width: 94%;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  content: "";
}

.liquid-unit.red { color:#ff414d; background:linear-gradient(90deg,#a91224,#ff4b50 35%,#c10d25); }
.liquid-unit.blue { color:#1c8dff; background:linear-gradient(90deg,#0752c7,#1c91ff 35%,#063fbb); }
.liquid-unit.green { color:#25e45d; background:linear-gradient(90deg,#079b35,#2ae65f 35%,#038b31); }

.tube-base {
  position: absolute;
  z-index: -1;
  bottom: -8px;
  left: 50%;
  width: 105px;
  height: 55px;
  border-radius: 18px 18px 11px 11px;
  border: 2px solid #d99523;
  background: linear-gradient(180deg, #3d2d22, #15101a);
  box-shadow: inset 0 2px 0 #ffe48c, 0 9px 15px rgba(0,0,0,.45);
  transform: translateX(-50%);
}

.tube-base::after {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 17px;
  height: 17px;
  border: 2px solid #f1bd45;
  background: #0d72dc;
  box-shadow: 0 0 10px #1fa8ff;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.demo-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(118, 178, 230, 0.15);
}

.demo-actions button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(92, 167, 233, 0.26);
  border-radius: 13px;
  color: white;
  background: rgba(20, 55, 110, 0.55);
  cursor: pointer;
}

.demo-actions button img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.demo-actions > span {
  color: #8095b4;
  font-size: 0.75rem;
}

.demo-actions > span i {
  margin-right: 5px;
  color: var(--gold);
}

.game-rules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rule-card {
  position: relative;
  min-height: 225px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(98, 156, 221, 0.16);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(15, 38, 81, 0.74), rgba(5, 15, 36, 0.9));
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.rule-card:hover {
  border-color: rgba(65, 205, 255, 0.34);
  transform: translateY(-5px);
}

.rule-card > img {
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.34));
}

.rule-index {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(116, 185, 244, 0.32);
  font-size: 1.2rem;
  font-weight: 600;
}

.rule-card h3 {
  font-size: 1.3rem;
}

.rule-card p {
  margin: 9px 0 0;
  color: #94a8c5;
  font-size: 0.82rem;
}

.special-rule {
  border-color: rgba(242, 174, 55, 0.26);
  background: linear-gradient(145deg, rgba(76, 49, 23, 0.54), rgba(11, 17, 37, 0.92));
}

.special-rule .rule-index {
  color: var(--gold);
}

.game-loop {
  position: relative;
  z-index: 2;
  padding-block: 130px;
  overflow: hidden;
  border-block: 1px solid rgba(101, 162, 227, 0.12);
  background:
    linear-gradient(90deg, rgba(4, 12, 29, 0.94), rgba(8, 25, 57, 0.7), rgba(4, 12, 29, 0.92)),
    url("assets/Backgrounds/bg_level_select_softfocus.png") center/cover fixed;
}

.loop-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.phone-scene {
  position: relative;
  min-height: 670px;
}

.phone-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 147, 255, 0.28), rgba(85, 44, 199, 0.12) 45%, transparent 68%);
  filter: blur(18px);
  transform: translate(-50%, -50%);
}

.phone-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 285px;
  padding: 9px;
  border: 2px solid #d6a94d;
  border-radius: 37px;
  background: #051027;
  box-shadow: inset 0 0 0 2px #3a240b, 0 35px 60px rgba(0, 0, 0, 0.55), 0 0 45px rgba(28, 149, 255, 0.16);
}

.phone-frame::before {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 50%;
  width: 78px;
  height: 18px;
  border-radius: 12px;
  background: #020817;
  content: "";
  transform: translateX(-50%);
}

.phone-frame img {
  width: 100%;
  border-radius: 28px;
}

.phone-back {
  transform: translate(-92%, -50%) rotate(-9deg) scale(0.89);
  opacity: 0.7;
}

.phone-front {
  z-index: 3;
  transform: translate(-23%, -50%) rotate(5deg);
}

.loop-crown {
  position: absolute;
  z-index: 5;
  right: 1%;
  bottom: 3%;
  width: 190px;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,.55));
  animation: float-potion 5s ease-in-out infinite;
}

.loop-copy h2 {
  max-width: 580px;
  font-size: clamp(3rem, 5.3vw, 5.2rem);
}

.loop-list {
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.loop-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border: 1px solid rgba(105, 163, 225, 0.12);
  border-radius: 15px;
  color: #9eb0ca;
  background: rgba(6, 17, 41, 0.44);
  font-size: 0.88rem;
}

.loop-list li img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.loop-list b {
  color: white;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  max-width: none;
  gap: 80px;
}

.split-heading > p {
  margin: 0 0 8px !important;
}

.screen-swiper {
  overflow: visible;
  padding: 20px 4px 75px;
}

.screen-swiper .swiper-slide {
  width: 260px;
  opacity: 0.4;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.screen-swiper .swiper-slide-active,
.screen-swiper .swiper-slide-next {
  opacity: 1;
}

.screen-swiper figure {
  margin: 0;
}

.screen-swiper figure > img {
  width: 100%;
  aspect-ratio: 0.46;
  object-fit: cover;
  border: 2px solid rgba(211, 166, 75, 0.72);
  border-radius: 28px;
  background: #07142f;
  box-shadow: 0 26px 45px rgba(0, 0, 0, 0.44), 0 0 40px rgba(26, 146, 255, 0.1);
}

.screen-swiper figcaption {
  display: grid;
  margin-top: 15px;
  text-align: center;
}

.screen-swiper figcaption b {
  color: white;
  font-size: 1rem;
}

.screen-swiper figcaption span {
  color: #778aa9;
  font-size: 0.73rem;
}

.screen-swiper .swiper-pagination-bullet {
  background: #56749a;
  opacity: 1;
}

.screen-swiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 5px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.screen-swiper .swiper-button-prev,
.screen-swiper .swiper-button-next {
  top: auto;
  bottom: 45px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(99, 169, 232, 0.25);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(8, 24, 57, 0.8);
}

.screen-swiper .swiper-button-prev { left: calc(50% - 120px); }
.screen-swiper .swiper-button-next { right: calc(50% - 120px); }
.screen-swiper .swiper-button-prev::after,
.screen-swiper .swiper-button-next::after { font-size: 14px; font-weight: 700; }

.art-direction {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
  padding-top: 70px;
}

.art-stage {
  position: relative;
  min-height: 600px;
  border: 1px solid rgba(75, 166, 236, 0.15);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 67, 132, 0.36), rgba(7, 20, 48, 0.22) 55%, transparent 70%);
}

.art-stage::before,
.art-stage::after {
  position: absolute;
  inset: 11%;
  border: 1px dashed rgba(61, 189, 255, 0.2);
  border-radius: 50%;
  content: "";
  animation: halo-spin 28s linear infinite;
}

.art-stage::after {
  inset: 23%;
  border-style: solid;
  animation-direction: reverse;
}

.art-crest {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,.48));
  transform: translate(-50%, -50%);
}

.art-trophy {
  position: absolute;
  right: 0;
  bottom: 3%;
  width: 34%;
  filter: drop-shadow(0 20px 25px rgba(0,0,0,.5));
  animation: float-potion 4.8s ease-in-out infinite;
}

.art-star {
  position: absolute;
  top: 7%;
  left: 3%;
  width: 23%;
  filter: drop-shadow(0 0 24px rgba(41, 173, 255, .56));
  animation: float-raven 4s ease-in-out infinite;
}

.art-spark {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 15%;
  mix-blend-mode: screen;
  animation: sparkle-pulse 2.7s ease-in-out infinite;
}

.art-copy h2 {
  max-width: 650px;
  font-size: clamp(3.2rem, 5.6vw, 5.5rem);
}

.palette {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 34px;
}

.palette span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8396b4;
  font-size: 0.7rem;
}

.palette i {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 12px color-mix(in srgb, var(--swatch) 60%, transparent);
}

.download {
  padding-top: 90px;
}

.download-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  min-height: 600px;
  padding: 60px clamp(35px, 8vw, 95px);
  overflow: hidden;
  border: 1px solid rgba(242, 174, 55, 0.32);
  border-radius: 40px;
  background:
    linear-gradient(105deg, rgba(7, 20, 49, 0.86), rgba(10, 36, 81, 0.6), rgba(6, 16, 38, 0.93)),
    url("assets/Backgrounds/bg_victory_softfocus.png") center/cover;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), var(--shadow-gold);
}

.download-panel::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 219, 133, 0.12);
  border-radius: 30px;
  content: "";
  pointer-events: none;
}

.download-burst {
  position: absolute;
  z-index: 0;
  bottom: -34%;
  left: -12%;
  width: 74%;
  opacity: 0.5;
  mix-blend-mode: screen;
  animation: halo-spin 36s linear infinite;
}

.download-confetti {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
  pointer-events: none;
}

.download-king {
  position: absolute;
  z-index: 1;
  bottom: -4%;
  left: 3%;
  width: 43%;
  max-height: 94%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 32px 35px rgba(0,0,0,.55));
}

.download-copy {
  position: relative;
  z-index: 4;
  grid-column: 2;
  max-width: 610px;
  justify-self: end;
}

.download-logo {
  width: 220px;
  margin-bottom: 28px;
  filter: drop-shadow(0 9px 18px rgba(0, 119, 255, 0.35));
}

.download-copy h2 {
  font-size: clamp(3rem, 5.4vw, 5.4rem);
}

.download-copy > p:not(.eyebrow) {
  color: #afbdd6;
  font-size: 1rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.store-buttons a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 11px 17px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 15px;
  color: white;
  background: linear-gradient(180deg, #111827, #05070c);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 12px 26px rgba(0,0,0,.32);
  transition: transform .25s ease, border-color .25s ease;
}

.store-buttons a:hover {
  border-color: rgba(46,229,244,.55);
  transform: translateY(-4px);
}

.store-buttons i {
  width: 34px;
  color: white;
  font-size: 2rem;
  text-align: center;
}

.store-buttons span {
  display: grid;
  line-height: 1.05;
}

.store-buttons small {
  color: #bec6d3;
  font-size: .61rem;
}

.store-buttons b {
  font-size: 1.16rem;
  font-weight: 500;
}

.store-note {
  display: block;
  margin-top: 13px;
  color: #71829f;
  font-size: .68rem;
}

.faq {
  padding-block: 90px 40px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px 28px;
  border: 1px solid rgba(112, 167, 224, 0.16);
  border-radius: 22px;
  background: rgba(12, 29, 67, 0.55);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding-block: 35px 50px;
  border-top: 1px solid rgba(112, 167, 224, 0.12);
}

.site-footer > img {
  width: 120px;
}

.site-footer p {
  margin: 0;
  color: #6f819e;
  font-size: .72rem;
}

.powered-by {
  display: block;
  margin-top: 6px;
}

.powered-by a {
  color: var(--cyan);
  font-weight: 600;
}

.site-footer div {
  display: flex;
  gap: 20px;
  color: #93a3bc;
  font-size: .75rem;
}

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

@keyframes button-shine {
  0%, 45% { left: -55%; }
  75%, 100% { left: 130%; }
}

@keyframes halo-spin { to { transform: rotate(360deg); } }
@keyframes float-raven { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(2deg); } }
@keyframes float-potion { 0%,100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-18px) rotate(-2deg); } }
@keyframes sparkle-pulse { 0%,100% { opacity:.25; transform:scale(.7) rotate(0); } 50% { opacity:1; transform:scale(1.1) rotate(45deg); } }
@keyframes scroll-dot { 0% { opacity:0; transform:translateY(0); } 35% { opacity:1; } 100% { opacity:0; transform:translateY(15px); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes tube-shake { 0%,100% { transform:translateX(0); } 30% { transform:translateX(-7px); } 70% { transform:translateX(7px); } }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-stage { min-height: 620px; }
  .floating-badge { display: none; }
  .character-card { grid-template-columns: 40% 60%; }
  .gameplay-layout { grid-template-columns: 1fr; }
  .game-rules { grid-template-columns: repeat(4, 1fr); }
  .rule-card { min-height: 210px; padding: 21px; }
  .loop-inner { gap: 35px; }
  .art-direction { gap: 40px; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .nav-toggle {
    display: grid;
    grid-column: 3;
    justify-self: end;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid rgba(117,173,226,.2);
    border-radius: 13px;
    background: rgba(15,40,82,.55);
    cursor: pointer;
  }
  .nav-toggle span { display:block; width:100%; height:2px; margin:auto; border-radius:2px; background:white; transition:.25s ease; }
  .nav-open .nav-toggle span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity:0; }
  .nav-open .nav-toggle span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    width: 100%;
    gap: 0;
    padding: 16px 20px;
    border: 1px solid rgba(104,167,229,.2);
    border-radius: 20px;
    background: rgba(5,13,32,.96);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav-open .main-nav { opacity:1; pointer-events:auto; transform:none; }
  .main-nav a { padding:13px 5px; border-bottom:1px solid rgba(255,255,255,.06); }
  .main-nav a::after { display:none; }
  .nav-download { display:none; }
  .hero { grid-template-columns: 1fr; padding-top:145px; }
  .hero-copy { max-width:700px; }
  .hero-stage { min-height:700px; }
  .hero-king { width:min(64%,500px); }
  .hero-raven { right:9%; width:24%; }
  .hero-potion { left:13%; }
  .story-grid { grid-template-columns:1fr; }
  .story-card-large { grid-template-columns:1fr .7fr; }
  .character-grid { grid-template-columns:1fr; }
  .character-card { min-height:350px; }
  .game-rules { grid-template-columns:repeat(2,1fr); }
  .loop-inner { grid-template-columns:1fr; }
  .phone-scene { order:2; }
  .loop-copy { text-align:center; }
  .loop-copy .eyebrow { justify-content:center; }
  .loop-copy h2, .loop-copy > p { margin-inline:auto !important; }
  .split-heading { grid-template-columns:1fr; gap:25px; }
  .art-direction { grid-template-columns:1fr; }
  .art-stage { order:2; max-width:650px; width:100%; margin-inline:auto; }
  .art-copy { max-width:700px; text-align:center; margin-inline:auto; }
  .art-copy .eyebrow, .palette { justify-content:center; }
  .art-copy > p { margin-inline:auto !important; }
  .download-panel { grid-template-columns:.75fr 1.25fr; padding-inline:30px; }
}

@media (max-width: 680px) {
  .section-shell { width:min(100% - 26px,1180px); }
  .site-header { width:calc(100% - 20px); top:10px; min-height:62px; padding-left:15px; border-radius:18px; }
  .brand { width:105px; }
  .nav-toggle { width:42px; height:42px; }
  .hero { padding-top:122px; padding-bottom:55px; }
  h1 { font-size:clamp(3.3rem,15vw,5rem); }
  .hero-lead { margin:22px 0; }
  .hero-actions { align-items:flex-start; flex-direction:column; gap:18px; }
  .hero-proof { gap:18px; justify-content:space-between; }
  .hero-proof strong { font-size:1.35rem; }
  .hero-proof span { font-size:.61rem; }
  .hero-stage { min-height:570px; }
  .hero-king { bottom:0; width:min(82%,440px); }
  .crest-halo { width:92%; top:13%; }
  .hero-raven { right:-1%; bottom:12%; width:29%; }
  .hero-potion { top:20%; left:3%; width:20%; }
  .hero-scroll { display:none; }
  .story, .characters, .gameplay, .gallery, .art-direction, .download, .faq { padding-block:95px; }
  .section-heading { margin-bottom:38px; }
  h2 { font-size:clamp(2.7rem,13vw,4.3rem); }
  .story-card { min-height:430px; padding:28px; }
  .story-card-large { grid-template-columns:1fr; min-height:600px; align-content:start; }
  .story-card-large > img { position:absolute; right:-2%; bottom:-3%; width:83%; max-height:320px; }
  .story-card:not(.story-card-large) h3,
  .story-card:not(.story-card-large) > p { max-width:68%; }
  .story-card:not(.story-card-large) > img { right:-8%; width:55%; }
  .character-card { grid-template-columns:1fr; min-height:600px; }
  .character-art { min-height:310px; }
  .character-art img { max-height:320px; width:80%; }
  .raven-card .character-art img { width:67%; }
  .symbolic-art img { width:42%; }
  .character-copy { padding:26px; }
  .game-rules { grid-template-columns:1fr 1fr; }
  .rule-card { min-height:205px; padding:20px; }
  .rule-card > img { width:42px; height:42px; margin-bottom:25px; }
  .tube-board { grid-template-columns:repeat(5,1fr); gap:5px; min-height:310px; padding-inline:0; }
  .demo-tube { height:220px; }
  .tube-glass { width:51px; height:195px; padding:10px 5px 8px; border-width:2px; border-top-width:6px; border-radius:11px 11px 25px 25px; }
  .tube-base { width:68px; height:44px; }
  .demo-actions { align-items:flex-start; }
  .demo-actions > span { text-align:right; }
  .phone-scene { min-height:530px; }
  .phone-frame { width:225px; }
  .phone-back { transform:translate(-90%,-50%) rotate(-8deg) scale(.83); }
  .phone-front { transform:translate(-22%,-50%) rotate(5deg); }
  .loop-crown { width:130px; }
  .screen-swiper .swiper-slide { width:225px; }
  .art-stage { min-height:440px; }
  .download-panel { grid-template-columns:1fr; min-height:850px; padding:45px 26px; align-items:start; }
  .download-copy { grid-column:1; text-align:center; justify-self:center; }
  .download-copy .eyebrow { justify-content:center; }
  .download-logo { margin-inline:auto; }
  .store-buttons { justify-content:center; }
  .download-king { width:76%; left:12%; max-height:48%; }
  .download-burst { width:130%; left:-15%; bottom:-13%; }
  .site-footer { grid-template-columns:1fr; justify-items:center; text-align:center; }
}

@media (max-width: 460px) {
  .game-rules { grid-template-columns:1fr; }
  .rule-card { min-height:185px; }
  .demo-panel { padding:19px 14px; }
  .tube-board { gap:1px; }
  .tube-glass { width:45px; }
  .tube-base { width:57px; }
  .story-card:not(.story-card-large) h3,
  .story-card:not(.story-card-large) > p { max-width:78%; }
  .story-card:not(.story-card-large) > img { opacity:.7; }
  .phone-frame { width:190px; }
  .phone-scene { min-height:460px; }
  .store-buttons a { width:100%; justify-content:center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; }
  #aurora-canvas { opacity:.45; }
}
