:root {
  --bg: #0a0911;
  --screen: #05040a;
  --surface: #13111e;
  --surface-2: #1d1929;
  --ink: #efead9;
  --muted: rgba(239, 234, 217, .58);
  --faint: rgba(239, 234, 217, .3);
  --line: rgba(239, 234, 217, .1);
  --lime: #c8da56;
  --blue: #5566d6;
  --coral: #d9876b;
  --cream: #f4f1e6;
  --danger: #ee6352;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  overscroll-behavior: none;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: var(--bg);
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  touch-action: manipulation;
}

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

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.app {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--screen);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(239, 234, 217, .06);
}

.search-chrome {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: calc(4px + env(safe-area-inset-top)) 16px 0;
  pointer-events: none;
}

.search-pill {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 2px;
  height: 48px;
  border: 1px solid rgba(239, 234, 217, .1);
  border-radius: 24px;
  background: rgba(19, 17, 30, .86);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
  padding: 0 12px 0 10px;
  pointer-events: auto;
}

.klo-dot,
.klo-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #05040a;
  font-weight: 900;
}

.klo-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 30%, var(--cream) 0%, var(--lime) 45%, var(--blue) 100%);
  box-shadow: 0 5px 18px rgba(200, 218, 86, .38), inset 0 0 9px rgba(217, 135, 107, .14);
}

.klo-dot span,
.klo-nav span,
.kicker,
.feed-tabs,
.meta-row,
.bottom-nav span,
.drawer-status {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  text-transform: uppercase;
}

.search-pill input {
  min-width: 0;
  height: 46px;
  border: 0;
  border-radius: 999px;
  outline: 0;
  background: transparent;
  color: var(--ink);
  caret-color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
}

.search-submit {
  justify-self: stretch;
  width: auto;
  height: 36px;
  border-left: 1px solid rgba(239, 234, 217, .14);
  border-radius: 0;
  background: transparent;
  color: var(--lime);
  box-shadow: none;
}

.search-submit svg {
  width: 23px;
  height: 23px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feed-tabs {
  position: relative;
  height: 48px;
  margin-top: 16px;
  pointer-events: auto;
}

.feed-tabs button {
  position: absolute;
  top: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  background: none;
  color: rgba(239, 234, 217, .76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .44);
}

.feed-tabs button:nth-child(1) {
  left: 41px;
}

.feed-tabs button:nth-child(2) {
  left: 96px;
}

.feed-tabs button:nth-child(3) {
  left: 233px;
}

.feed-tabs button.is-active {
  color: var(--ink);
}

.feed-tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
}

.dot-cluster {
  display: inline-flex;
  align-items: center;
  margin-left: -3px;
}

.dot-cluster i {
  width: 15px;
  height: 15px;
  margin-left: -7px;
  border: 1.5px solid rgba(239, 234, 217, .26);
  border-radius: 999px;
  background: rgba(5, 4, 10, .1);
}

.dot-cluster i:first-child {
  margin-left: 0;
}

.dot-cluster.coral i:first-child {
  border-color: var(--coral);
}

.dot-cluster.lime i:first-child {
  border-color: var(--lime);
}

.video-feed {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: auto;
  scrollbar-width: none;
  touch-action: pan-y;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--bg);
}

.video-feed::-webkit-scrollbar {
  display: none;
}

.reel {
  position: relative;
  min-height: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  isolation: isolate;
  contain: layout paint;
  background:
    linear-gradient(145deg, rgba(200, 218, 86, .12), transparent 32%),
    linear-gradient(315deg, rgba(85, 102, 214, .2), transparent 42%),
    #0d0a16;
}

.reel.tone-coral {
  background:
    linear-gradient(145deg, rgba(217, 135, 107, .26), transparent 34%),
    linear-gradient(315deg, rgba(200, 218, 86, .12), transparent 42%),
    #0d0a16;
}

