:root {
  color-scheme: light;
  --ink: #151715;
  --muted: #65695f;
  --line: rgba(21, 23, 21, 0.16);
  --paper: #f7f6ee;
  --mint: #14b75f;
  --mint-dark: #05683a;
  --lime: #d7ff61;
  --cream: #fff2c7;
  --cocoa: #77411f;
  --cocoa-dark: #3c2418;
  --berry: #de315c;
  --cyan: #38bdf8;
  --shadow: 0 18px 46px rgba(28, 39, 31, 0.13);
  --app-width: 440px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    linear-gradient(115deg, rgba(4, 104, 58, 0.28), transparent 38%),
    linear-gradient(235deg, rgba(67, 35, 20, 0.32), transparent 42%),
    #151713;
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

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

.app-shell {
  width: min(100%, var(--app-width));
  min-height: 100svh;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 246, 238, 0.96)),
    linear-gradient(120deg, rgba(5, 104, 58, 0.16), transparent 44%),
    linear-gradient(245deg, rgba(67, 35, 20, 0.15), transparent 48%),
    var(--paper);
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  box-shadow: var(--shadow);
}

.statusbar {
  min-height: calc(58px + env(safe-area-inset-top));
  padding: calc(18px + env(safe-area-inset-top)) 32px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  color: #050505;
  font-weight: 900;
  font-size: 1.28rem;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signal-bars {
  width: 34px;
  height: 22px;
  display: flex;
  align-items: end;
  gap: 4px;
}

.signal-bars i {
  width: 7px;
  border-radius: 999px 999px 2px 2px;
  background: #050505;
  display: block;
}

.signal-bars i:nth-child(1) {
  height: 8px;
}

.signal-bars i:nth-child(2) {
  height: 14px;
}

.signal-bars i:nth-child(3) {
  height: 20px;
}

.wifi-mark {
  width: 25px;
  height: 18px;
  border: 5px solid #050505;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  position: relative;
}

.wifi-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #050505;
  transform: translateX(-50%);
}

.battery-mark {
  min-width: 34px;
  height: 25px;
  border-radius: 7px;
  background: #050505;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  line-height: 1;
  position: relative;
}

.battery-mark::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 7px;
  width: 3px;
  height: 11px;
  border-radius: 0 3px 3px 0;
  background: #050505;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: calc(14px + env(safe-area-inset-top)) 18px 10px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.app-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 26, 24, 0.2);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 8px 18px rgba(23, 26, 24, 0.12);
  overflow: hidden;
}

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

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(1.45rem, 8vw, 2rem);
  line-height: 1;
  font-weight: 900;
}

.brand-lockup p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button.is-muted .sound-wave {
  display: none;
}

.screen {
  min-height: 0;
  padding: 0 18px 22px;
  overflow-y: auto;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
  animation: rise-in 220ms ease both;
}

.live-line {
  min-height: 52px;
  width: fit-content;
  max-width: min(100%, 330px);
  margin: 118px auto 0;
  border: 0;
  border-radius: 999px;
  padding: 0 10px 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(28, 28, 28, 0.9);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  align-self: center;
}

.live-line button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 1.32rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.mascot-button {
  width: calc(100% + 36px);
  border: 0;
  background: transparent;
  min-height: 0;
  flex: 1;
  margin-inline: -18px;
  padding: 34px 0 20px;
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
}

.mascot-button:active .mascot {
  transform: scale(0.965) rotate(-1deg);
}

.mascot-glow {
  display: none;
}

.mascot {
  width: min(76vw, 302px);
  aspect-ratio: 0.74;
  display: block;
  position: relative;
  filter: drop-shadow(0 24px 34px rgba(21, 33, 25, 0.24));
  transition: transform 160ms ease;
}

.mascot.is-photo {
  width: min(96vw, 420px);
  aspect-ratio: auto;
  border: 1px solid rgba(21, 23, 21, 0.22);
  border-radius: 10px;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 24px 44px rgba(23, 26, 24, 0.28);
  filter: none;
}

.mascot.is-three {
  width: min(100vw, 440px);
  height: min(65svh, 660px);
  min-height: 520px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  overflow: visible;
}

.mascot.is-three::before,
.mascot.is-three::after {
  display: none;
}

#mascot3d {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
  opacity: 1;
}

.mascot.is-model {
  width: min(100vw, 440px);
  height: min(65svh, 660px);
  min-height: 520px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  overflow: hidden;
}

.mascot.is-model::before,
.mascot.is-model::after {
  display: none;
}