.reel.tone-blue {
  background:
    linear-gradient(145deg, rgba(85, 102, 214, .32), transparent 35%),
    linear-gradient(315deg, rgba(217, 135, 107, .18), transparent 42%),
    #0d0a16;
}

.reel::before {
  content: "";
  position: absolute;
  inset: 64px 0 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(18, 18, 22, .96) 8%, rgba(48, 48, 54, .9) 18%, rgba(18, 18, 22, .96) 33%),
    #18181d;
  background-size: 220% 100%;
  animation: reel-loading 1.05s linear infinite;
  pointer-events: none;
  transition: opacity .12s ease;
}

.reel.is-playing::before,
.reel.is-prewarmed::before {
  opacity: 0;
}

.reel-poster,
.video-host,
.video-host video,
.reel-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reel-poster,
.video-host video {
  object-fit: cover;
}

.reel-poster {
  z-index: 0;
  opacity: 0;
  transform: scale(1.01);
}

.video-host {
  z-index: 2;
  pointer-events: none;
  top: 64px;
  height: calc(100% - 64px);
}

.video-host video {
  background: transparent;
  opacity: 0;
  transition: opacity .12s ease;
}

.reel.is-playing .video-host video,
.reel.is-prewarmed .video-host video {
  opacity: 1;
}

.reel.is-playing .reel-poster,
.reel.is-prewarmed .reel-poster {
  opacity: 0;
}

.reel-scrim {
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(5, 4, 10, .66), rgba(5, 4, 10, .08) 24%, rgba(5, 4, 10, .08) 58%, rgba(5, 4, 10, .84)),
    linear-gradient(90deg, rgba(5, 4, 10, .2), transparent 52%, rgba(5, 4, 10, .28));
  pointer-events: none;
}

@keyframes reel-loading {
  to {
    background-position: -220% 0;
  }
}

.pip-card {
  position: absolute;
  left: 6px;
  top: calc(483px + env(safe-area-inset-top));
  z-index: 18;
  width: 104px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, .68);
  border-radius: 10px;
  background:
    linear-gradient(110deg, rgba(18, 18, 22, .96) 8%, rgba(48, 48, 54, .9) 18%, rgba(18, 18, 22, .96) 33%),
    #18181d;
  background-size: 220% 100%;
  animation: reel-loading 1.05s linear infinite;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .5);
  padding: 0;
}

.pip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pip-card img[src^="data:image"] {
  opacity: 0;
}

.video-hit {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
}

.reel.needs-gesture .video-hit {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.play-mark {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(239, 234, 217, .7);
  border-radius: 999px;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .96), rgba(200, 218, 86, .92) 48%, rgba(85, 102, 214, .72));
  color: #05040a;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 0 12px rgba(200, 218, 86, .18), 0 18px 46px rgba(0, 0, 0, .46);
  transform: translateY(-92px);
}

.play-mark svg {
  width: 34px;
  height: 34px;
  margin-left: 5px;
  fill: currentColor;
}

.play-copy {
  min-width: 86px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 234, 217, .18);
  border-radius: 999px;
  background: rgba(5, 4, 10, .62);
  color: var(--ink);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  transform: translateY(-92px);
  backdrop-filter: blur(10px);
}

.reel.is-playing .video-hit,
.reel.is-buffering .video-hit {
  opacity: 0;
  pointer-events: none;
}

.rail {
  position: absolute;
  top: calc(156px + env(safe-area-inset-top));
  right: 12px;
  z-index: 12;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.rail button {
  width: 62px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 15px;
  background: rgba(0, 0, 0, .55);
  color: var(--ink);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
}

.rail svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rail .tryon-rail {
  width: auto;
  min-width: 78px;
  height: 34px;
  padding: 0 13px;
  border-color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .94);
  color: #05040a;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 0 0 8px rgba(200, 218, 86, .1), 0 12px 28px rgba(0, 0, 0, .28);
}

.rail button.is-saved {
  color: var(--lime);
  border-color: rgba(200, 218, 86, .56);
}

.reel-copy {
  display: none;
}

.kicker {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
}

h1,
h2,
p {
  margin: 0;
}

.reel-copy h1 {
  max-width: 10.5ch;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 10vw, 46px);
  font-style: italic;
  font-weight: 500;
  line-height: .94;
  letter-spacing: 0;
}

.reel-copy p {
  max-width: 26ch;
  margin-top: 10px;
  color: rgba(239, 234, 217, .76);
  font-size: 14px;
  line-height: 1.45;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  color: rgba(239, 234, 217, .7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  border: 1px solid rgba(239, 234, 217, .12);
  border-radius: 999px;
  background: rgba(5, 4, 10, .42);
  padding: 0 9px;
  backdrop-filter: blur(10px);
}

#backendStatus i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--danger);
}

#backendStatus.ok i {
  background: var(--lime);
  box-shadow: 0 0 10px rgba(200, 218, 86, .45);
}

.peek-drawer {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: calc(54px + env(safe-area-inset-bottom));
  z-index: 48;
  max-height: min(58dvh, 470px);
  overflow: hidden;
  border: 1px solid rgba(239, 234, 217, .12);
  border-radius: 22px 22px 18px 18px;
  background: rgba(5, 4, 10, .5);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .44);
  backdrop-filter: blur(18px);
  padding: 11px 18px 9px;
  transform: translateY(0);
  transition: transform .24s ease, max-height .24s ease, opacity .24s ease;
}

.app[data-drawer-state="closed"] .peek-drawer {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.app[data-drawer-state="peek"] .peek-drawer {
  max-height: 148px;
}

.app[data-drawer-state="open"] .peek-drawer {
  background: rgba(19, 17, 30, .92);
  overflow-y: auto;
  scrollbar-width: none;
}

.app[data-drawer-state="open"][data-drawer-mode="gallery"] .peek-drawer {
  bottom: calc(86px + env(safe-area-inset-bottom));
  max-height: min(72dvh, 650px);
}

.app[data-drawer-state="open"] .reel-copy {
  opacity: .42;
}

.app[data-drawer-state="open"] .peek-drawer::-webkit-scrollbar {
  display: none;
}

.drawer-close {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 30px;
  height: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--ink);
}

.app[data-drawer-state="open"] .drawer-close {
  display: inline-flex;
}

.drawer-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.drawer-status {
  color: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .28em;
}

.drawer-handle {
  width: 44px;
  height: 5px;
  display: block;
  margin: 0 auto 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(239, 234, 217, .42);
  padding: 0;
}

.drawer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
}

.peek-drawer h2 {
  max-width: 14ch;
  margin-top: 5px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.02;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.peek-drawer p {
  max-width: 31ch;
  margin-top: 6px;
  color: rgba(239, 234, 217, .84);
  font-size: 13px;
  line-height: 1.18;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.drawer-price {
  min-width: 88px;
  padding-top: 21px;
  color: var(--ink);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-align: right;
}

.product-list {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.app[data-drawer-state="peek"] .product-list {
  display: none;
}

.drawer-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 12px;
  margin-top: 8px;
}

.app[data-drawer-state="open"] .drawer-actions {
  display: none;
}

.claim-btn,
.buy-btn {
  min-height: 42px;
  border-radius: 16px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .08em;
}

.claim-btn {
  display: grid;
  place-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, .36);
  background: linear-gradient(180deg, rgba(231, 248, 118, .98), rgba(200, 218, 86, .9));
  color: #05040a;
  box-shadow: 0 0 24px rgba(200, 218, 86, .26);
}

.claim-btn span {
  color: rgba(5, 4, 10, .44);
  font-size: 9px;
  font-weight: 900;
}

.claim-btn strong {
  font-size: 13px;
  font-weight: 900;
}

.buy-btn {
  border: 1px solid rgba(239, 234, 217, .18);
  background: rgba(5, 4, 10, .32);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.product-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  border: 1px solid rgba(239, 234, 217, .1);
  border-radius: 8px;
  background: rgba(5, 4, 10, .34);
  padding: 7px;
}

.product-card img,
.product-fallback {
  width: 52px;
  height: 52px;
  border-radius: 7px;
  object-fit: cover;
  background: var(--surface-2);
}

.product-fallback {
  display: grid;
  place-items: center;
  color: var(--lime);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
}

.product-card strong,
.product-card span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card strong {
  color: var(--ink);
  font-size: 13px;
}

.product-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.product-card button,
.product-card a {
  min-width: 48px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--lime);
  color: #05040a;
  font-size: 11px;
  font-weight: 850;
}