.model-empty {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(82%, 320px);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(24, 24, 24, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: #171717;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 18px 38px rgba(23, 26, 24, 0.12);
  backdrop-filter: blur(14px);
}

.model-empty[hidden] {
  display: none;
}

.model-empty strong,
.model-empty span {
  display: block;
}

.model-empty strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.model-empty span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.mascot.is-video {
  width: min(100vw, 440px);
  height: min(65svh, 660px);
  min-height: 520px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  overflow: hidden;
}

.mascot.is-video::before,
.mascot.is-video::after {
  display: none;
}

#mascotVideo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: center center;
}

.mascot.is-photo::before,
.mascot.is-photo::after {
  display: none;
}

.mascot-photo {
  display: block;
  width: 100%;
  max-height: 62svh;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.mascot::before {
  content: "";
  position: absolute;
  inset: 9% 8% 2%;
  border-radius: 44% 44% 20% 20% / 42% 42% 24% 24%;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.74) 0 8%, transparent 9%),
    radial-gradient(circle at 82% 18%, rgba(255, 242, 199, 0.68) 0 9%, transparent 10%),
    linear-gradient(90deg, rgba(32, 201, 107, 0.12), rgba(255, 255, 255, 0.16) 48%, rgba(119, 65, 31, 0.14));
  z-index: 0;
}

.mascot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 28%;
  bottom: 8%;
  width: 2px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.82) 22%, rgba(19, 19, 19, 0.3) 55%, transparent);
  z-index: 8;
}

.back-prop,
.arm,
.armor-shell,
.head,
.drop,
.spark {
  position: absolute;
  display: block;
}

.back-prop {
  z-index: 1;
  opacity: 0.86;
  pointer-events: none;
}

.fizz-bottle {
  left: -1%;
  top: 15%;
  width: 29%;
  height: 58%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 18% 18% 28% 28% / 15% 15% 18% 18%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 8%, transparent 26% 70%, rgba(0, 83, 45, 0.35)),
    linear-gradient(180deg, rgba(19, 173, 87, 0.72), rgba(0, 131, 67, 0.88));
  transform: rotate(-7deg);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.22);
}

.fizz-bottle::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: -10%;
  height: 16%;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #fff56a, #e8c926);
  box-shadow: 0 4px 10px rgba(23, 26, 24, 0.18);
}

.fizz-bottle::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  top: 44%;
  height: 14%;
  border-radius: 5px;
  background: linear-gradient(90deg, #efff83, #f3cf23);
  transform: rotate(-5deg);
}

.fizz-bottle span {
  position: absolute;
  left: 15%;
  right: 12%;
  top: 44%;
  z-index: 1;
  color: #047a42;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-5deg);
}