.product-list.is-gallery {
  gap: 10px;
}

.product-gallery {
  display: grid;
  gap: 9px;
}

.product-gallery-hero {
  position: relative;
  width: 100%;
  max-height: min(42dvh, 330px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(239, 234, 217, .12);
  border-radius: 10px;
  background: rgba(5, 4, 10, .46);
}

.product-gallery-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-gallery-count {
  position: absolute;
  top: 8px;
  right: 8px;
  min-width: 38px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 234, 217, .18);
  border-radius: 999px;
  background: rgba(5, 4, 10, .62);
  color: var(--ink);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 900;
}

.product-gallery-strip {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 58px;
  gap: 7px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 0;
}

.product-gallery-strip::-webkit-scrollbar {
  display: none;
}

.product-gallery-thumb {
  width: 58px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(239, 234, 217, .36);
  border-radius: 8px;
  background: rgba(5, 4, 10, .52);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .34);
  opacity: .74;
  padding: 0;
  scroll-snap-align: start;
  touch-action: manipulation;
}

.product-gallery-thumb.is-active {
  border-color: var(--lime);
  opacity: 1;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-gallery-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 10px;
}

.product-gallery-actions button,
.product-gallery-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--lime);
  color: #05040a;
  font-size: 11px;
  font-weight: 900;
}

.product-gallery-actions a {
  text-decoration: none;
}

.drawer-form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.drawer-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.drawer-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(239, 234, 217, .12);
  border-radius: 8px;
  outline: 0;
  background: rgba(5, 4, 10, .38);
  color: var(--ink);
  padding: 0 10px;
  font-size: 16px;
}

.drawer-form button {
  min-height: 42px;
  border-radius: 999px;
  background: var(--lime);
  color: #05040a;
  font-weight: 850;
}

#flowOutput {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: pre;
}

.bottom-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 28px;
  margin-bottom: calc(8px + env(safe-area-inset-bottom));
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
  padding: 8px 5px;
}

.bottom-nav a,
.klo-nav {
  flex: 1;
  min-width: 0;
  min-height: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  background: none;
  color: var(--muted);
}

.bottom-nav a.active {
  color: var(--lime);
}

.bottom-nav svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bottom-nav .active svg {
  stroke-width: 2.2;
}

.bottom-nav span {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .08em;
}

.klo-nav {
  position: relative;
  min-height: 36px;
}

.klo-nav span {
  width: 58px;
  height: 58px;
  margin-top: -26px;
  margin-bottom: -15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--surface);
  border-radius: 999px;
  background: radial-gradient(circle at 32% 30%, var(--cream) 0%, var(--lime) 45%, var(--blue) 100%);
  color: #05040a;
  box-shadow: 0 5px 18px rgba(200, 218, 86, .38), inset 0 0 9px rgba(217, 135, 107, .14);
  font-size: 10px;
  font-weight: 900;
  transform: translateY(4px);
}

@media (min-width: 600px) {
  .app {
    margin-top: 24px;
    margin-bottom: 24px;
    height: calc(100dvh - 48px);
    max-height: 880px;
    border-radius: 28px;
  }
}

@media (max-width: 380px) {
  .bottom-nav {
    margin-left: 18px;
    margin-right: 18px;
  }

  .reel-copy {
    right: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