.choco-pack {
  right: -2%;
  top: 12%;
  width: 33%;
  height: 54%;
  background:
    repeating-linear-gradient(180deg, rgba(96, 45, 15, 0.18) 0 2px, transparent 2px 7px),
    linear-gradient(135deg, #ffe56c, #ffd52d 55%, #f4b43d);
  clip-path: polygon(7% 8%, 93% 0, 100% 94%, 10% 100%, 0 16%);
  transform: rotate(6deg);
  box-shadow: 0 12px 22px rgba(56, 36, 16, 0.18);
}

.choco-pack::before {
  content: "";
  position: absolute;
  inset: 8% 6% auto;
  height: 16%;
  border-top: 8px dotted rgba(92, 43, 20, 0.34);
}

.choco-pack span {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 38%;
  color: #6b2218;
  font-size: clamp(0.55rem, 3vw, 0.82rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px #fff4c1;
  transform: rotate(-7deg);
}

.arm {
  z-index: 2;
  bottom: 6%;
  width: 24%;
  height: 48%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px 999px 32px 32px;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.18);
}

.arm-left {
  left: 4%;
  background:
    radial-gradient(circle at 44% 28%, rgba(255, 255, 255, 0.56) 0 6%, transparent 6.8%),
    linear-gradient(90deg, #0ba45c, #05763e);
  transform: rotate(8deg);
}

.arm-right {
  right: 4%;
  background:
    radial-gradient(circle at 48% 25%, rgba(255, 255, 255, 0.35) 0 5%, transparent 5.8%),
    repeating-linear-gradient(140deg, rgba(255, 255, 255, 0.06) 0 8px, transparent 8px 17px),
    linear-gradient(90deg, #5b311d, #2f1b13);
  transform: rotate(-8deg);
}

.armor-shell {
  z-index: 3;
  left: 7%;
  right: 7%;
  bottom: 0;
  height: 72%;
}

.shoulder {
  position: absolute;
  top: 16%;
  width: 39%;
  height: 33%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.2),
    0 10px 18px rgba(21, 33, 25, 0.16);
  overflow: hidden;
}

.shoulder span {
  position: absolute;
  inset: auto 10% 34% 10%;
  color: #fff;
  font-size: clamp(0.62rem, 3vw, 0.84rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.34);
  white-space: nowrap;
}

.shoulder-left {
  left: 0;
  border-radius: 52% 16% 22% 40%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.68) 0 7%, transparent 7.8%),
    linear-gradient(135deg, #40dd7e, #008d4a 64%, #035c35);
  transform: rotate(-12deg);
}

.shoulder-left::after {
  content: "";
  position: absolute;
  inset: 18% 12% auto;
  height: 17%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff487, #d4ff56);
  transform: rotate(-14deg);
}

.shoulder-right {
  right: 0;
  border-radius: 16% 52% 40% 22%;
  background:
    radial-gradient(circle at 52% 25%, rgba(255, 255, 255, 0.32) 0 6%, transparent 6.8%),
    repeating-linear-gradient(35deg, rgba(255, 246, 212, 0.12) 0 8px, transparent 8px 19px),
    linear-gradient(135deg, #8b4b28, #3a2217 62%, #21120d);
  transform: rotate(12deg);
}

.shoulder-right::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 20%;
  right: 18%;
  top: 24%;
  border-radius: 4px;
  background: #bb7a45;
  transform: rotate(24deg);
  box-shadow:
    -28px 28px 0 -2px #4f2a19,
    -6px 50px 0 -4px #a76235;
}

.torso {
  position: absolute;
  left: 21%;
  right: 21%;
  top: 25%;
  bottom: 12%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 28% 28% 14% 14% / 18% 18% 18% 18%;
  background:
    linear-gradient(90deg, rgba(32, 201, 107, 0.88) 0 47%, #f8fbff 48% 52%, rgba(69, 38, 22, 0.92) 53% 100%);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.24),
    0 12px 22px rgba(21, 33, 25, 0.16);
  overflow: hidden;
}

.torso-side,
.torso-core,
.zipper,
.chest-badge {
  position: absolute;
  display: block;
}

.torso-fizz {
  inset: 0 52% 0 0;
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.48) 0 6%, transparent 7%),
    radial-gradient(circle at 62% 53%, rgba(255, 255, 255, 0.34) 0 5%, transparent 5.8%),
    linear-gradient(135deg, rgba(215, 255, 97, 0.52), transparent 46%);
}

.torso-choco {
  inset: 0 0 0 52%;
  background:
    linear-gradient(118deg, transparent 0 18%, rgba(255, 236, 188, 0.92) 19% 29%, transparent 30% 51%, rgba(160, 95, 52, 0.48) 52% 61%, transparent 62%),
    radial-gradient(circle at 72% 62%, rgba(23, 14, 9, 0.42) 0 12%, transparent 13%);
}

.torso-core {
  left: 35%;
  right: 35%;
  top: 8%;
  bottom: 2%;
  border-radius: 20px 20px 8px 8px;
  background:
    linear-gradient(90deg, rgba(80, 91, 93, 0.8), rgba(255, 255, 255, 0.9) 48% 52%, rgba(80, 91, 93, 0.82));
}

.zipper {
  left: 49%;
  top: 2%;
  bottom: 7%;
  width: 5px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(180deg, #efefef 0 5px, #6f7779 5px 8px),
    #d9e1e3;
  box-shadow: 0 0 0 1px rgba(23, 26, 24, 0.14);
}

.chest-badge {
  top: 42%;
  min-width: 36%;
  border-radius: 4px;
  padding: 4px 5px;
  color: #fff;
  font-size: clamp(0.58rem, 2.7vw, 0.76rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(23, 26, 24, 0.18);
}

.badge-fizz {
  left: 5%;
  background: linear-gradient(135deg, #ecfff2, #087d47);
  transform: rotate(-7deg);
}

.badge-choco {
  right: 4%;
  background: linear-gradient(135deg, #fff0d8, #7d1818 45%, #341812);
  transform: rotate(6deg);
}

.belt {
  position: absolute;
  left: 19%;
  right: 19%;
  bottom: 0;
  height: 18%;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 48%, #3f4650 0 14%, transparent 15%),
    linear-gradient(90deg, #32353a, #111318 46% 54%, #33373d);
  box-shadow: 0 8px 16px rgba(23, 26, 24, 0.24);
}

.vial,
.buckle {
  position: absolute;
  display: block;
}

.vial {
  bottom: 25%;
  width: 22%;
  height: 68%;
  border: 3px solid rgba(220, 226, 232, 0.9);
  border-radius: 14px;
  transform-origin: 50% 100%;
}

.vial::before {
  content: "";
  position: absolute;
  inset: 18% 18% 12%;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.vial-fizz {
  left: 15%;
  color: var(--mint);
  transform: rotate(-31deg);
}

.vial-choco {
  right: 15%;
  color: #8b4bff;
  transform: rotate(31deg);
}

.buckle {
  left: 50%;
  top: 23%;
  width: 23%;
  aspect-ratio: 1;
  border: 3px solid #b7c0c6;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #de315c 0 18%, #222 20% 32%, #c6cbd0 33% 50%, #24282c 51%);
}

.head {
  z-index: 7;
  left: 50%;
  top: 2%;
  width: 45%;
  height: 33%;
  transform: translateX(-50%);
  border-radius: 48% 48% 42% 42% / 38% 38% 52% 52%;
  background:
    radial-gradient(circle at 34% 50%, rgba(255, 255, 255, 0.34), transparent 19%),
    linear-gradient(90deg, #f2c29b, #f7d3b1 50%, #dcad89);
  box-shadow: 0 8px 16px rgba(23, 26, 24, 0.24);
}

.ear {
  position: absolute;
  top: 42%;
  width: 11%;
  height: 22%;
  border-radius: 50%;
  background: #e2ad8a;
  z-index: -1;
}

.ear-left {
  left: -7%;
}

.ear-right {
  right: -7%;
}

.hair {
  position: absolute;
  left: -5%;
  right: -5%;
  top: -9%;
  height: 38%;
  border-radius: 48% 48% 16% 16%;
  background:
    radial-gradient(circle at 18% 26%, #2b2d2d 0 16%, transparent 17%),
    radial-gradient(circle at 38% 13%, #111 0 19%, transparent 20%),
    radial-gradient(circle at 58% 17%, #0c0e0e 0 20%, transparent 21%),
    radial-gradient(circle at 78% 27%, #141616 0 15%, transparent 16%),
    linear-gradient(180deg, #080909, #191b1b);
  box-shadow:
    -10px 12px 0 -7px #111,
    10px 13px 0 -8px #111;
  clip-path: polygon(
    3% 33%,
    12% 10%,
    25% 3%,
    40% 0,
    57% 2%,
    73% 8%,
    90% 21%,
    98% 44%,
    96% 70%,
    84% 58%,
    76% 73%,
    65% 57%,
    55% 75%,
    45% 60%,
    34% 73%,
    25% 58%,
    14% 72%,
    4% 57%
  );
}

.visor {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 33%;
  height: 28%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.visor span {
  width: 45%;
  height: 100%;
  border: 4px solid #d7dce0;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.96) 0 9%, transparent 10%),
    linear-gradient(145deg, #0b111b, #10192a 58%, #163a70);
  box-shadow: inset 0 -7px 14px rgba(2, 7, 14, 0.54);
}

.visor span:first-child {
  border-radius: 52% 36% 44% 48%;
  transform: rotate(5deg);
}

.visor span:last-child {
  border-radius: 36% 52% 48% 44%;
  transform: rotate(-5deg);
}

.visor::after {
  content: "";
  position: absolute;
  left: 42%;
  right: 42%;
  top: 41%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7dce0, #777e85);
}

.smile {
  position: absolute;
  left: 34%;
  right: 34%;
  top: 68%;
  height: 14%;
  border-radius: 0 0 999px 999px;
  background: #5f1f19;
  overflow: hidden;
}

.smile::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 46%;
  border-radius: 0 0 999px 999px;
  background: #fff;
}

.drop {
  z-index: 9;
  width: 10px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50% 50% 55% 55%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset -2px -3px 4px rgba(11, 83, 64, 0.15);
}

.drop-a {
  left: 18%;
  top: 45%;
}

.drop-b {
  left: 29%;
  top: 62%;
  transform: scale(0.72) rotate(18deg);
}

.drop-c {
  left: 36%;
  top: 38%;
  transform: scale(0.6);
}

.drop-d {
  right: 20%;
  top: 44%;
  transform: scale(0.88) rotate(-18deg);
}

.drop-e {
  right: 32%;
  top: 64%;
  transform: scale(0.68);
}

.drop-f {
  right: 12%;
  top: 58%;
  transform: scale(0.54);
}

.drop-g {
  left: 14%;
  top: 72%;
  transform: scale(0.56);
}

.drop-h {
  right: 16%;
  top: 75%;
  transform: scale(0.62) rotate(16deg);
}

.spark {
  z-index: 10;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #8b4b28;
  transform: rotate(22deg);
}

.spark-a {
  right: 19%;
  top: 33%;
}

.spark-b {
  right: 29%;
  top: 55%;
  transform: scale(0.72) rotate(38deg);
}

.spark-c {
  right: 42%;
  top: 77%;
  background: #c07a3d;
  transform: scale(0.64) rotate(18deg);
}

#view-stage.is-active {
  min-height: calc(100svh - 172px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

#view-stage > .meter,
#view-stage > .stat-row,
#view-stage > .control-band {
  display: none;
}

#view-stage .quick-row {
  display: none;
  position: absolute;
  left: -11px;
  top: 50%;
  z-index: 12;
  margin: 0;
  transform: translateY(-50%);
}

#view-stage .quick-row h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

#view-stage .quick-grid {
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 0;
}

#view-stage .sound-pad {
  width: 42px;
  min-height: 46px;
  height: 42px;
  border-radius: 50%;
  padding: 0;
  place-items: center;
  align-content: center;
  background: rgba(28, 28, 28, 0.9);
  color: #fff;
}

#view-stage .sound-pad::before,
#view-stage .sound-pad::after,
#view-stage .sound-pad span {
  display: none;
}

#view-stage .sound-pad strong {
  width: 2em;
  font-size: 0.72rem;
  line-height: 1.05;
  text-align: center;
}

.meter {
  height: 40px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  align-items: end;
  padding: 4px 0 8px;
}

.meter span {
  height: var(--level, 34%);
  min-height: 6px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--lime), var(--mint));
  transition: height 120ms ease, background 120ms ease;
}

.meter span:nth-child(even) {
  background: linear-gradient(180deg, var(--cream), #b56b35);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stat-row div,
.control-band,
.deck-layout {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.stat-row div {
  padding: 12px 8px;
  text-align: center;
}

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

.stat-row strong {
  font-size: 1.3rem;
  line-height: 1;
}

.stat-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.control-band {
  margin-top: 14px;
  padding: 12px 0;
  display: grid;
  gap: 12px;
}

.range-control {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px 1fr 42px;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.range-control input {
  width: 100%;
  accent-color: var(--mint-dark);
}

.range-control output {
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.switch-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.switch-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-track {
  width: 54px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #e6ece6;
  position: relative;
  order: 2;
}

.switch-track::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(23, 26, 24, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.switch-control input:checked + .switch-track {
  background: var(--cocoa);
}

.switch-control input:checked + .switch-track::after {
  transform: translateX(24px);
  background: var(--cream);
}

.quick-row,
.section-head {
  margin-top: 20px;
}

.quick-row h2,
.section-head h2 {
  font-size: 1.05rem;
  line-height: 1.1;
}

.quick-grid,
.sound-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.section-head span {
  color: var(--muted);
  font-size: 0.84rem;
}

.sound-pad {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 244, 236, 0.9));
  color: var(--ink);
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 13px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(24, 33, 26, 0.08);
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}

.sound-pad::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--pad-color);
}

.sound-pad::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--pad-color);
  opacity: 0.48;
}

.sound-pad:active,
.sound-pad.is-firing {
  transform: translateY(1px) scale(0.99);
}

.sound-pad.is-firing {
  outline: 2px solid var(--pad-ring);
}

.sound-pad strong,
.sound-pad span {
  position: relative;
  z-index: 1;
}

.sound-pad strong {
  font-size: clamp(1.05rem, 5vw, 1.45rem);
  line-height: 1.05;
}

.sound-pad span {
  color: var(--muted);
  font-size: 0.8rem;
}

.deck-layout {
  margin-top: 16px;
  padding: 18px 0;
  display: grid;
  gap: 20px;
}

.vinyl {
  width: min(74vw, 286px);
  aspect-ratio: 1;
  justify-self: center;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--cream) 0 17%, transparent 18%),
    repeating-radial-gradient(circle at center, #1d1d1d 0 8px, #2c2c2c 9px 12px);
  box-shadow: 0 20px 38px rgba(23, 26, 24, 0.28);
  position: relative;
  display: grid;
  place-items: center;
  cursor: grab;
  touch-action: none;
}

.vinyl.is-scratching {
  cursor: grabbing;
}

.vinyl-ring {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
}

.vinyl-label {
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--cocoa));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

.deck-controls {
  display: grid;
  gap: 16px;
}

.primary-action {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  cursor: pointer;
}

.primary-action svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.effect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.effect-grid button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.action-dock {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 26px calc(18px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.98) 22%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 30;
}

.dock-button {
  min-width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 1.72rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(23, 26, 24, 0.18);
}

.dock-pill {
  min-width: 116px;
  padding: 0 22px;
  font-size: 0.96rem;
}

.run-button {
  position: relative;
  min-width: 146px;
  height: 64px;
  padding: 0 24px;
  border-radius: 16px 24px 16px 24px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.34), transparent 22%),
    radial-gradient(circle at 84% 72%, rgba(31, 12, 45, 0.72), transparent 34%),
    linear-gradient(135deg, #24113f 0%, #5b2493 42%, #8d3ee7 64%, #2a123f 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    inset 0 -8px 16px rgba(27, 10, 39, 0.34),
    0 14px 26px rgba(73, 27, 116, 0.26);
  clip-path: polygon(8% 0, 92% 0, 100% 16%, 96% 50%, 100% 84%, 92% 100%, 8% 100%, 0 84%, 4% 50%, 0 16%);
  isolation: isolate;
  overflow: hidden;
}

.run-button::before,
.run-button::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.run-button::before {
  inset: 8px 14px auto;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: rotate(-12deg);
}

.run-button::after {
  right: 12px;
  bottom: 9px;
  width: 44px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 34%, #f5d170 0 10%, transparent 11%),
    radial-gradient(circle at 62% 58%, #f0bb55 0 9%, transparent 10%),
    linear-gradient(135deg, #3d1b28, #160c15);
  opacity: 0.92;
  transform: rotate(-18deg);
}

.run-button span {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 2px 5px rgba(19, 8, 28, 0.6);
  white-space: nowrap;
}

.dock-round {
  width: 64px;
}

.dock-button.is-active {
  background: #171717;
  outline: 3px solid rgba(20, 183, 95, 0.14);
}

.dock-button.is-muted {
  background: #4a4a4a;
  color: rgba(255, 255, 255, 0.76);
}

.dock-button:active {
  transform: translateY(1px) scale(0.98);
}

.settings-view {
  min-height: calc(100svh - 188px);
}

.settings-page {
  min-height: calc(100svh - 220px);
  display: grid;
  place-content: center;
  gap: 12px;
  text-align: center;
}

.settings-page h2 {
  color: var(--ink);
  font-size: 1.26rem;
  line-height: 1.32;
  font-weight: 900;
}

.settings-page p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.settings-back-button {
  width: min(46vw, 176px);
  min-height: 58px;
  margin: 94px auto 0;
  border: 0;
  border-radius: 999px;
  background: #1f1f1f;
  color: #fff;
  box-shadow: 0 14px 28px rgba(23, 26, 24, 0.18);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
}

.settings-back-button:active {
  transform: translateY(1px) scale(0.98);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  max-width: min(88vw, 360px);
  min-height: 44px;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(23, 26, 24, 0.92);
  color: #fff;
  padding: 12px 14px;
  box-shadow: 0 18px 36px rgba(23, 26, 24, 0.22);
  transition: opacity 170ms ease, transform 170ms ease;
  text-align: center;
  z-index: 20;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.particle {
  position: fixed;
  z-index: 18;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--particle-color, var(--mint));
  animation: particle-pop 640ms ease-out forwards;
}

.icecream-pop,
.sprite-pop {
  position: fixed;
  z-index: 22;
  width: 42px;
  height: 82px;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) scale(var(--pop-scale, 1));
  transform-origin: 50% 82%;
  filter: drop-shadow(0 10px 12px rgba(25, 17, 10, 0.24));
  animation: icecream-burst 1080ms cubic-bezier(0.16, 0.92, 0.25, 1) var(--delay, 0ms) forwards;
}

.icecream-pop-packaged {
  width: 45px;
  height: 96px;
}

.icecream-pop-open {
  width: 36px;
  height: 78px;
}

.sprite-pop {
  width: 38px;
  height: 92px;
  filter:
    drop-shadow(0 11px 12px rgba(0, 64, 28, 0.22))
    drop-shadow(0 0 10px rgba(62, 224, 119, 0.18));
}

.sprite-pop-1 {
  width: 34px;
  height: 82px;
}

.sprite-pop-2 {
  width: 42px;
  height: 96px;
}

.icecream-pack,
.icecream-bar,
.icecream-stick,
.sprite-bottle {
  display: block;
  position: absolute;
  left: 50%;
}

.icecream-pack {
  top: 0;
  width: 42px;
  height: 88px;
  transform: translateX(-50%);
  border-radius: 7px 7px 8px 8px;
  background:
    linear-gradient(135deg, transparent 0 9%, rgba(157, 121, 255, 0.72) 10% 16%, transparent 17%),
    radial-gradient(circle at 26% 62%, rgba(255, 255, 255, 0.22) 0 11px, transparent 12px),
    linear-gradient(145deg, #37205e 0%, #5a3090 45%, #1d1539 100%);
  box-shadow:
    inset 5px 0 10px rgba(255, 255, 255, 0.18),
    inset -7px -8px 14px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(25, 13, 55, 0.24);
  overflow: hidden;
}

.icecream-pack::before,
.icecream-pack::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 8px;
  background:
    linear-gradient(135deg, transparent 0 34%, #251342 35% 66%, transparent 67%) 0 0 / 8px 8px repeat-x;
}

.icecream-pack::before {
  top: 0;
}

.icecream-pack::after {
  bottom: 0;
  transform: rotate(180deg);
}

.pack-shine {
  position: absolute;
  inset: 7px auto auto 26px;
  width: 9px;
  height: 72px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(24deg);
}

.icecream-pack b {
  position: absolute;
  left: 50%;
  top: 23px;
  width: 34px;
  transform: translateX(-50%) rotate(-8deg);
  color: #fff7e6;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-shadow:
    0 2px 0 #7b2418,
    1px 0 0 #7b2418,
    -1px 0 0 #7b2418;
}

.pack-window {
  position: absolute;
  left: 9px;
  top: 38px;
  width: 22px;
  height: 25px;
  transform: rotate(-11deg);
  border-radius: 9px;
  background:
    radial-gradient(circle at 70% 22%, #d434b8 0 5px, transparent 6px),
    linear-gradient(160deg, #2d1813 0%, #100807 100%);
  box-shadow: 0 0 0 2px rgba(255, 247, 226, 0.72);
}

.pack-window i {
  position: absolute;
  left: 6px;
  bottom: 3px;
  width: 10px;
  height: 12px;
  border-radius: 3px;
  background: #b48764;
  box-shadow: 7px -4px 0 -3px #e7c86f;
}

.icecream-pack em {
  position: absolute;
  left: 6px;
  bottom: 13px;
  width: 31px;
  transform: rotate(-8deg);
  color: #fffaf0;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  text-shadow:
    0 2px 0 #17111c,
    1px 0 0 #17111c,
    -1px 0 0 #17111c;
}

.icecream-bar {
  top: 1px;
  width: 31px;
  height: 55px;
  transform: translateX(-50%);
  border-radius: 15px 15px 9px 9px;
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 255, 255, 0.58) 0 3px, transparent 4px),
    radial-gradient(circle at 30% 76%, #9c6b4e 0 2px, transparent 3px),
    radial-gradient(circle at 63% 64%, #c89562 0 2px, transparent 3px),
    radial-gradient(circle at 36% 28%, #8d5b45 0 2px, transparent 3px),
    linear-gradient(160deg, #6b2f17 0%, #35170f 54%, #160a07 100%);
  box-shadow:
    inset 3px 4px 8px rgba(255, 255, 255, 0.22),
    inset -5px -8px 12px rgba(0, 0, 0, 0.28);
}

.icecream-bite {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  background: #ebe9e5;
  box-shadow: 0 0 0 2px rgba(30, 20, 15, 0.38);
}

.icecream-fill {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 9px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #d13ac6, #7b1674);
}

.icecream-bar em {
  position: absolute;
  right: 4px;
  bottom: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f7d34f;
  box-shadow:
    -9px -3px 0 -2px #f6ead0,
    -4px 6px 0 -3px #f6ead0,
    -14px -18px 0 -3px #c08b62,
    1px -23px 0 -3px #a87052;
}

.icecream-stick {
  bottom: 2px;
  width: 8px;
  height: 23px;
  transform: translateX(-50%);
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, #d9a05e, #9f6535);
  box-shadow: inset 2px 0 3px rgba(255, 255, 255, 0.28);
}

.sprite-bottle {
  top: 2px;
  width: 28px;
  height: 82px;
  transform: translateX(-50%);
  border-radius: 11px 11px 17px 17px / 13px 13px 18px 18px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.82) 0 4px, transparent 5px),
    radial-gradient(circle at 72% 42%, rgba(219, 255, 219, 0.72) 0 3px, transparent 4px),
    radial-gradient(circle at 34% 66%, rgba(231, 255, 225, 0.58) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0 16%, transparent 34% 72%, rgba(0, 74, 31, 0.36)),
    linear-gradient(180deg, #20d86c 0%, #07984d 58%, #006f3b 100%);
  box-shadow:
    inset 4px 0 9px rgba(255, 255, 255, 0.28),
    inset -6px -10px 12px rgba(0, 40, 18, 0.26),
    0 0 0 1px rgba(5, 112, 60, 0.24);
}

.sprite-bottle::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: -8px;
  height: 12px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #fff36c, #e0c92b);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.42);
}

.sprite-bottle::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 39px;
  height: 17px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, transparent 0 20%, rgba(255, 255, 255, 0.72) 21% 38%, transparent 39%),
    linear-gradient(90deg, #eaff6a 0%, #fff176 60%, #f3cc2c 100%);
  transform: rotate(-8deg);
  box-shadow: 0 1px 3px rgba(0, 63, 30, 0.22);
}

.sprite-bottle b {
  position: absolute;
  left: 50%;
  top: 42px;
  z-index: 1;
  width: 26px;
  transform: translateX(-50%) rotate(-8deg);
  color: #047a42;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.sprite-bottle em {
  position: absolute;
  inset: 11px auto auto 8px;
  width: 5px;
  height: 62px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transform: rotate(6deg);
}

.icecream-pop-packaged.icecream-pop-2 .icecream-pack {
  width: 39px;
  background:
    linear-gradient(135deg, transparent 0 9%, rgba(95, 188, 241, 0.42) 10% 16%, transparent 17%),
    radial-gradient(circle at 28% 62%, rgba(255, 255, 255, 0.2) 0 11px, transparent 12px),
    linear-gradient(145deg, #2b1a52 0%, #6a34a4 45%, #17112e 100%);
}

.icecream-pop-open.icecream-pop-1 .icecream-bar {
  height: 52px;
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 255, 255, 0.56) 0 3px, transparent 4px),
    radial-gradient(circle at 31% 73%, #9c6b4e 0 2px, transparent 3px),
    radial-gradient(circle at 64% 64%, #c89562 0 2px, transparent 3px),
    linear-gradient(160deg, #7a3a1e 0%, #40190f 58%, #1b0b07 100%);
}

.icecream-pop-open.icecream-pop-3 .icecream-bar {
  width: 29px;
  background:
    radial-gradient(circle at 66% 20%, rgba(255, 255, 255, 0.54) 0 3px, transparent 4px),
    radial-gradient(circle at 30% 75%, #9c6b4e 0 2px, transparent 3px),
    radial-gradient(circle at 66% 61%, #c89562 0 2px, transparent 3px),
    linear-gradient(160deg, #5e2817 0%, #2c120c 60%, #110604 100%);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes particle-pop {
  to {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0.2);
  }
}

@keyframes icecream-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.28) rotate(calc(var(--rot, 0deg) - 18deg));
  }
  14% {
    opacity: 1;
  }
  72% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform:
      translate(calc(-50% + var(--dx)), calc(-50% + var(--dy)))
      scale(calc(var(--pop-scale, 1) * 0.86))
      rotate(calc(var(--rot, 0deg) + 245deg));
  }
}

@media (min-width: 720px) {
  body {
    padding: 28px 0;
  }

  .app-shell {
    min-height: min(900px, calc(100svh - 56px));
    border: 1px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
  }
}

@media (max-width: 340px) {
  .quick-grid,
  .sound-grid {
    grid-template-columns: 1fr;
  }

  .effect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 380px) {
  .action-dock {
    gap: 9px;
    padding-inline: 14px;
  }

  .dock-button {
    min-width: 54px;
    height: 54px;
    font-size: 1.42rem;
  }

  .dock-round {
    width: 54px;
  }

  .dock-pill {
    min-width: 96px;
    padding-inline: 16px;
    font-size: 0.82rem;
  }

  .run-button {
    min-width: 124px;
    padding-inline: 18px;
  }

  .live-line {
    margin-top: 72px;
  }
}
