@import url("https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Bungee&family=Lilita+One&family=Luckiest+Guy&display=swap");

:root {
  color-scheme: dark;
  --bg: #000000;
  --panel: #050505;
  --panel-raised: #0b0b0b;
  --ink: #ffffff;
  --muted: #b8b8b8;
  --line: #2a2a2a;
  --line-strong: #ffffff;
  --green: #8bff58;
  --green-deep: #55c62f;
  --danger: #ff4a4a;
  --warning: #ffd75c;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.46);
  --timer-display-font: "Lilita One", Impact, Haettenschweiler, "Arial Black", "Arial Narrow Bold", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(139, 255, 88, 0.08), transparent 210px),
    var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: relative;
  display: flex;
  width: min(1160px, calc(100% - 32px));
  min-height: 112px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.brand-mark img {
  display: block;
  width: clamp(126px, 15vw, 190px);
  height: auto;
}

.live-stack {
  position: absolute;
  top: 34px;
  right: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.live-users-pill {
  position: absolute;
  top: 34px;
  left: 0;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--green-deep);
  border-radius: 8px;
  padding: 0 13px;
  background: #070707;
  color: var(--green);
  box-shadow:
    inset 0 0 0 1px rgba(139, 255, 88, 0.08),
    0 0 18px rgba(139, 255, 88, 0.18);
  text-transform: uppercase;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.live-users-pill svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(139, 255, 88, 0.42));
}

.live-users-pill strong {
  min-width: 24px;
  color: var(--ink);
  text-align: right;
  font-size: 0.76rem;
}

.viewer-auth {
  position: absolute;
  top: 78px;
  left: 0;
  display: inline-flex;
  min-height: 36px;
  max-width: min(310px, 34vw);
  align-items: center;
}

.viewer-auth[data-state="loading"] {
  display: none;
}

.viewer-auth-button,
.viewer-auth-profile {
  display: inline-flex;
  min-height: 36px;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  border: 1px solid #6f45ff;
  border-radius: 8px;
  padding: 0 11px;
  background: #070707;
  color: var(--ink);
  box-shadow:
    inset 0 0 0 1px rgba(145, 88, 255, 0.08),
    0 0 18px rgba(112, 69, 255, 0.16);
  text-transform: uppercase;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
}

.viewer-auth-button:hover,
.viewer-auth-button:focus-visible,
.viewer-auth-logout:hover,
.viewer-auth-logout:focus-visible {
  border-color: #a98cff;
  outline: none;
}

.viewer-auth-button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.viewer-auth-profile {
  gap: 9px;
  padding: 0 6px 0 5px;
}

.viewer-auth-avatar {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #151515;
  object-fit: cover;
}

.viewer-auth-name {
  display: inline-flex;
  min-width: 0;
  max-width: 164px;
  flex-direction: column;
  gap: 1px;
  color: var(--muted);
  font-size: 0.56rem;
  line-height: 1.05;
}

.viewer-auth-name strong {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.68rem;
}

.viewer-auth-logout {
  min-height: 26px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 0 8px;
  background: #101010;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.56rem;
  font-weight: 900;
}

.live-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: #070707;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
}

.stream-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.platform-name {
  display: inline-block;
}

.live-pill:hover,
.live-pill:focus-visible {
  border-color: var(--danger);
  outline: none;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8f8f8f;
  box-shadow: 0 0 0 3px rgba(143, 143, 143, 0.16);
}

.live-pill[data-live="true"] .live-dot {
  background: var(--danger);
  box-shadow:
    0 0 0 3px rgba(255, 74, 74, 0.25),
    0 0 16px rgba(255, 74, 74, 0.9),
    0 0 34px rgba(255, 74, 74, 0.45);
  animation: live-dot-pulse 1200ms ease-in-out infinite;
}

.live-pill[data-live="unknown"] .live-dot {
  background: var(--warning);
  box-shadow: 0 0 0 3px rgba(255, 215, 92, 0.2);
}

.site-notifications {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 120;
  display: flex;
  width: min(360px, calc(100vw - 24px));
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.site-toast {
  --toast-accent: var(--green);
  display: grid;
  min-height: 92px;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--toast-accent);
  border-radius: 8px;
  padding: 13px 14px 13px 12px;
  background: #070707;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.52),
    inset 12px 0 20px -24px rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translate3d(18px, 10px, 0) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.site-toast.is-leaving {
  opacity: 0;
  transform: translate3d(18px, 8px, 0) scale(0.98);
}

.site-toast-media {
  --toast-accent: #59b8ff;
}

.site-toast-tts {
  --toast-accent: #d590ff;
}

.site-toast-timer,
.site-toast-timer_bonus {
  --toast-accent: #ffd75c;
}

.site-toast-timer_bonus_x10 {
  --toast-accent: #ba55ff;
  border-color: rgba(186, 85, 255, 0.48);
  border-left-color: #ba55ff;
}

.site-toast-timer_bonus_x5 {
  --toast-accent: #ffd75c;
  border-color: rgba(255, 216, 74, 0.5);
  border-left-color: #ffd75c;
}

.site-toast-timer_bonus_x2 {
  --toast-accent: #36c8ff;
  border-color: rgba(54, 200, 255, 0.5);
  border-left-color: #36c8ff;
}

.site-toast-timer_bonus_random {
  --toast-accent: #8fff36;
  border-color: rgba(143, 255, 54, 0.44);
  border-left-color: #8fff36;
}

.site-toast-map {
  --toast-accent: #67e8a5;
}

.site-toast-completion {
  --toast-accent: #ffffff;
}

.site-toast-print,
.site-toast-menu,
.site-toast-menu_funding {
  --toast-accent: var(--green);
}

.site-toast-twitch_bits,
.site-toast-twitch_sub {
  --toast-accent: #a970ff;
}

.site-toast-kick_sub {
  --toast-accent: var(--green);
}

.site-toast-mcerbals {
  --toast-accent: #ffc72c;
  border-color: rgba(255, 199, 44, 0.54);
  border-left-color: #b30d14;
}

.site-toast-menu_premium {
  --toast-accent: #ffd84a;
  border-color: rgba(255, 214, 102, 0.92);
  border-left-color: #ffd84a;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 214, 102, 0.16),
    0 0 22px rgba(255, 214, 102, 0.2);
  animation: menu-premium-glow 2.4s ease-in-out infinite alternate;
}

.site-toast-visual {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--toast-accent) 66%, transparent);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--toast-accent);
  line-height: 0;
}

.site-toast-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-toast-visual svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.site-toast-menu_premium .site-toast-visual {
  border-color: #ffd84a;
  background: linear-gradient(135deg, #fff1a6, #ffd84a 45%, #b87a10);
  color: #000000;
  box-shadow: 0 0 16px rgba(255, 216, 74, 0.28);
}

.site-toast-menu_premium .site-toast-top strong,
.site-toast-timer_bonus_x10 .site-toast-top strong {
  display: inline-block;
  background: linear-gradient(90deg, #ff45d6, #ffd84a, #7cff4d, #40d8ff, #b57cff, #ff45d6);
  background-size: 320% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: menu-premium-price-rainbow 2s linear infinite;
}

.site-toast-menu_premium .site-toast-meta span {
  border-color: #ffd84a;
  background: linear-gradient(135deg, #fff1a6, #ffd84a 45%, #b87a10);
  color: #000000;
}

.site-toast-timer_bonus_x10 .site-toast-visual {
  border-color: #ba55ff;
  background: conic-gradient(from 15deg, #ff4a4a, #ffd75c, #8bff58, #36c8ff, #ba55ff, #ff4a4a);
  color: #070707;
  box-shadow: 0 0 18px rgba(186, 85, 255, 0.28);
}

.site-toast-timer_bonus_x5 .site-toast-visual {
  border-color: #ffd75c;
  background: rgba(255, 215, 92, 0.12);
}

.site-toast-timer_bonus_x2 .site-toast-visual {
  border-color: #36c8ff;
  background: rgba(54, 200, 255, 0.1);
}

.site-toast-timer_bonus_random .site-toast-visual {
  border-color: #8fff36;
  background: rgba(143, 255, 54, 0.1);
}

.site-toast-content {
  min-width: 0;
}

.site-toast-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: baseline;
}

.site-toast-top strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-toast-top span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.site-toast-subtitle,
.site-toast-message {
  display: -webkit-box;
  overflow: hidden;
  margin: 5px 0 0;
  color: #e6e6e6;
  font-size: 0.82rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
}

.site-toast-subtitle {
  -webkit-line-clamp: 1;
}

.site-toast-message {
  color: var(--muted);
  -webkit-line-clamp: 2;
}

.site-toast-meta {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.site-toast-meta span {
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 3px 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #f4f4f4;
  font-size: 0.68rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes live-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 3px rgba(255, 74, 74, 0.24),
      0 0 14px rgba(255, 74, 74, 0.78),
      0 0 28px rgba(255, 74, 74, 0.38);
  }

  50% {
    transform: scale(1.22);
    box-shadow:
      0 0 0 5px rgba(255, 74, 74, 0.12),
      0 0 24px rgba(255, 74, 74, 1),
      0 0 48px rgba(255, 74, 74, 0.58);
  }
}

.page-shell {
  width: min(760px, calc(100% - 28px));
  min-height: calc(100vh - 112px);
  margin: 0 auto;
  padding: 10px 0 58px;
}

.checkout-panel {
  display: grid;
  min-width: 0;
  gap: 16px;
}

.social-link-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
  width: 100%;
  min-height: 64px;
  margin-top: 12px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: #000000;
}

.social-link {
  display: inline-flex;
  min-width: 0;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px;
  color: #f5f5f5;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 140ms ease, text-shadow 140ms ease, transform 140ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--green);
  text-shadow: 0 0 12px rgba(139, 255, 88, 0.34);
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -8px;
}

.social-link img {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.social-link span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.social-link-divider {
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}

.terms-link-row {
  display: flex;
  justify-content: center;
  padding: 8px 0 0;
}

.terms-footer-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.56rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-shadow: 0 0 8px rgba(139, 255, 88, 0.34);
  text-transform: uppercase;
  transition: color 140ms ease, filter 140ms ease, transform 140ms ease;
}

.terms-footer-link:hover,
.terms-footer-link:focus-visible {
  color: #b8ff9a;
  filter: drop-shadow(0 0 10px rgba(139, 255, 88, 0.42));
  transform: translateY(-1px);
}

.terms-footer-link:focus-visible {
  border-radius: 6px;
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.terms-footer-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(2.1rem, 7vw, 4.7rem);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.donation-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 8px;
  overflow: visible;
  padding-bottom: 10px;
}

.tab-button,
.method-card,
.primary-button,
.preset-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #030303;
  color: var(--ink);
  text-transform: uppercase;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.tab-button {
  position: relative;
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: visible;
  padding: 0 10px;
  line-height: 1.1;
  white-space: normal;
}

.tab-button::after {
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 48%;
  max-width: 70px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: translateX(-50%) scaleX(0.75);
  transition: opacity 140ms ease, transform 140ms ease;
}

.tab-button.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.tab-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.tab-image-icon {
  object-fit: contain;
}

.tab-button.is-active,
.method-card.is-active,
.preset-button.is-active,
.print-redeem-button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #000000;
}

.tab-button:hover,
.method-card:hover,
.preset-button:hover,
.print-redeem-button:hover {
  border-color: var(--green);
}

.tab-button[disabled],
.tab-button[disabled]:hover {
  border-color: rgba(255, 215, 92, 0.55);
  background: rgba(255, 215, 92, 0.08);
  color: var(--warning);
  cursor: not-allowed;
}

.tab-button[disabled]::after {
  display: none;
}

.donation-form,
.payment-section,
.setup-warning,
.payment-status {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.donation-form,
.payment-section {
  display: grid;
  min-width: 0;
  gap: 16px;
  padding: 20px;
}

.setup-warning,
.payment-status {
  min-height: 50px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  color: var(--muted);
  line-height: 1.35;
}

.setup-warning {
  border-color: var(--danger);
  color: var(--danger);
}

.payment-status {
  animation: alert-pop 160ms ease both;
  gap: 14px;
  background:
    linear-gradient(90deg, rgba(139, 255, 88, 0.16), transparent 60%),
    var(--panel);
}

.payment-status.is-hiding {
  animation: alert-fade 220ms ease both;
}

.payment-status[data-kind="success"] {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 28px rgba(139, 255, 88, 0.14), var(--shadow);
}

.payment-status[data-kind="error"] {
  border-color: var(--danger);
  color: var(--danger);
}

.payment-status[data-kind="notice"] {
  border-color: var(--warning);
  color: var(--warning);
}

.status-icon,
.status-end-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green);
}

.status-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #000000;
}

.status-icon svg,
.status-end-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.status-copy {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.status-title {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-body {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

@keyframes alert-pop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes alert-fade {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}

.payment-note,
.payment-helper span {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
.field-grid label > span:first-child,
.card-label > span:first-child {
  margin-bottom: 8px;
  display: block;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.amount-fieldset legend {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.amount-fieldset legend > span:first-child {
  min-width: 0;
}

.money-control {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #000000;
}

.money-input {
  display: grid;
  gap: 8px;
}

.money-input::after {
  content: "$1 minimum";
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.donation-form.is-media-purpose .money-input::after {
  display: none;
}

.donation-form.is-media-purpose .amount-fieldset > legend,
.donation-form.is-media-purpose .money-input {
  display: none;
}

.donation-form.is-print-purpose .amount-fieldset > legend,
.donation-form.is-print-purpose .money-input {
  display: none;
}

.donation-form.is-print-purpose .money-input::after {
  content: none;
  display: none;
}

.donation-form.is-tts-purpose .amount-fieldset {
  display: none;
}

.donation-form.is-timer-purpose .amount-fieldset {
  display: none;
}

.donation-form.is-menu-purpose .amount-fieldset {
  display: none;
}

.donation-form.is-road-trip-purpose .amount-fieldset {
  display: none;
}

.donation-form.is-road-trip-photo-only .field-grid,
.donation-form.is-road-trip-photo-only .field-note {
  display: none;
}

.currency-symbol {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
}

.currency-symbol img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  color: var(--ink);
  outline: none;
  padding: 11px 12px;
  font-weight: 800;
}

input {
  min-height: 54px;
}

textarea {
  min-height: 54px;
  overflow: hidden;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: #7d7d7d;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.18);
}

.money-control input {
  height: 100%;
  border: 0;
  border-radius: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
}

.money-control input:focus {
  box-shadow: none;
}

.money-control input[readonly] {
  cursor: default;
}

.preset-row,
.print-redeem-row {
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 8px;
  margin-top: 10px;
  overflow: hidden;
}

.preset-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.print-redeem-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.print-panel {
  display: grid;
  gap: 14px;
}

.print-panel[hidden] {
  display: none;
}

.menu-panel {
  display: grid;
  gap: 16px;
}

.menu-panel[hidden] {
  display: none;
}

.road-trip-panel {
  display: grid;
  gap: 8px;
}

.road-trip-panel[hidden] {
  display: none;
}

.road-trip-panel.is-photo-map-only .road-trip-map-shell,
.road-trip-panel.is-photo-map-only .road-trip-map {
  min-height: 0;
  height: min(68vh, 620px);
}

.road-trip-heading,
.road-trip-total-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.road-trip-heading h2 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.road-trip-heading p,
.road-trip-total-row small,
.road-trip-empty-cart {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.road-trip-rate-shell {
  position: relative;
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 6px;
}

.road-trip-rate-shell > strong {
  justify-self: end;
  min-width: 104px;
  color: var(--green);
  text-align: center;
  text-transform: uppercase;
}

.road-trip-pricing-info-button {
  display: inline-flex;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 255, 88, 0.68);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.76);
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  padding: 0;
  text-transform: uppercase;
  box-shadow: 0 0 7px rgba(139, 255, 88, 0.1);
  cursor: pointer;
}

.road-trip-pricing-info-button:hover,
.road-trip-pricing-info-button[aria-expanded="true"] {
  background: rgba(139, 255, 88, 0.12);
}

.road-trip-pricing-info-button span {
  display: block;
  transform: translateY(-0.5px);
}

.road-trip-pricing-info-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147483210;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.82);
  padding: clamp(10px, 2vw, 28px);
}

.road-trip-pricing-info-backdrop[hidden] {
  display: none;
}

.road-trip-pricing-info-dialog {
  position: relative;
  display: grid;
  width: min(1120px, 100%);
  max-height: min(94vh, 920px);
  gap: clamp(12px, 1.8vw, 20px);
  overflow: auto;
  border: 1px solid rgba(139, 255, 88, 0.78);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 34%, rgba(139, 255, 88, 0.06), transparent 32%), #020302;
  color: var(--ink);
  padding: clamp(18px, 3vw, 38px);
  text-align: left;
  box-shadow: 0 0 0 1px rgba(139, 255, 88, 0.16), 0 24px 90px rgba(0, 0, 0, 0.72), 0 0 28px rgba(139, 255, 88, 0.12);
}

.road-trip-pricing-info-close {
  position: absolute;
  top: clamp(14px, 2.2vw, 28px);
  right: clamp(14px, 2.2vw, 28px);
  display: grid;
  width: clamp(42px, 5vw, 58px);
  height: clamp(42px, 5vw, 58px);
  place-items: center;
  border: 1px solid rgba(139, 255, 88, 0.62);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(139, 255, 88, 0.16);
  cursor: pointer;
}

.road-trip-pricing-info-head {
  display: grid;
  gap: 8px;
  padding-right: clamp(52px, 8vw, 84px);
}

.road-trip-pricing-info-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(2.1rem, 6vw, 4.35rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.2), 0 0 18px rgba(255, 255, 255, 0.08);
}

.road-trip-pricing-info-head p,
.road-trip-pricing-info p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 2.1vw, 1.35rem);
  font-weight: 800;
  line-height: 1.32;
}

.road-trip-pricing-chart {
  display: grid;
  min-height: 0;
  border: 1px solid rgba(139, 255, 88, 0.66);
  border-radius: 8px;
  background: rgba(139, 255, 88, 0.035);
  padding: clamp(8px, 1.2vw, 12px);
  box-shadow: inset 0 0 28px rgba(139, 255, 88, 0.06), 0 0 18px rgba(139, 255, 88, 0.08);
}

.road-trip-pricing-chart svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: min(39vh, 300px);
  overflow: visible;
}

.road-trip-pricing-chart-panel {
  fill: rgba(0, 0, 0, 0.48);
  stroke: rgba(139, 255, 88, 0.12);
  stroke-width: 1;
}

.road-trip-pricing-chart-grid {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-dasharray: 3 5;
  stroke-width: 1;
}

.road-trip-pricing-chart-grid.is-vertical {
  stroke: rgba(255, 255, 255, 0.18);
}

.road-trip-pricing-chart-axis {
  stroke: rgba(255, 255, 255, 0.56);
  stroke-width: 1.5;
}

.road-trip-pricing-chart-area {
  fill: rgba(139, 255, 88, 0.11);
}

.road-trip-pricing-chart-line {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
  filter: url("#road-trip-pricing-chart-glow-filter");
}

.road-trip-pricing-chart-glow {
  fill: rgba(139, 255, 88, 0.26);
  filter: url("#road-trip-pricing-chart-glow-filter");
}

.road-trip-pricing-chart-dot {
  fill: #000;
  stroke: var(--green);
  stroke-width: 6;
}

.road-trip-pricing-chart-y-label,
.road-trip-pricing-chart-x-mile,
.road-trip-pricing-chart-x-price,
.road-trip-pricing-chart-axis-title {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.road-trip-pricing-chart-y-label,
.road-trip-pricing-chart-axis-title {
  fill: var(--muted);
  font-size: 18px;
}

.road-trip-pricing-chart-axis-title.is-y {
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(-90deg);
  font-size: 19px;
}

.road-trip-pricing-chart-axis-title.is-x {
  font-size: 20px;
  letter-spacing: 0;
}

.road-trip-pricing-chart-x-mile {
  fill: var(--ink);
  font-size: 18px;
}

.road-trip-pricing-chart-x-price {
  fill: var(--green);
  font-size: 21px;
}

.road-trip-pricing-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.5vw, 18px);
  padding: 0 clamp(0px, 3vw, 34px);
}

.road-trip-pricing-tags span {
  display: inline-flex;
  min-height: clamp(44px, 6vw, 58px);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 255, 88, 0.7);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(0.68rem, 1.7vw, 1.05rem);
  line-height: 1;
  padding: 0 14px;
  text-align: center;
  text-transform: uppercase;
}

.road-trip-pricing-detail-grid {
  display: grid;
  gap: 12px;
}

.road-trip-pricing-detail-grid article {
  display: grid;
  grid-template-columns: clamp(52px, 7vw, 78px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  border: 1px solid rgba(139, 255, 88, 0.38);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.48);
  padding: clamp(12px, 2vw, 20px);
}

.road-trip-pricing-detail-icon {
  display: grid;
  width: clamp(48px, 6vw, 68px);
  height: clamp(48px, 6vw, 68px);
  place-items: center;
  border: 1px solid rgba(139, 255, 88, 0.44);
  border-radius: 999px;
  color: var(--green);
}

.road-trip-pricing-detail-icon svg {
  width: 52%;
  height: 52%;
  fill: currentColor;
}

.road-trip-pricing-detail-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2vw, 1.38rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.road-trip-pricing-detail-grid p {
  color: var(--muted);
  font-size: clamp(0.82rem, 1.7vw, 1.06rem);
  line-height: 1.34;
}

.road-trip-pricing-detail-grid b {
  color: var(--green);
  font-weight: 900;
}

@media (min-width: 981px) {
  .road-trip-pricing-info-dialog {
    width: min(784px, calc(100vw - 72px));
    max-height: 88vh;
    gap: 12px;
    padding: 22px 24px;
  }

  .road-trip-pricing-info-close {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 1.55rem;
  }

  .road-trip-pricing-info-head {
    gap: 4px;
    padding-right: 54px;
  }

  .road-trip-pricing-info-head h2 {
    font-size: 3rem;
  }

  .road-trip-pricing-info-head p {
    font-size: 1rem;
  }

  .road-trip-pricing-chart svg {
    min-height: 210px;
  }

  .road-trip-pricing-tags {
    gap: 10px;
    padding: 0 22px;
  }

  .road-trip-pricing-tags span {
    min-height: 40px;
    font-size: 0.78rem;
  }

  .road-trip-pricing-detail-grid {
    gap: 9px;
  }

  .road-trip-pricing-detail-grid article {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
  }

  .road-trip-pricing-detail-icon {
    width: 48px;
    height: 48px;
  }

  .road-trip-pricing-detail-grid strong {
    font-size: 1rem;
  }

  .road-trip-pricing-detail-grid p {
    font-size: 0.82rem;
  }
}

.road-trip-photo-heading {
  display: grid;
  gap: 5px;
  padding-bottom: 2px;
}

.road-trip-photo-heading[hidden] {
  display: none;
}

.road-trip-photo-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.road-trip-photo-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.road-trip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}

.road-trip-map-shell {
  position: relative;
  min-height: 372px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #020302;
  box-shadow: inset 0 0 0 1px rgba(139, 255, 88, 0.08);
}

.road-trip-map-shell {
  border: 1px dashed rgba(139, 255, 88, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(139, 255, 88, 0.14),
    0 0 24px rgba(139, 255, 88, 0.11);
}

.road-trip-memory-count {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 520;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  width: 142px;
  border: 1px solid rgba(139, 255, 88, 0.72);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.82);
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  line-height: 1;
  padding: 9px 11px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(139, 255, 88, 0.16);
  pointer-events: none;
}

.road-trip-memory-count[hidden] {
  display: none;
}

.road-trip-memory-count svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.road-trip-memory-count span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.road-trip-route-focus {
  position: absolute;
  top: 58px;
  right: 12px;
  z-index: 520;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-sizing: border-box;
  width: 142px;
  min-height: 31px;
  border: 1px solid rgba(139, 255, 88, 0.72);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.82);
  color: var(--green);
  padding: 0 9px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(139, 255, 88, 0.08);
  cursor: pointer;
}

.road-trip-route-focus[hidden] {
  display: none;
}

.road-trip-route-focus svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: currentColor;
  overflow: visible;
}

.road-trip-route-focus span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.road-trip-route-focus:hover {
  background: rgba(139, 255, 88, 0.14);
}

.road-trip-pixel-map-link {
  position: absolute;
  right: 12px;
  bottom: 34px;
  z-index: 520;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-sizing: border-box;
  width: 142px;
  min-height: 32px;
  border: 1px solid rgba(139, 255, 88, 0.72);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.82);
  color: var(--green);
  padding: 0 9px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(139, 255, 88, 0.14);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.road-trip-pixel-map-link svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: currentColor;
  overflow: visible;
}

.road-trip-pixel-map-link span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.road-trip-pixel-map-link:hover,
.road-trip-pixel-map-link:focus-visible {
  border-color: var(--green);
  background: rgba(139, 255, 88, 0.15);
  color: var(--green);
  outline: none;
  box-shadow: 0 0 22px rgba(139, 255, 88, 0.24);
  transform: translateY(-1px);
}

.road-trip-live-controls {
  position: absolute;
  top: 12px;
  left: 58px;
  z-index: 520;
  display: inline-flex;
  align-items: stretch;
  gap: 6px;
  max-width: calc(100% - 152px);
}

.road-trip-live-controls[hidden] {
  display: none;
}

.road-trip-live-status {
  display: grid;
  gap: 2px;
  min-width: 104px;
  max-width: min(196px, 100%);
  border: 1px solid rgba(69, 215, 255, 0.72);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.82);
  color: #45d7ff;
  padding: 6px 8px;
  text-align: left;
  box-shadow: 0 0 10px rgba(69, 215, 255, 0.08);
  cursor: pointer;
}

.road-trip-live-status[hidden] {
  display: none;
}

.road-trip-live-status strong,
.road-trip-live-status span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.road-trip-live-status strong {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  line-height: 1;
  text-transform: uppercase;
}

.road-trip-live-status span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.road-trip-map-control-button {
  border: 1px solid rgba(69, 215, 255, 0.72);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.82);
  color: #45d7ff;
  box-shadow: 0 0 10px rgba(69, 215, 255, 0.08);
  cursor: pointer;
}

.road-trip-map-control-button {
  width: 31px;
  min-width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  padding: 0;
}

.road-trip-map-control-button[hidden],
.road-trip-map-hint[hidden] {
  display: none;
}

.road-trip-map-control-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.road-trip-map-control-button:hover,
.road-trip-live-status:hover {
  background: rgba(69, 215, 255, 0.13);
}

.road-trip-map-hint {
  position: absolute;
  left: 12px;
  bottom: 24px;
  z-index: 520;
  max-width: min(280px, calc(100% - 24px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.76);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.1;
  padding: 5px 7px;
  pointer-events: none;
  text-transform: uppercase;
}

.road-trip-map {
  width: 100%;
  height: 100%;
  min-height: 372px;
  background: #020302;
}

.erby-map-pixel-canvas {
  position: absolute;
  z-index: 420;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  pointer-events: none;
}

.erby-map-pixel-layer,
.erby-map-pixel-tile {
  filter: none !important;
  mix-blend-mode: normal !important;
  pointer-events: none;
  transition: none !important;
}

.erby-map-pixel-layer {
  z-index: 420;
}

.erby-map-pixel-tooltip {
  position: absolute;
  z-index: 980;
  top: 0;
  left: 0;
  border: 1px solid rgba(139, 255, 88, 0.72);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.9);
  color: var(--ink);
  box-shadow: 0 0 18px rgba(139, 255, 88, 0.22);
  padding: 7px 9px;
  pointer-events: none;
  text-transform: uppercase;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  line-height: 1.1;
  white-space: nowrap;
}

.erby-map-pixel-tooltip[hidden] {
  display: none;
}

.road-trip-map .leaflet-tile {
  filter: grayscale(0.68) invert(0.92) hue-rotate(94deg) saturate(0.88) brightness(0.64) contrast(1.22);
}

.road-trip-map .leaflet-tile.erby-map-pixel-tile,
.road-trip-map .erby-map-pixel-layer .leaflet-tile {
  filter: none !important;
  mix-blend-mode: normal !important;
  transition: none !important;
}

.road-trip-map .leaflet-control-zoom,
.road-trip-map .leaflet-control-attribution,
.road-trip-map .leaflet-popup-content-wrapper,
.road-trip-map .leaflet-popup-tip {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.88);
  color: var(--ink);
}

.road-trip-map .leaflet-bar {
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.72);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.34), 0 0 16px rgba(139, 255, 88, 0.13);
}

.road-trip-map .leaflet-control-zoom a {
  width: 34px;
  height: 34px;
  border-color: rgba(139, 255, 88, 0.34);
  background: #050505;
  color: var(--green);
  font-weight: 900;
  line-height: 34px;
}

.road-trip-map .leaflet-control-zoom a:hover {
  background: rgba(139, 255, 88, 0.16);
  color: var(--green);
}

.road-trip-map .leaflet-control-zoom a:first-child {
  border-radius: 8px 8px 0 0;
}

.road-trip-map .leaflet-control-zoom a:last-child {
  border-radius: 0 0 8px 8px;
}

.road-trip-map .leaflet-control-attribution a,
.road-trip-map .leaflet-popup-content {
  color: var(--ink);
}

.road-trip-map .leaflet-control-attribution {
  margin: 0 6px 6px 0;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.54);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.56rem;
  line-height: 1.1;
  padding: 2px 5px;
}

.road-trip-map .leaflet-control-attribution a {
  color: rgba(255, 255, 255, 0.72);
}

.road-trip-map-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(139, 255, 88, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(139, 255, 88, 0.08) 1px, transparent 1px),
    #050505;
  background-size: 32px 32px;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  pointer-events: none;
}

.road-trip-map-empty[hidden] {
  display: none;
}

.road-trip-search-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.road-trip-search-field > span:first-child {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.road-trip-search-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 8px;
  min-width: 0;
}

.road-trip-search-input-wrap {
  position: relative;
  display: block;
  min-width: 0;
}

.road-trip-search-shell input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #030303;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
  outline: none;
  padding: 0 18px;
}

.road-trip-search-input-wrap.has-selection input {
  color: transparent;
}

.road-trip-search-input-wrap.has-selection input::selection {
  color: transparent;
  background: transparent;
}

.road-trip-search-shell input:focus {
  border-color: rgba(139, 255, 88, 0.72);
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.12);
}

.road-trip-search-selection {
  position: absolute;
  inset: 4px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  pointer-events: none;
}

.road-trip-search-selection[hidden] {
  display: none;
}

.road-trip-search-selection-thumb {
  display: grid;
  width: 42px;
  height: 36px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 6px;
  background: #000000;
  color: var(--green);
}

.road-trip-search-selection-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.road-trip-search-selection-thumb svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.road-trip-search-selection-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.road-trip-search-selection-copy strong,
.road-trip-search-selection-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.road-trip-search-selection-copy strong {
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.road-trip-search-selection-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.road-trip-search-shell button,
.road-trip-add-button,
.road-trip-cart-add-button {
  display: inline-flex;
  min-height: 44px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: #000000;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.road-trip-search-shell button svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.road-trip-search-shell button:disabled,
.road-trip-add-button:disabled,
.road-trip-cart-add-button:disabled {
  opacity: 0.48;
  cursor: wait;
}

.road-trip-status {
  min-height: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.road-trip-status:empty {
  display: none;
}

.road-trip-status[data-kind="error"] {
  color: var(--danger);
}

.road-trip-status[data-kind="success"] {
  color: var(--green);
}

.road-trip-status[data-kind="notice"] {
  color: var(--warning);
}

.road-trip-results {
  display: grid;
  gap: 8px;
  max-height: 248px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #020202;
  padding: 8px;
}

.road-trip-results:empty {
  display: none;
}

.road-trip-result {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  color: var(--ink);
  padding: 8px;
  text-align: left;
}

.road-trip-result:hover {
  border-color: var(--green);
}

.road-trip-result:disabled {
  opacity: 0.62;
  cursor: wait;
}

.road-trip-result-thumb,
.road-trip-preview-thumb,
.road-trip-cart-thumb {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.34);
  border-radius: 7px;
  background: #000000;
  color: var(--green);
}

.road-trip-result-thumb {
  width: 54px;
  height: 54px;
}

.road-trip-result-thumb img,
.road-trip-preview-thumb img,
.road-trip-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.road-trip-result-thumb svg,
.road-trip-preview-thumb svg,
.road-trip-cart-thumb svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.road-trip-search-selection-thumb.is-missing-photo::before,
.road-trip-result-thumb.is-missing-photo::before,
.road-trip-preview-thumb.is-missing-photo::before,
.road-trip-route-thumb.is-missing-photo::before,
.road-trip-cart-thumb.is-missing-photo::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  clip-path: path("M12 22s7-6.2 7-12A7 7 0 1 0 5 10c0 5.8 7 12 7 12Zm0-9.5A2.5 2.5 0 1 1 12 7a2.5 2.5 0 0 1 0 5.5Z");
}

.road-trip-result-copy,
.road-trip-preview-copy,
.road-trip-cart-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.road-trip-result-copy strong,
.road-trip-preview-copy strong,
.road-trip-cart-copy strong {
  overflow: hidden;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  line-height: 1.15;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.road-trip-result-copy small,
.road-trip-preview-copy p,
.road-trip-cart-copy small {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.road-trip-preview {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 160px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(139, 255, 88, 0.24);
  border-radius: 8px;
  background: rgba(139, 255, 88, 0.045);
  padding: 10px;
}

.road-trip-preview[hidden] {
  display: none;
}

.road-trip-preview-thumb {
  width: 74px;
  height: 74px;
}

.road-trip-preview-copy > span {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.road-trip-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 7px;
}

.road-trip-facts span {
  display: grid;
  gap: 2px;
  min-width: 0;
  border: 1px solid rgba(139, 255, 88, 0.18);
  border-radius: 7px;
  background: rgba(139, 255, 88, 0.05);
  padding: 6px;
}

.road-trip-facts b {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.road-trip-facts strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.road-trip-route-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 324px);
  gap: 12px;
  align-items: start;
}

.road-trip-route-builder,
.road-trip-summary {
  min-width: 0;
}

.road-trip-route-heading h3,
.road-trip-cart-heading h3 {
  margin: 0;
}

.road-trip-panel .road-trip-route-heading,
.road-trip-panel .road-trip-cart-heading {
  border-top: 0;
  padding-top: 0;
}

.road-trip-route-list {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.road-trip-route-row {
  display: grid;
  grid-template-columns: 24px 52px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #020202;
  padding: 7px;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.road-trip-route-row.is-locked {
  grid-template-columns: 52px minmax(0, 1fr) 34px;
  border-color: rgba(139, 255, 88, 0.25);
}

.road-trip-route-row.is-dragging {
  opacity: 0.58;
  transform: scale(0.985);
}

.road-trip-route-row.is-drop-target {
  border-color: var(--green);
  background: rgba(139, 255, 88, 0.06);
}

.road-trip-route-drag {
  position: relative;
  width: 18px;
  height: 30px;
  justify-self: center;
  border: 0;
  background: transparent;
  color: transparent;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.road-trip-route-drag::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 3px;
  width: 3.5px;
  height: 3.5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 7px rgba(255, 255, 255, 0.82),
    0 14px rgba(255, 255, 255, 0.82),
    8px 0 rgba(255, 255, 255, 0.82),
    8px 7px rgba(255, 255, 255, 0.82),
    8px 14px rgba(255, 255, 255, 0.82);
}

.road-trip-route-drag:active {
  cursor: grabbing;
}

.is-road-trip-reordering {
  overflow: hidden;
}

.road-trip-route-thumb {
  display: grid;
  width: 52px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 7px;
  background: #000000;
  color: var(--green);
}

.road-trip-route-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.road-trip-route-thumb svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.road-trip-route-thumb.is-origin {
  color: #8bff58;
}

.road-trip-route-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.road-trip-route-copy small {
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.road-trip-route-copy strong {
  overflow: hidden;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.road-trip-route-remove,
.road-trip-route-lock {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  justify-self: end;
  border-radius: 7px;
}

.road-trip-route-remove {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050505;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
  line-height: 1;
  text-transform: uppercase;
}

.road-trip-route-remove:hover {
  border-color: var(--danger);
  color: var(--danger);
}

.road-trip-route-lock {
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.72);
}

.road-trip-route-lock svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.road-trip-summary {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(139, 255, 88, 0.58);
  border-radius: 8px;
  background: #030403;
  padding: 16px;
}

.road-trip-summary h3 {
  grid-column: 1 / -1;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 10px;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.road-trip-summary-row,
.road-trip-summary-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 12px;
}

.road-trip-summary-row span,
.road-trip-summary-total span {
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.road-trip-summary-row strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1;
}

.road-trip-summary-total {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 3px;
  padding-top: 14px;
}

.road-trip-summary-total strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.62rem;
  line-height: 1;
}

.road-trip-cart-add-button {
  width: 100%;
  margin-top: 2px;
}

.road-trip-cart {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  padding: 10px;
}

.road-trip-cart-heading {
  align-items: center;
}

.road-trip-cart-heading > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.road-trip-cart-list {
  display: grid;
  gap: 8px;
}

.road-trip-cart-item {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #030303;
  padding: 8px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.road-trip-cart-item:hover,
.road-trip-cart-item.is-previewing,
.road-trip-cart-item.is-editing {
  border-color: rgba(139, 255, 88, 0.68);
  background: rgba(139, 255, 88, 0.045);
}

.road-trip-cart-main {
  display: grid;
  grid-template-columns: minmax(156px, 288px) minmax(0, 1fr) minmax(108px, auto) 38px;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.road-trip-cart-thumbs {
  display: flex;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  gap: 8px;
}

.road-trip-cart-thumb-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 8px;
}

.road-trip-cart-thumb {
  width: 88px;
  height: 52px;
  flex: 0 0 auto;
}

.road-trip-cart-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.road-trip-cart-copy span {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  line-height: 1;
  text-transform: uppercase;
}

.road-trip-cart-route {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.road-trip-cart-route-track {
  display: inline-flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  gap: 34px;
}

.road-trip-cart-route strong {
  overflow: visible;
  font-size: 0.82rem;
  white-space: nowrap;
}

.road-trip-cart-thumbs.is-scrolling .road-trip-cart-thumb-track,
.road-trip-cart-route.is-scrolling .road-trip-cart-route-track {
  animation: road-trip-marquee 24s linear infinite;
}

.road-trip-cart-thumbs.is-scrolling:hover .road-trip-cart-thumb-track,
.road-trip-cart-route.is-scrolling:hover .road-trip-cart-route-track {
  animation-play-state: paused;
}

.road-trip-cart-facts {
  display: grid;
  justify-items: end;
  min-width: 112px;
}

.road-trip-cart-facts strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.road-trip-cart-facts small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.road-trip-cart-remove {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 69, 69, 0.56);
  border-radius: 8px;
  background: #050505;
  color: var(--danger);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.road-trip-cart-remove:hover {
  background: rgba(255, 69, 69, 0.12);
}

.road-trip-cart-fields {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 8px;
}

.road-trip-cart-field {
  display: grid;
  gap: 6px;
  min-width: 0;
  cursor: default;
}

.road-trip-cart-field span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.road-trip-title-field span {
  color: #ffd84a;
}

.road-trip-title-field.is-missing input {
  border-color: rgba(255, 216, 74, 0.78);
  box-shadow: 0 0 0 1px rgba(255, 216, 74, 0.18), 0 0 14px rgba(255, 216, 74, 0.14);
}

.road-trip-cart-field input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  color: var(--ink);
  font-weight: 800;
  outline: none;
  padding: 0 12px;
}

.road-trip-cart-field input:focus {
  border-color: rgba(139, 255, 88, 0.72);
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.1);
}

.road-trip-total-row {
  align-items: center;
  border: 1px solid rgba(139, 255, 88, 0.48);
  border-radius: 8px;
  background: #020202;
  padding: 14px;
}

.road-trip-total-row span,
.road-trip-total-row strong {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.road-trip-total-row span {
  color: var(--ink);
  font-size: 0.92rem;
}

.road-trip-total-row small {
  display: block;
  color: var(--ink);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.road-trip-total-row > div:last-child {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.road-trip-total-row strong {
  color: var(--green);
  font-size: 1.72rem;
  line-height: 1;
}

.road-trip-active-trips {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 8px;
  background: rgba(2, 2, 2, 0.92);
  padding: 8px;
}

.road-trip-active-trips[hidden],
.road-trip-active-body[hidden],
.road-trip-history-modal[hidden] {
  display: none;
}

.road-trip-active-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  width: 100%;
  border: 1px solid rgba(139, 255, 88, 0.34);
  border-radius: 8px;
  background: #030303;
  color: var(--ink);
  padding: 9px 10px;
  text-align: left;
  cursor: pointer;
}

.road-trip-active-toggle span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.road-trip-active-toggle strong,
.road-trip-active-card-head strong,
.road-trip-active-facts span,
.road-trip-history-head h2 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.road-trip-active-toggle strong {
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.road-trip-active-toggle small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.road-trip-active-toggle svg {
  width: 24px;
  height: 24px;
  justify-self: center;
  fill: var(--green);
  transition: transform 160ms ease;
}

.road-trip-active-trips.is-expanded .road-trip-active-toggle svg {
  transform: rotate(180deg);
}

.road-trip-active-trips.is-expanded .road-trip-active-toggle {
  min-height: 72px;
  border-color: rgba(139, 255, 88, 0.58);
  background: rgba(0, 0, 0, 0.7);
}

.road-trip-active-trips.is-expanded .road-trip-active-toggle strong {
  font-size: clamp(1.08rem, 3vw, 1.55rem);
}

.road-trip-active-trips.is-expanded .road-trip-active-toggle small {
  color: var(--ink);
  font-size: 0.82rem;
}

.road-trip-active-body {
  display: grid;
  gap: 8px;
}

.road-trip-active-list,
.road-trip-history-list {
  display: grid;
  gap: 8px;
}

.road-trip-active-empty {
  margin: 0;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 900;
  padding: 12px;
  text-align: center;
}

.road-trip-active-card {
  --road-trip-progress: 0%;
  --road-trip-step-progress: 0%;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(139, 255, 88, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(139, 255, 88, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(139, 255, 88, 0.022) 1px, transparent 1px),
    #020202;
  background-size: 34px 34px, 34px 34px, auto;
  padding: 14px;
}

.road-trip-active-card.is-history {
  border-color: rgba(255, 255, 255, 0.18);
}

.road-trip-active-card-head {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.road-trip-active-title-icon {
  display: grid;
  width: 74px;
  min-height: 74px;
  place-items: center;
  border: 1px solid rgba(139, 255, 88, 0.72);
  border-radius: 8px;
  background: rgba(139, 255, 88, 0.08);
  color: var(--green);
}

.road-trip-active-title-icon svg {
  width: 50px;
  height: 50px;
  fill: currentColor;
}

.road-trip-active-title-copy {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  display: grid;
  gap: 6px;
}

.road-trip-active-card-head span,
.road-trip-history-head span {
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.road-trip-active-card-head strong {
  color: var(--ink);
  font-family: "Bungee", "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 4vw, 2.25rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.road-trip-active-title {
  display: block;
}

.road-trip-active-title.is-long {
  font-size: clamp(1.02rem, 2.75vw, 1.62rem);
  line-height: 1.08;
}

.road-trip-active-title.is-extra-long {
  font-size: clamp(0.88rem, 2.15vw, 1.28rem);
  line-height: 1.12;
}

.road-trip-active-status {
  width: max-content;
}

.road-trip-active-card-head .road-trip-active-requested,
.road-trip-active-card-head .road-trip-active-details,
.road-trip-active-card-head .road-trip-active-date {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
}

.road-trip-active-requested svg,
.road-trip-active-details svg,
.road-trip-active-date svg {
  width: 17px;
  height: 17px;
  color: var(--green);
  fill: currentColor;
}

.road-trip-active-requested b {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.road-trip-active-card-head .road-trip-active-details {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  align-items: start;
  overflow-wrap: anywhere;
  color: var(--muted);
}

.road-trip-active-card-head .road-trip-active-details svg {
  display: block;
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin-top: 1px;
  flex: 0 0 17px;
}

.road-trip-active-card-head .road-trip-active-details span {
  min-width: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  overflow-wrap: anywhere;
  text-transform: none;
}

.road-trip-active-card-head .road-trip-active-date {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  color: var(--muted);
  font-style: italic;
  white-space: nowrap;
}

.road-trip-active-card-head .road-trip-active-date em {
  font-style: italic;
}

.road-trip-active-map-button,
.road-trip-history-button,
.road-trip-active-stops button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 255, 88, 0.52);
  border-radius: 8px;
  background: #000;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.road-trip-active-map-button {
  grid-column: 3;
  grid-row: 1;
  gap: 8px;
  min-height: 50px;
  min-width: 94px;
  padding: 0 14px;
  font-size: 0.82rem;
}

.road-trip-active-map-button svg,
.road-trip-history-button svg,
.road-trip-active-stops button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}

.road-trip-active-progress {
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.road-trip-active-progress span {
  display: block;
  width: var(--road-trip-progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #45d7ff, var(--green));
}

.road-trip-active-stepper {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  border: 1px solid rgba(139, 255, 88, 0.58);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  padding: 0 18px;
}

.road-trip-active-stepper-track {
  position: absolute;
  left: 38px;
  right: 160px;
  top: 50%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transform: translateY(-50%);
}

.road-trip-active-stepper-track i {
  display: block;
  width: var(--road-trip-step-progress);
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.road-trip-active-step-list {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
}

.road-trip-active-step {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  justify-self: center;
  place-items: center;
  margin: 0;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: #050505;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1;
}

.road-trip-active-step.is-current,
.road-trip-active-step.is-completed {
  border-color: var(--green);
  background: var(--green);
  color: #050505;
}

.road-trip-active-stepper b {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.road-trip-active-route-band {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
  border: 1px solid rgba(139, 255, 88, 0.52);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.54);
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(0.82rem, 2vw, 1.08rem);
  line-height: 1.25;
  padding: 12px 14px;
  text-transform: uppercase;
}

.road-trip-active-route-band b {
  color: var(--green);
}

.road-trip-active-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.road-trip-active-stat {
  display: grid;
  min-width: 0;
  min-height: 66px;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 3px 8px;
  border: 1px solid rgba(139, 255, 88, 0.58);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.46);
  padding: 10px;
}

.road-trip-active-stat svg {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  color: var(--green);
  fill: currentColor;
}

.road-trip-active-stat strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(0.78rem, 1.28vw, 1.04rem);
  line-height: 1.05;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.road-trip-active-stat small {
  min-width: 0;
  overflow: hidden;
  color: var(--green);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1.05;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.road-trip-active-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.road-trip-active-facts span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.58rem;
  padding: 4px 7px;
}

.road-trip-active-message {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  padding: 2px 0;
}

.road-trip-active-message svg {
  width: 21px;
  height: 21px;
  color: var(--green);
  fill: currentColor;
}

.road-trip-active-stops {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid rgba(139, 255, 88, 0.46);
  border-radius: 8px;
  padding: 0;
  list-style: none;
}

.road-trip-active-stops li {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.24);
  padding: 10px 12px;
}

.road-trip-active-stops li.has-photo {
  grid-template-columns: 44px 150px minmax(0, 1fr) 48px;
}

.road-trip-active-stops li:last-child {
  border-bottom: 0;
}

.road-trip-active-stops li.is-completed {
  background: rgba(139, 255, 88, 0.05);
}

.road-trip-active-stop-index {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1;
}

.road-trip-active-stops li:not(:last-child) .road-trip-active-stop-index::after {
  content: "";
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  width: 0;
  height: 46px;
  border-left: 2px dashed rgba(139, 255, 88, 0.58);
  transform: translateX(-50%);
}

.road-trip-active-stop-thumb {
  display: grid;
  width: 150px;
  height: 78px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.5);
  border-radius: 8px;
  background: rgba(139, 255, 88, 0.08);
  color: var(--green);
}

.road-trip-active-stop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.road-trip-active-stop-thumb svg {
  width: 42%;
  height: 42%;
  fill: currentColor;
}

.road-trip-active-stop-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.road-trip-active-stops strong,
.road-trip-active-stops small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.road-trip-active-stops strong {
  color: var(--ink);
  display: -webkit-box;
  font-size: clamp(0.82rem, 1.8vw, 1.08rem);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: normal;
}

.road-trip-active-stops small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.road-trip-active-leg-facts {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.road-trip-active-leg-facts b,
.road-trip-active-leg-facts em {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 3px 8px;
  font-style: normal;
  line-height: 1;
}

.road-trip-active-leg-facts b {
  color: var(--ink);
}

.road-trip-active-leg-facts svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  fill: currentColor;
}

.road-trip-active-stops button {
  width: 48px;
  height: 48px;
  padding: 0;
}

.road-trip-history-button {
  gap: 8px;
  min-height: 42px;
  width: 100%;
  padding: 0 12px;
}

body.is-road-trip-history-modal-open {
  overflow: hidden;
}

.road-trip-history-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483211;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
  padding: clamp(10px, 2vw, 24px);
}

.road-trip-history-dialog {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  width: min(980px, 100%);
  max-height: min(92vh, 860px);
  min-height: 0;
  border: 1px solid rgba(139, 255, 88, 0.72);
  border-radius: 8px;
  background: #030303;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.72);
  padding: 12px;
}

.road-trip-history-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: start;
  border-bottom: 1px solid rgba(139, 255, 88, 0.24);
  padding-bottom: 10px;
}

.road-trip-history-head div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.road-trip-history-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1;
}

.road-trip-history-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 67, 67, 0.82);
  border-radius: 8px;
  background: #030303;
  color: #ff4b4b;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.road-trip-history-list {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 2px;
}

.menu-active-panel {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 8px;
  background: rgba(2, 2, 2, 0.92);
  padding: 8px;
}

.menu-active-panel[hidden],
.menu-active-body[hidden],
.menu-history-modal[hidden] {
  display: none;
}

.menu-active-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  width: 100%;
  border: 1px solid rgba(139, 255, 88, 0.34);
  border-radius: 8px;
  background: #030303;
  color: var(--ink);
  padding: 9px 10px;
  text-align: left;
  cursor: pointer;
}

.menu-active-toggle > span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.menu-active-toggle strong,
.menu-active-card strong,
.menu-history-head h2 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.menu-active-toggle strong {
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-active-toggle small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-active-toggle svg {
  width: 24px;
  height: 24px;
  justify-self: center;
  fill: var(--green);
  transition: transform 160ms ease;
}

.menu-active-panel.is-expanded .menu-active-toggle svg {
  transform: rotate(180deg);
}

.menu-active-panel.is-expanded .menu-active-toggle {
  min-height: 72px;
  border-color: rgba(139, 255, 88, 0.58);
  background: rgba(0, 0, 0, 0.7);
}

.menu-active-panel.is-expanded .menu-active-toggle strong {
  font-size: clamp(1.08rem, 3vw, 1.55rem);
}

.menu-active-panel.is-expanded .menu-active-toggle small {
  color: var(--ink);
  font-size: 0.82rem;
}

.menu-active-body,
.menu-active-list,
.menu-history-list {
  display: grid;
  gap: 8px;
}

.menu-active-empty {
  margin: 0;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 900;
  padding: 12px;
  text-align: center;
}

.menu-active-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(138px, auto);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(139, 255, 88, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(139, 255, 88, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(139, 255, 88, 0.022) 1px, transparent 1px),
    #020202;
  background-size: 34px 34px, 34px 34px, auto;
  padding: 10px;
}

.menu-active-card.is-premium {
  border-color: rgba(255, 214, 102, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 214, 102, 0.12);
}

.menu-active-card.is-history {
  border-color: rgba(255, 255, 255, 0.18);
}

.media-active-card {
  grid-template-columns: 124px minmax(0, 1fr) minmax(150px, auto);
}

.media-active-card.is-playing {
  border-color: rgba(139, 255, 88, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(139, 255, 88, 0.14),
    0 0 14px rgba(139, 255, 88, 0.16);
}

.menu-active-thumb {
  display: grid;
  width: 76px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.48);
  border-radius: 8px;
  background: rgba(139, 255, 88, 0.08);
  color: var(--green);
}

.media-active-thumb {
  width: 124px;
  height: 70px;
  text-decoration: none;
}

.media-active-thumb:hover {
  border-color: rgba(139, 255, 88, 0.86);
  box-shadow: 0 0 12px rgba(139, 255, 88, 0.18);
}

.menu-active-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-active-thumb svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.menu-active-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.menu-active-copy > span,
.menu-history-head span {
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-active-card strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-active-title.is-long {
  font-size: 0.88rem;
}

.menu-active-title.is-extra-long {
  font-size: 0.78rem;
}

.menu-active-requested,
.menu-active-detail,
.menu-active-side small {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.24;
}

.menu-active-detail {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr);
  align-items: start;
  overflow-wrap: anywhere;
}

.menu-active-requested svg,
.menu-active-detail svg,
.menu-active-side svg {
  width: 15px;
  height: 15px;
  color: var(--green);
  fill: currentColor;
}

.menu-active-requested b {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.menu-active-detail b {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.menu-active-side {
  min-width: 0;
  display: grid;
  justify-items: end;
  text-align: right;
}

.menu-history-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(139, 255, 88, 0.52);
  border-radius: 8px;
  background: #000;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-history-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}

body.is-menu-history-modal-open {
  overflow: hidden;
}

.menu-history-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483211;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
  padding: clamp(10px, 2vw, 24px);
}

.menu-history-dialog {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  width: min(860px, 100%);
  max-height: min(92vh, 760px);
  min-height: 0;
  border: 1px solid rgba(139, 255, 88, 0.72);
  border-radius: 8px;
  background: #030303;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.72);
  padding: 12px;
}

.menu-history-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: start;
  border-bottom: 1px solid rgba(139, 255, 88, 0.24);
  padding-bottom: 10px;
}

.menu-history-head div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.menu-history-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1;
}

.menu-history-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 67, 67, 0.82);
  border-radius: 8px;
  background: #030303;
  color: #ff4b4b;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.menu-history-list {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 2px;
}

@keyframes road-trip-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.road-trip-marker {
  background: transparent;
  border: 0;
}

.road-trip-marker-pin {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 8px 13px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 7px rgba(139, 255, 88, 0.22));
}

.road-trip-marker-pin img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.road-trip-marker-pin b {
  position: absolute;
  top: 8px;
  left: 0;
  display: grid;
  width: 100%;
  height: 21px;
  place-items: center;
  color: #000000;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px rgba(255, 255, 255, 0.38);
}

.road-trip-marker-start .road-trip-marker-pin b {
  top: 10px;
  font-size: 0.42rem;
  letter-spacing: 0;
}

.road-trip-marker-selected .road-trip-marker-pin {
  filter: drop-shadow(0 8px 13px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 10px rgba(255, 79, 179, 0.38));
}

.road-trip-marker-visited .road-trip-marker-pin {
  filter: drop-shadow(0 8px 13px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 10px rgba(69, 215, 255, 0.34));
}

.road-trip-marker-visited .road-trip-marker-pin b {
  font-size: 0.62rem;
}

.road-trip-photo-marker {
  --road-trip-photo-x: 0px;
  --road-trip-photo-y: 0px;
  --road-trip-photo-scale: 1;
  background: transparent;
  border: 0;
}

.road-trip-photo-marker span {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  margin-left: 3px;
  border: 0;
  border-radius: 7px;
  background: #050505;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.62);
  isolation: isolate;
  transform-origin: 50% 100%;
  transform: translate3d(var(--road-trip-photo-x), var(--road-trip-photo-y), 0) scale(var(--road-trip-photo-scale));
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.road-trip-photo-marker-frame {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background: #050505;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.road-trip-photo-marker-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--green);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.road-trip-photo-marker span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
  background: #050505;
  transform: translateX(-50%) rotate(45deg);
  z-index: 0;
}

.road-trip-photo-marker b {
  position: absolute;
  top: -7px;
  left: -7px;
  display: grid;
  min-width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid #050505;
  border-radius: 999px;
  background: var(--green);
  color: #050505;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.46rem;
  line-height: 1;
  z-index: 3;
}

.road-trip-photo-marker em {
  position: absolute;
  bottom: -20px;
  left: 50%;
  overflow: hidden;
  max-width: 86px;
  border: 1px solid rgba(139, 255, 88, 0.35);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.46rem;
  font-style: normal;
  line-height: 1;
  opacity: 0;
  padding: 5px 7px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: opacity 160ms ease;
  white-space: nowrap;
  z-index: 3;
}

.road-trip-photo-marker.is-expanded span {
  --road-trip-photo-scale: 1.65;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.68);
  filter: saturate(1.08);
  z-index: 690;
}

.road-trip-photo-marker.is-focused span,
.road-trip-photo-marker:hover span {
  --road-trip-photo-scale: 2.25;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.68);
  z-index: 700;
}

.road-trip-photo-marker:hover em,
.road-trip-photo-marker.is-focused em {
  opacity: 1;
}

body.is-road-trip-paid-modal-open {
  overflow: hidden;
}

.road-trip-paid-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483205;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.9);
  padding: clamp(8px, 1.2vw, 18px);
}

.road-trip-paid-modal[hidden] {
  display: none;
}

.road-trip-paid-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  width: min(1040px, calc(100vw - 24px));
  max-height: calc(100dvh - 14px);
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(139, 255, 88, 0.032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(139, 255, 88, 0.032) 1px, transparent 1px),
    #010101;
  background-size: 34px 34px, 34px 34px, auto;
  color: var(--ink);
  padding: clamp(12px, 1.1vw, 16px);
  box-shadow:
    0 0 0 1px rgba(139, 255, 88, 0.12),
    0 0 26px rgba(139, 255, 88, 0.2),
    0 26px 86px rgba(0, 0, 0, 0.72);
}

.road-trip-paid-dialog svg {
  flex: 0 0 auto;
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
}

.road-trip-paid-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(139, 255, 88, 0.76);
  border-radius: 8px;
  background: #040604;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.48rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(139, 255, 88, 0.16);
}

.road-trip-paid-close:hover,
.road-trip-paid-close:focus-visible {
  border-color: var(--green);
  background: rgba(139, 255, 88, 0.12);
  outline: none;
}

.road-trip-paid-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding-right: 54px;
}

.road-trip-paid-success {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 4px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  background: rgba(139, 255, 88, 0.12);
  box-shadow:
    inset 0 0 0 4px #020302,
    0 0 24px rgba(139, 255, 88, 0.38);
}

.road-trip-paid-success svg {
  width: 38px;
  height: 38px;
}

.road-trip-paid-head h2 {
  color: var(--ink);
  font-family: "Bungee", "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.62rem, 3.1vw, 2.45rem);
  line-height: 0.96;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.12);
}

.road-trip-paid-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  line-height: 1.25;
}

.road-trip-paid-stat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.32fr);
  gap: 8px;
}

.road-trip-paid-stat-strip {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.58);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.68);
  box-shadow: inset 0 0 28px rgba(139, 255, 88, 0.035);
}

.road-trip-paid-stat {
  display: grid;
  min-width: 0;
  min-height: 58px;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(139, 255, 88, 0.58);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  color: var(--green);
  padding: 8px 10px;
  box-shadow: inset 0 0 22px rgba(139, 255, 88, 0.035);
}

.road-trip-paid-stat-strip .road-trip-paid-stat {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 8px 10px;
}

.road-trip-paid-stat-strip .road-trip-paid-stat + .road-trip-paid-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.road-trip-paid-stat svg {
  width: 25px;
  height: 25px;
}

.road-trip-paid-stat div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.road-trip-paid-stat strong,
.road-trip-paid-stat span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.road-trip-paid-stat strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(0.94rem, 1.32vw, 1.25rem);
  line-height: 1;
  white-space: nowrap;
}

.road-trip-paid-stat.is-rate strong {
  font-size: clamp(0.94rem, 1.32vw, 1.25rem);
}

.road-trip-paid-stat span {
  color: var(--ink);
  font-size: 0.58rem;
  line-height: 1.08;
}

.road-trip-paid-stat.is-total strong {
  font-size: clamp(1.45rem, 2vw, 2.05rem);
}

.road-trip-paid-stat.is-total {
  min-height: 58px;
  grid-template-columns: 30px minmax(0, 1fr);
  padding: 8px 12px;
}

.road-trip-paid-stat.is-total svg {
  width: 27px;
  height: 27px;
}

.road-trip-paid-main {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 8px;
}

.road-trip-paid-breakdown,
.road-trip-paid-summary,
.road-trip-paid-map,
.road-trip-paid-notes,
.road-trip-paid-actions {
  border: 1px solid rgba(139, 255, 88, 0.58);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
}

.road-trip-paid-breakdown {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: 6px;
  padding: 10px;
}

.road-trip-paid-trip-meta {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 10px;
}

.road-trip-paid-trip-meta strong {
  overflow: hidden;
  color: var(--ink);
  font-family: "Bungee", "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(0.92rem, 1.2vw, 1.12rem);
  line-height: 1.06;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.road-trip-paid-trip-meta span,
.road-trip-paid-request-time {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.15;
}

.road-trip-paid-trip-meta b {
  color: var(--green);
  text-transform: uppercase;
}

.road-trip-paid-trip-meta svg,
.road-trip-paid-request-time svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.road-trip-paid-breakdown h3,
.road-trip-paid-summary h3,
.road-trip-paid-notes strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(0.84rem, 1.04vw, 1rem);
  line-height: 1;
  text-transform: uppercase;
}

.road-trip-paid-breakdown h3 svg,
.road-trip-paid-summary h3 svg,
.road-trip-paid-notes svg {
  color: var(--green);
}

.road-trip-paid-route-list {
  display: grid;
  max-height: none;
  align-content: start;
  gap: 6px;
  overflow: visible;
  padding-right: 0;
}

.road-trip-paid-route-point {
  --paid-thumb-size: clamp(40px, calc(250px / var(--road-trip-paid-points, 5)), 50px);
  position: relative;
  display: grid;
  min-height: calc(var(--paid-thumb-size) + 10px);
  grid-template-columns: 34px var(--paid-thumb-size) minmax(0, 1fr);
  align-items: stretch;
  gap: 8px;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  padding: 5px 8px;
}

.road-trip-paid-route-index {
  display: grid;
  width: 30px;
  height: 30px;
  align-self: center;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  line-height: 1;
  box-shadow: 0 0 14px rgba(139, 255, 88, 0.18);
}

.road-trip-paid-route-index svg {
  width: 16px;
  height: 16px;
}

.road-trip-paid-route-thumb {
  display: grid;
  width: var(--paid-thumb-size);
  height: var(--paid-thumb-size);
  align-self: center;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.72);
  border-radius: 8px;
  background: rgba(139, 255, 88, 0.08);
  color: var(--green);
}

.road-trip-paid-route-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.road-trip-paid-route-thumb svg {
  width: 46%;
  height: 46%;
}

.road-trip-paid-route-copy {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 3px;
}

.road-trip-paid-route-copy small {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.56rem;
  line-height: 1;
  text-transform: uppercase;
}

.road-trip-paid-route-copy strong {
  color: var(--ink);
  display: -webkit-box;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  overflow: hidden;
  font-size: clamp(0.72rem, 0.96vw, 0.94rem);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.05;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.road-trip-paid-leg-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.1;
}

.road-trip-paid-leg-facts b {
  color: var(--ink);
}

.road-trip-paid-notes {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  padding: 8px;
}

.road-trip-paid-request-time {
  justify-self: end;
  margin: 0 2px;
  text-transform: uppercase;
}

.road-trip-paid-notes > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 8px;
  color: var(--green);
}

.road-trip-paid-notes p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.road-trip-paid-side {
  display: grid;
  min-height: 0;
  align-content: start;
  grid-template-rows: auto auto;
}

.road-trip-paid-map {
  min-height: 160px;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.road-trip-paid-map > svg,
.road-trip-paid-map > .road-trip-route-thumb {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
}

.road-trip-paid-map-bg {
  fill: #111611;
}

.road-trip-paid-map-road,
.road-trip-paid-map-road.is-alt {
  fill: none;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 0.55;
}

.road-trip-paid-map-road.is-alt {
  stroke: rgba(139, 255, 88, 0.18);
  stroke-dasharray: 2 2;
}

.road-trip-paid-map-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 2px rgba(139, 255, 88, 0.8));
}

.road-trip-paid-map-marker circle {
  fill: #000;
  stroke: var(--green);
  stroke-width: 1.1;
}

.road-trip-paid-map-marker.is-final circle {
  stroke: #ff5a9f;
}

.road-trip-paid-map-marker text {
  fill: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 3px;
  text-anchor: middle;
}

.road-trip-paid-map-label {
  fill: var(--ink);
  paint-order: stroke;
  stroke: rgba(0, 0, 0, 0.9);
  stroke-width: 1.6px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3.2px;
  font-weight: 900;
}

.road-trip-paid-summary {
  display: grid;
  gap: 0;
  border-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  padding: 10px 12px;
}

.road-trip-paid-summary h3 {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.road-trip-paid-summary-row {
  display: flex;
  min-height: 21px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--muted);
  text-transform: uppercase;
}

.road-trip-paid-summary-row span {
  font-size: 0.74rem;
  line-height: 1.05;
}

.road-trip-paid-summary-row span,
.road-trip-paid-summary-row strong,
.road-trip-paid-summary-total span,
.road-trip-paid-summary-total strong {
  overflow-wrap: anywhere;
}

.road-trip-paid-summary-row strong {
  color: var(--green);
  font-size: 0.78rem;
  line-height: 1.05;
  text-align: right;
}

.road-trip-paid-summary-total {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
  border: 1px solid rgba(139, 255, 88, 0.6);
  border-radius: 8px;
  padding: 5px 9px;
  text-transform: uppercase;
}

.road-trip-paid-summary-total span {
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
}

.road-trip-paid-summary-total strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.22rem, 2vw, 1.86rem);
  line-height: 1;
  text-align: right;
}

.road-trip-paid-actions {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, auto) minmax(126px, auto);
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
}

.road-trip-paid-action-note {
  display: grid;
  min-width: 0;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.road-trip-paid-action-note svg {
  width: 27px;
  height: 27px;
  color: var(--green);
}

.road-trip-paid-action-note p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.66rem, 0.88vw, 0.78rem);
  line-height: 1.32;
}

.road-trip-paid-action {
  display: inline-flex;
  min-height: 44px;
  min-width: 116px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: #030303;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  line-height: 1;
  padding: 0 12px;
  text-transform: uppercase;
}

.road-trip-paid-action svg {
  width: 17px;
  height: 17px;
}

.road-trip-paid-action.is-primary {
  min-width: 220px;
  border-color: var(--green);
  background: var(--green);
  color: #050505;
}

.road-trip-paid-action:hover,
.road-trip-paid-action:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(139, 255, 88, 0.18);
}

.road-trip-paid-action:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

@media (max-width: 980px) {
  .road-trip-paid-modal,
  .road-trip-paid-dialog {
    overflow: auto;
  }

  .road-trip-paid-dialog {
    width: min(760px, calc(100vw - 22px));
    max-height: calc(100vh - 22px);
    grid-template-rows: auto;
  }

  .road-trip-paid-stat-row,
  .road-trip-paid-main,
  .road-trip-paid-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .road-trip-paid-stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .road-trip-paid-stat-strip .road-trip-paid-stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .road-trip-paid-stat-strip .road-trip-paid-stat:nth-child(-n + 2) {
    border-top: 0;
  }

  .road-trip-paid-stat-strip .road-trip-paid-stat:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }

  .road-trip-paid-stat.is-total {
    grid-column: 1 / -1;
  }

  .road-trip-paid-side {
    grid-template-rows: auto auto;
  }

  .road-trip-paid-route-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .road-trip-paid-main {
    align-items: start;
  }

  .road-trip-paid-breakdown,
  .road-trip-paid-side {
    min-height: auto;
  }

  .road-trip-paid-action,
  .road-trip-paid-action.is-primary {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .road-trip-paid-modal {
    padding: 7px;
  }

  .road-trip-paid-dialog {
    width: calc(100vw - 14px);
    max-height: calc(100vh - 14px);
    gap: 10px;
    padding: 13px;
  }

  .road-trip-paid-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    font-size: 1.45rem;
  }

  .road-trip-paid-head {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 11px;
    padding-right: 46px;
  }

  .road-trip-paid-success {
    width: 48px;
    height: 48px;
    border-width: 3px;
  }

  .road-trip-paid-success svg {
    width: 35px;
    height: 35px;
  }

  .road-trip-paid-head h2 {
    font-size: clamp(1.62rem, 10vw, 2.45rem);
  }

  .road-trip-paid-head p {
    font-size: 0.86rem;
  }

  .road-trip-paid-stat-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .road-trip-paid-stat-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .road-trip-paid-stat-strip .road-trip-paid-stat,
  .road-trip-paid-stat-strip .road-trip-paid-stat:nth-child(even) {
    border-left: 0;
  }

  .road-trip-paid-stat-strip .road-trip-paid-stat + .road-trip-paid-stat,
  .road-trip-paid-stat-strip .road-trip-paid-stat:nth-child(-n + 2) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .road-trip-paid-stat-strip .road-trip-paid-stat:first-child {
    border-top: 0;
  }

  .road-trip-paid-stat {
    min-height: 66px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 10px 12px;
  }

  .road-trip-paid-stat.is-total {
    min-height: 66px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 10px 12px;
  }

  .road-trip-paid-stat svg {
    width: 28px;
    height: 28px;
  }

  .road-trip-paid-stat.is-total svg {
    width: 28px;
    height: 28px;
  }

  .road-trip-paid-stat strong,
  .road-trip-paid-stat.is-total strong {
    font-size: 1.45rem;
  }

  .road-trip-paid-breakdown,
  .road-trip-paid-summary {
    padding: 12px;
  }

  .road-trip-paid-route-point {
    --paid-thumb-size: 50px;
    grid-template-columns: 32px var(--paid-thumb-size) minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .road-trip-paid-route-index {
    width: 30px;
    height: 30px;
    font-size: 0.84rem;
  }

  .road-trip-paid-route-copy strong {
    font-size: 0.98rem;
  }

  .road-trip-paid-leg-facts {
    gap: 5px 10px;
    font-size: 0.78rem;
  }

  .road-trip-paid-map,
  .road-trip-paid-map > svg {
    min-height: 178px;
  }

  .road-trip-paid-map-label {
    display: none;
  }

  .road-trip-paid-summary-row {
    min-height: 32px;
    gap: 10px;
    font-size: 0.82rem;
  }

  .road-trip-paid-summary-total {
    min-height: 50px;
    padding: 9px 11px;
  }

  .road-trip-paid-summary-total span {
    font-size: 0.82rem;
  }

  .road-trip-paid-summary-total strong {
    font-size: 1.65rem;
  }

  .road-trip-paid-actions {
    gap: 9px;
    padding: 11px;
  }

  .road-trip-paid-action-note {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .road-trip-paid-action-note svg {
    width: 30px;
    height: 30px;
  }

  .road-trip-paid-action-note p {
    font-size: 0.82rem;
  }

  .road-trip-paid-action {
    min-height: 48px;
    font-size: 0.82rem;
  }
}

.road-trip-photo-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 18px;
  z-index: 1000;
}

.road-trip-photo-modal[hidden] {
  display: none;
}

.road-trip-photo-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px;
  grid-template-rows: minmax(0, 1fr);
  width: min(1540px, calc(100vw - 34px));
  min-height: min(820px, calc(100vh - 34px));
  max-height: calc(100vh - 34px);
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.64);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 255, 88, 0.12), transparent 38%),
    linear-gradient(90deg, rgba(139, 255, 88, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(139, 255, 88, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(139, 255, 88, 0.08), transparent 34%),
    #020402;
  background-size: auto, 86px 86px, 86px 86px, auto, auto;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.72);
}

.road-trip-photo-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(139, 255, 88, 0.18), transparent 4px),
    radial-gradient(circle at 77% 78%, rgba(139, 255, 88, 0.14), transparent 3px),
    repeating-linear-gradient(15deg, transparent 0 42px, rgba(139, 255, 88, 0.08) 43px, transparent 45px);
  opacity: 0.42;
  pointer-events: none;
}

.road-trip-photo-memory-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 4;
  display: grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 0 12px;
  min-width: 176px;
  border: 1px solid rgba(139, 255, 88, 0.66);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.86);
  color: var(--green);
  padding: 16px 18px;
  box-shadow: 0 0 24px rgba(139, 255, 88, 0.16);
}

.road-trip-photo-memory-badge svg {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.road-trip-photo-memory-badge span {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.42rem;
  line-height: 1;
}

.road-trip-photo-memory-badge small {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.road-trip-photo-frame {
  --road-trip-photo-pan-x: 0px;
  --road-trip-photo-pan-y: 0px;
  --road-trip-photo-scale: 1;
  position: relative;
  display: grid;
  min-height: 0;
  grid-column: 2;
  align-self: center;
  margin: 0;
  overflow: visible;
  place-items: center;
  touch-action: none;
  transition: transform 180ms ease;
  z-index: 2;
}

.road-trip-photo-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(68vh, 690px);
  border: 1px solid rgba(139, 255, 88, 0.76);
  border-radius: 8px;
  cursor: zoom-in;
  object-fit: contain;
  touch-action: none;
  transform: translate3d(var(--road-trip-photo-pan-x), var(--road-trip-photo-pan-y), 0) scale(var(--road-trip-photo-scale));
  transform-origin: center center;
  transition: transform 160ms ease;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow:
    0 0 0 5px rgba(0, 0, 0, 0.68),
    0 0 0 7px rgba(139, 255, 88, 0.22),
    0 22px 72px rgba(0, 0, 0, 0.68);
}

.road-trip-photo-frame.is-photo-zoomed img {
  cursor: grab;
}

.road-trip-photo-frame.is-photo-zoomed:active img {
  cursor: grabbing;
  transition: none;
}

.road-trip-photo-copy {
  position: absolute;
  left: 32px;
  bottom: 44px;
  z-index: 3;
  display: grid;
  box-sizing: border-box;
  width: max-content;
  min-width: min(320px, calc(100% - 390px));
  max-width: min(544px, calc(100% - 390px));
  grid-template-columns: minmax(0, 1fr);
  gap: 6px 10px;
  border: 1px solid rgba(139, 255, 88, 0.52);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.86);
  padding: 15px 17px;
  box-shadow: 0 0 24px rgba(139, 255, 88, 0.13);
}

.road-trip-photo-copy span,
.road-trip-photo-copy h3 {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.road-trip-photo-copy span {
  color: var(--green);
  font-size: 0.66rem;
}

.road-trip-photo-copy h3 {
  grid-column: 1 / 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.24rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.road-trip-photo-copy p {
  grid-column: 1 / 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.road-trip-photo-copy small {
  position: relative;
  grid-column: 1 / 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.road-trip-photo-copy small::before {
  content: "";
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  border: 2px solid var(--green);
  border-top-width: 5px;
  border-radius: 2px;
  background: transparent;
}

.road-trip-photo-copy .road-trip-photo-place {
  grid-column: 1 / 2;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 999px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.15;
  padding: 6px 12px;
  text-transform: none;
}

.road-trip-photo-copy .road-trip-photo-place::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: var(--green);
  clip-path: path("M7 0a5 5 0 0 1 5 5c0 3.8-5 9-5 9S2 8.8 2 5a5 5 0 0 1 5-5Zm0 6.8A1.8 1.8 0 1 0 7 3.2a1.8 1.8 0 0 0 0 3.6Z");
}

.road-trip-photo-copy .road-trip-photo-place[hidden] {
  display: none;
}

.road-trip-photo-copy.has-trip-memory {
  padding-right: 58px;
}

.road-trip-photo-copy.is-trip-memory-expanded {
  max-height: min(50vh, 460px);
  overflow-y: auto;
}

.road-trip-photo-trip-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(139, 255, 88, 0.62);
  border-radius: 999px;
  background: rgba(139, 255, 88, 0.08);
  color: var(--green);
  cursor: pointer;
}

.road-trip-photo-trip-toggle[hidden] {
  display: none;
}

.road-trip-photo-trip-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.road-trip-photo-trip-toggle:hover,
.road-trip-photo-trip-toggle:focus-visible,
.road-trip-photo-trip-toggle[aria-expanded="true"] {
  border-color: var(--green);
  background: rgba(139, 255, 88, 0.16);
  outline: none;
}

.road-trip-photo-trip {
  grid-column: 1 / 2;
  display: grid;
  gap: 7px;
  margin-top: 6px;
  border-top: 1px solid rgba(139, 255, 88, 0.28);
  padding-top: 10px;
}

.road-trip-photo-trip[hidden] {
  display: none;
}

.road-trip-photo-trip span,
.road-trip-photo-trip strong {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.road-trip-photo-trip span {
  color: var(--green);
  font-size: 0.62rem;
}

.road-trip-photo-trip strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.road-trip-photo-trip dl {
  display: grid;
  gap: 5px;
  margin: 0;
}

.road-trip-photo-trip dl div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
}

.road-trip-photo-trip dt,
.road-trip-photo-trip dd {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
}

.road-trip-photo-trip dt {
  color: var(--green);
  text-transform: uppercase;
}

.road-trip-photo-trip dd {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.road-trip-photo-trip p {
  color: var(--muted);
  font-size: 0.78rem;
}

.road-trip-photo-dialog.is-trip-memory-expanded .road-trip-photo-nav.is-prev {
  transform: translateY(-78px);
}

.road-trip-photo-locate {
  position: absolute;
  right: 32px;
  bottom: 44px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 238px;
  border-radius: 8px;
  border-color: rgba(139, 255, 88, 0.78);
  background: rgba(0, 0, 0, 0.86);
  color: var(--green);
  font-size: 0.82rem;
  padding: 12px 17px;
  box-shadow: 0 0 18px rgba(139, 255, 88, 0.16);
}

.road-trip-photo-locate:hover {
  background: rgba(139, 255, 88, 0.13);
  color: var(--green);
}

.road-trip-photo-locate svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.road-trip-photo-mobile-locate {
  display: none;
}

.road-trip-photo-mobile-locate svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.road-trip-photo-dots {
  position: absolute;
  left: 50%;
  bottom: 31px;
  z-index: 3;
  display: flex;
  gap: 14px;
  transform: translateX(-50%);
}

.road-trip-photo-dots button {
  width: 13px;
  height: 13px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.48);
  cursor: pointer;
}

.road-trip-photo-dots button.is-active {
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.48), 0 0 18px rgba(139, 255, 88, 0.62);
}

.road-trip-photo-close,
.road-trip-photo-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 255, 88, 0.62);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.82);
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  box-shadow: 0 0 18px rgba(139, 255, 88, 0.14);
}

.road-trip-photo-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  font-size: 1.45rem;
  z-index: 4;
}

.road-trip-photo-nav {
  width: 58px;
  height: 64px;
  align-self: center;
  justify-self: center;
  z-index: 3;
}

.road-trip-photo-nav svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.road-trip-photo-nav:hover,
.road-trip-photo-close:hover {
  border-color: var(--green);
  color: var(--green);
}

.road-trip-photo-close:hover {
  border-color: rgba(255, 80, 80, 0.84);
  color: #ff5050;
  box-shadow: 0 0 18px rgba(255, 80, 80, 0.24);
}

.leaflet-container {
  background: #050505;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
}

.road-trip-map .leaflet-control-zoom a {
  border-radius: 7px;
}

.menu-heading,
.menu-cart-heading,
.menu-total-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.menu-heading h2,
.menu-cart-heading h3 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  line-height: 1.15;
  text-transform: uppercase;
}

.menu-heading h2 {
  font-size: 1.15rem;
}

.menu-heading p,
.menu-cart-heading span,
.menu-empty-cart,
.menu-total-row small {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.menu-controls {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(142px, 196px);
  gap: 10px;
  min-width: 0;
}

.menu-controls label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.menu-controls span {
  color: var(--muted);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  text-transform: uppercase;
}

.menu-controls input,
.menu-controls select {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  color: var(--ink);
  padding: 0 12px;
  font-weight: 900;
}

.menu-controls input:focus,
.menu-controls select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.16);
  outline: none;
}

.menu-tag-filters {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1px 0 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 255, 88, 0.55) rgba(0, 0, 0, 0.42);
  -webkit-overflow-scrolling: touch;
}

.menu-tag-filters[hidden] {
  display: none;
}

.menu-tag-filter {
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  line-height: 1;
  padding: 0 12px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.menu-tag-filter:hover,
.menu-tag-filter:focus-visible {
  border-color: rgba(139, 255, 88, 0.7);
  background: rgba(139, 255, 88, 0.08);
  outline: none;
}

.menu-tag-filter.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #000000;
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.14);
}

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

.menu-empty-results {
  grid-column: 1 / -1;
}

.menu-item-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 80px minmax(70px, 1fr) auto;
  gap: 8px;
  border: 1px solid rgba(139, 255, 88, 0.74);
  border-radius: 8px;
  background: #020202;
  padding: 10px;
}

.menu-item-card.is-out {
  border-color: rgba(255, 255, 255, 0.18);
  opacity: 0.72;
}

.menu-item-card.is-premium {
  border-color: rgba(255, 214, 102, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 214, 102, 0.16), 0 0 22px rgba(255, 214, 102, 0.2);
  animation: menu-premium-glow 2.4s ease-in-out infinite alternate;
}

.menu-item-card.is-premium.is-out {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  animation: none;
}

.menu-item-image {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  height: 80px;
  border-radius: 7px;
  background: #000;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-discount-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 1;
  border: 1px solid rgba(194, 255, 154, 0.86);
  border-radius: 999px;
  background: rgba(20, 145, 38, 0.92);
  box-shadow: 0 0 12px rgba(124, 255, 77, 0.82), inset 0 0 10px rgba(255, 255, 255, 0.14);
  color: #f4ffe9;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.56rem;
  line-height: 1;
  padding: 5px 7px;
  text-transform: uppercase;
}

.menu-redeem-count-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(194, 255, 154, 0.86);
  border-radius: 999px;
  background: rgba(23, 210, 67, 0.94);
  box-shadow: 0 0 12px rgba(124, 255, 77, 0.62), inset 0 0 10px rgba(255, 255, 255, 0.16);
  color: #071003;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  line-height: 1;
  padding: 0 6px;
}

.menu-redeem-count-badge.has-discount {
  right: auto;
  left: 6px;
}

.menu-redeem-count-badge.is-wide {
  min-width: 34px;
  height: 24px;
  padding: 0 8px;
}

.menu-item-image span,
.menu-cart-thumb span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 2rem;
}

.menu-item-copy {
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
}

.menu-item-copy h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}

.menu-item-copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.menu-primary-tag {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.54);
  border-radius: 999px;
  background: rgba(139, 255, 88, 0.08);
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.54rem;
  line-height: 1;
  padding: 5px 7px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-item-bottom {
  display: grid;
  gap: 3px;
  justify-items: center;
  min-height: 34px;
}

.menu-item-bottom strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
}

.menu-original-price {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  text-decoration: line-through;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.58);
}

.menu-item-card.is-premium .menu-item-bottom strong,
.menu-premium-price,
.menu-cart-item.is-premium .menu-cart-price {
  display: inline-block;
  background: linear-gradient(90deg, #ff45d6, #ffd84a, #7cff4d, #40d8ff, #b57cff, #ff45d6);
  background-size: 320% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: menu-premium-price-rainbow 2s linear infinite;
}

.menu-item-bottom > span {
  color: var(--muted);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.56rem;
  text-transform: uppercase;
}

.menu-add-button {
  display: inline-grid;
  grid-template-columns: 16px minmax(0, auto);
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: #000000;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  text-transform: uppercase;
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.menu-add-button:hover {
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.16);
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.menu-item-card.is-premium .menu-add-button:not(:disabled) {
  border-color: #ffd84a;
  background: linear-gradient(135deg, #fff1a6, #ffd84a 45%, #b87a10);
  color: #000000;
  box-shadow: 0 0 16px rgba(255, 216, 74, 0.28);
}

.menu-item-card.is-premium .menu-add-button:not(:disabled):hover {
  box-shadow: 0 0 0 3px rgba(255, 216, 74, 0.18), 0 0 20px rgba(255, 216, 74, 0.34);
}

.menu-add-button:active {
  filter: brightness(0.96);
  transform: translateY(1px) scale(0.98);
}

.menu-add-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.menu-add-button:disabled {
  border-color: var(--line);
  background: #121212;
  color: #777;
  cursor: not-allowed;
  box-shadow: none;
  filter: none;
  transform: none;
}

.menu-card-actions {
  display: grid;
  gap: 7px;
}

.menu-fund-button {
  min-height: 38px;
  border: 1px solid #8750e9;
  border-radius: 8px;
  background: rgba(135, 80, 233, 0.1);
  color: #d8c7ff;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  text-transform: uppercase;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.menu-fund-button:hover {
  border-color: #a476ff;
  background: rgba(135, 80, 233, 0.16);
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(135, 80, 233, 0.2), 0 0 18px rgba(135, 80, 233, 0.28);
  transform: translateY(-1px);
}

.menu-fund-button:disabled {
  border-color: var(--line);
  color: #777;
  cursor: not-allowed;
  transform: none;
}

.menu-funding-mini {
  display: grid;
  gap: 5px;
  min-height: 46px;
  border: 1px solid rgba(139, 255, 88, 0.18);
  border-radius: 8px;
  background: rgba(139, 255, 88, 0.05);
  padding: 7px;
}

.menu-funding-mini.is-empty {
  align-content: center;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-style: dashed;
  background: #020202;
}

.menu-funding-mini-row,
.menu-partial-progress-labels,
.menu-cart-funding-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.menu-partial-progress-labels {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.menu-funding-mini span,
.menu-funding-mini strong,
.menu-cart-funding-head span,
.menu-cart-funding-head strong {
  overflow: hidden;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.58rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-funding-mini strong,
.menu-cart-funding-head strong {
  color: var(--ink);
  text-align: right;
}

.menu-funding-track {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.menu-funding-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  box-shadow: 0 0 14px rgba(139, 255, 88, 0.52);
}

.menu-funding-contributors {
  display: flex;
  gap: 5px;
  overflow: hidden;
}

.menu-funding-contributors span {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--muted);
  padding: 3px 5px;
}

.menu-funding-feature-card {
  display: grid;
  grid-column: 1 / -1;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(139, 255, 88, 0.86);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(139, 255, 88, 0.07), rgba(135, 80, 233, 0.04) 45%), #020202;
  box-shadow: inset 0 0 0 1px rgba(139, 255, 88, 0.12), 0 0 20px rgba(139, 255, 88, 0.08);
  padding: 10px;
}

.menu-funding-feature-card.is-premium,
.menu-cart-funding-card.is-premium,
#menu-partial-funding-modal.is-premium .menu-partial-funding-dialog {
  border-color: rgba(255, 214, 102, 0.92);
  background: linear-gradient(135deg, rgba(255, 216, 74, 0.1), rgba(135, 80, 233, 0.05) 45%), #020202;
  box-shadow: 0 0 0 1px rgba(255, 214, 102, 0.16), 0 0 22px rgba(255, 214, 102, 0.2);
  animation: menu-premium-glow 2.4s ease-in-out infinite alternate;
}

.menu-funding-feature-card.is-premium .menu-cart-funding-thumb,
.menu-cart-funding-card.is-premium .menu-cart-funding-thumb,
#menu-partial-funding-modal.is-premium .menu-partial-funding-thumb,
.menu-cart-funding-card.is-premium .menu-cart-contributors,
.menu-funding-feature-card.is-premium .menu-funding-feature-contributors {
  border-color: rgba(255, 214, 102, 0.42);
}

.menu-funding-feature-main {
  grid-template-columns: minmax(118px, 0.2fr) minmax(0, 1fr) minmax(154px, 0.22fr);
  gap: 14px;
}

.menu-funding-feature-image {
  min-height: 118px;
}

.menu-funding-feature-copy > strong {
  font-size: clamp(1.02rem, 1.75vw, 1.42rem);
}

.menu-funding-feature-copy > small {
  font-size: 0.78rem;
}

.menu-funding-feature-goal {
  grid-template-columns: minmax(92px, auto) minmax(0, 1fr) auto;
  gap: 9px;
  margin-top: 3px;
}

.menu-funding-feature-goal > div:first-child strong {
  font-size: clamp(1.28rem, 2.2vw, 1.72rem);
}

.menu-funding-feature-track {
  height: 12px;
}

.menu-funding-feature-contributors {
  padding-left: 12px;
}

.menu-funding-feature-contributor {
  border-color: rgba(135, 80, 233, 0.56);
  background: rgba(135, 80, 233, 0.1);
}

.menu-funding-feature-empty {
  display: grid;
  min-height: 36px;
  align-items: center;
  border: 1px dashed rgba(135, 80, 233, 0.5);
  border-radius: 8px;
  color: var(--muted);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  padding: 0 8px;
  text-transform: uppercase;
}

.menu-funding-feature-button {
  display: inline-grid;
  grid-template-columns: 16px minmax(0, auto);
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: #000000;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.menu-funding-feature-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.menu-funding-feature-button:hover {
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.16);
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.menu-funding-feature-button:active {
  filter: brightness(0.96);
  transform: translateY(1px) scale(0.99);
}

.menu-funding-feature-button:disabled {
  border-color: var(--line);
  background: #121212;
  color: #777;
  cursor: not-allowed;
  box-shadow: none;
  filter: none;
  transform: none;
}

.menu-funding-feature-card.is-premium .menu-funding-feature-button:not(:disabled),
#menu-partial-funding-modal.is-premium #menu-partial-funding-add {
  border-color: #ffd84a;
  background: linear-gradient(135deg, #fff1a6, #ffd84a 45%, #b87a10);
  color: #000000;
  box-shadow: 0 0 16px rgba(255, 216, 74, 0.28);
}

.menu-funding-feature-card.is-premium .menu-funding-feature-button:not(:disabled):hover,
#menu-partial-funding-modal.is-premium #menu-partial-funding-add:hover {
  box-shadow: 0 0 0 3px rgba(255, 216, 74, 0.18), 0 0 20px rgba(255, 216, 74, 0.34);
}

.menu-cart {
  display: grid;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-cart-list {
  display: grid;
  gap: 8px;
}

.menu-cart-list:empty {
  display: none;
}

.menu-cart-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.menu-cart-item.is-premium {
  border-color: rgba(255, 214, 102, 0.78);
  background: linear-gradient(135deg, rgba(255, 214, 102, 0.1), rgba(255, 255, 255, 0.01) 42%), #030303;
  box-shadow: 0 0 0 1px rgba(255, 214, 102, 0.12), 0 0 18px rgba(255, 214, 102, 0.16);
}

.menu-cart-item.is-premium .menu-cart-thumb {
  border-color: rgba(255, 214, 102, 0.68);
}

.menu-cart-item.is-premium .menu-cart-copy span {
  color: #ffd84a;
}

.menu-cart-thumb {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.36);
  border-radius: 7px;
  background: #000;
}

.menu-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-cart-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.menu-cart-copy strong {
  overflow: hidden;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-cart-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-cart-price {
  min-width: 68px;
  color: var(--green);
  text-align: right;
}

.menu-cart-details {
  display: grid;
  grid-column: 2 / -1;
  gap: 8px;
  min-width: 0;
  border-top: 1px solid rgba(139, 255, 88, 0.14);
  padding-top: 8px;
}

.menu-cart-details label {
  display: grid;
  gap: 6px;
}

.menu-cart-details span {
  color: var(--muted);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.64rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.menu-cart-details input {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  color: var(--ink);
  padding: 0 10px;
  font-weight: 900;
}

.menu-cart-details input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.16);
  outline: none;
}

.menu-cart-funding-item {
  border-color: rgba(139, 255, 88, 0.72);
  border-top: 1px solid rgba(139, 255, 88, 0.72);
  background: linear-gradient(135deg, rgba(139, 255, 88, 0.08), rgba(128, 66, 255, 0.04) 46%), #020202;
  padding: 10px;
}

.menu-funding-amount-control {
  min-width: 154px;
}

.menu-funding-amount-control span {
  min-width: 72px;
  color: var(--ink);
}

.menu-cart-funding-details {
  border: 1px solid rgba(139, 255, 88, 0.18);
  border-radius: 8px;
  background: #000;
  padding: 10px;
}

.menu-cart-funding-details small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-cart-funding-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(139, 255, 88, 0.82);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(139, 255, 88, 0.07), rgba(135, 80, 233, 0.04) 45%), #020202;
  padding: 12px;
}

.menu-cart-funding-main {
  display: grid;
  grid-template-columns: minmax(118px, 0.2fr) minmax(0, 1fr) minmax(154px, 0.22fr);
  gap: 14px;
  align-items: stretch;
}

.menu-cart-funding-thumb {
  display: grid;
  width: 100%;
  min-height: 122px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.38);
  border-radius: 8px;
  background: #000000;
}

.menu-cart-funding-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-cart-funding-thumb span {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
}

.menu-cart-funding-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
  align-content: start;
}

.menu-cart-funding-copy > strong {
  overflow-wrap: anywhere;
  color: #ffffff;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.menu-cart-funding-copy > small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.22;
}

.menu-cart-funding-goal {
  display: grid;
  grid-template-columns: minmax(96px, auto) minmax(0, 1fr) auto;
  gap: 11px;
  align-items: end;
  margin-top: 5px;
}

.menu-cart-funding-goal > div {
  display: grid;
  gap: 2px;
}

.menu-cart-funding-goal > div:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding-right: 11px;
}

.menu-cart-funding-goal span,
.menu-cart-contributors > span,
.menu-cart-funding-after-title,
.menu-cart-funding-contribution-title {
  color: var(--muted);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.menu-cart-funding-goal strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
}

.menu-funding-feature-goal .menu-premium-price,
.menu-cart-funding-goal .menu-premium-price,
.menu-partial-total-price .menu-premium-price {
  display: inline-block;
  background: linear-gradient(90deg, #ff45d6, #ffd84a, #7cff4d, #40d8ff, #b57cff, #ff45d6);
  background-size: 320% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: menu-premium-price-rainbow 2s linear infinite;
}

.menu-cart-funding-contribution-title {
  color: var(--green);
}

.menu-cart-contributors > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-cart-funding-goal > div:first-child strong {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1;
}

.menu-cart-funding-goal b {
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
}

.menu-cart-current-track {
  height: 12px;
}

.menu-cart-contributors {
  display: grid;
  gap: 7px;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 12px;
  align-content: start;
}

.menu-cart-contributor-list {
  display: grid;
  gap: 7px;
}

.menu-cart-contributor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-width: 0;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 5px 8px;
}

.menu-cart-contributor.is-current {
  border-color: rgba(135, 80, 233, 0.48);
  background: rgba(135, 80, 233, 0.08);
}

.menu-cart-contributor strong,
.menu-cart-contributor b {
  overflow: hidden;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-cart-contributor b {
  color: var(--green);
}

.menu-cart-funding-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(244px, 0.28fr);
  gap: 4px 13px;
  align-items: start;
  border-top: 1px solid rgba(139, 255, 88, 0.24);
  padding-top: 10px;
}

.menu-cart-funding-after-title,
.menu-cart-funding-contribution-title {
  overflow: hidden;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-cart-funding-after-title {
  justify-self: center;
  max-width: 100%;
  color: var(--muted);
}

.menu-cart-funding-contribution-title {
  justify-self: start;
}

.menu-cart-funding-after {
  display: grid;
  grid-template-rows: 13px 12px;
  gap: 3px;
  min-width: 0;
  height: 42px;
  box-sizing: border-box;
  border: 1px solid rgba(139, 255, 88, 0.2);
  border-radius: 8px;
  background: #000000;
  padding: 6px 10px;
}

.menu-cart-funding-after .menu-partial-track {
  height: 12px;
}

.menu-cart-progress-labels {
  position: relative;
  display: block;
  min-height: 13px;
}

.menu-cart-progress-labels span,
.menu-cart-progress-labels strong {
  position: absolute;
  bottom: 0;
  font-size: 0.62rem;
  line-height: 1;
  white-space: nowrap;
}

.menu-cart-progress-labels span:first-child {
  left: 0;
}

.menu-cart-progress-labels span:last-child {
  right: 0;
}

.menu-cart-progress-labels [data-funding-after-value] {
  left: clamp(108px, var(--after-percent, 0%), calc(100% - 108px));
  text-align: center;
  transform: translateX(-50%);
}

.menu-cart-funding-after small {
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.menu-cart-funding-control-row {
  display: grid;
  grid-template-columns: 42px minmax(96px, 1fr) 42px 42px;
  gap: 7px;
  align-items: stretch;
  min-width: 0;
}

.menu-cart-funding-control-row button,
.menu-cart-funding-money {
  width: 42px;
  height: 42px;
  min-height: 42px;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
}

.menu-cart-funding-control-row button {
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
}

.menu-cart-funding-control-row button:hover {
  border-color: var(--green);
  color: var(--green);
}

.menu-cart-funding-money {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px;
  align-items: center;
  width: 100%;
  border-color: var(--green);
  padding: 0 8px;
}

.menu-cart-funding-money span,
.menu-cart-funding-money input {
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
}

.menu-cart-funding-money input {
  min-width: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: transparent;
  line-height: 1;
  padding: 0;
  text-align: center;
}

.menu-cart-funding-money input:focus {
  outline: none;
}

.menu-cart-funding-money input::-webkit-outer-spin-button,
.menu-cart-funding-money input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.print-remove-button.menu-cart-funding-remove {
  width: 42px;
  height: 42px;
  min-height: 42px;
  border-color: rgba(255, 77, 77, 0.9);
  color: #ff4d4d;
}

.print-remove-button.menu-cart-funding-remove:hover {
  border-color: #ff4d4d;
  color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.14);
}

.menu-partial-funding-dialog {
  position: relative;
  width: min(100%, 500px);
  border-color: rgba(139, 255, 88, 0.72);
  background: linear-gradient(135deg, rgba(139, 255, 88, 0.07), rgba(128, 66, 255, 0.05) 45%), #030303;
}

.menu-partial-funding-body {
  display: grid;
  gap: 14px;
}

.menu-partial-funding-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.menu-partial-funding-thumb {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.36);
  border-radius: 8px;
  background: #000;
}

.menu-partial-funding-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-partial-funding-thumb span {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 2rem;
}

.menu-partial-funding-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.menu-partial-funding-badge,
.menu-partial-funding-field span,
.menu-partial-progress-card small,
.menu-partial-after-title,
.menu-partial-total-price span {
  color: var(--muted);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.menu-partial-funding-badge {
  justify-self: start;
  border-radius: 4px;
  background: linear-gradient(180deg, #8750e9, #5d37aa);
  color: #ffffff;
  line-height: 1;
  padding: 4px 7px;
}

.menu-partial-funding-item strong,
.menu-partial-progress-labels strong,
.menu-partial-current-labels strong,
.menu-partial-total-price strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
}

.menu-partial-funding-item small {
  display: block;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
  white-space: normal;
}

.menu-partial-current-card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 16px;
}

.menu-partial-total-price {
  display: grid;
  gap: 2px;
}

.menu-partial-total-price strong {
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  line-height: 1;
}

.menu-partial-current-progress {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.menu-partial-current-labels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 10px;
  align-items: end;
}

.menu-partial-current-labels span {
  display: block;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1.12;
}

.menu-partial-current-labels b {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.menu-partial-progress-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(139, 255, 88, 0.18);
  border-radius: 8px;
  background: #000;
  padding: 10px;
}

.menu-partial-progress-labels span,
.menu-partial-progress-labels strong {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
}

.menu-partial-progress-labels span:last-child {
  text-align: right;
}

.menu-partial-current-track,
.menu-partial-track {
  height: 15px;
}

.menu-partial-plan-track {
  position: relative;
}

.menu-partial-plan-track .menu-track-funded,
.menu-partial-plan-track .menu-track-planned {
  position: absolute;
  top: 0;
  height: 100%;
}

.menu-partial-plan-track .menu-track-funded {
  left: 0;
}

.menu-partial-plan-track .menu-track-planned {
  border: 2px dashed rgba(164, 88, 255, 0.9);
  background: transparent;
  box-shadow: none;
}

.menu-partial-funding-actions {
  grid-template-columns: 1fr;
}

.menu-partial-funding-actions .media-loop-dialog-secondary {
  min-height: 38px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
}

.menu-partial-funding-field {
  display: grid;
  gap: 7px;
}

.menu-partial-funding-field input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
  color: var(--ink);
  padding: 0 12px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
}

.menu-partial-funding-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.16);
  outline: none;
}

.menu-partial-funding-field small {
  color: var(--muted);
  font-weight: 800;
}

.menu-partial-preset-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.menu-partial-preset-row button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
}

.menu-partial-preset-row button:hover {
  border-color: var(--green);
  color: var(--green);
}

.menu-partial-preset-row button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #000000;
}

.menu-timer-spin-option {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px dashed rgba(139, 255, 88, 0.58);
  border-radius: 8px;
  background: rgba(139, 255, 88, 0.06);
  padding: 11px 42px 11px 11px;
}

.menu-timer-spin-option.is-selected {
  border-style: solid;
  background: rgba(139, 255, 88, 0.11);
  box-shadow: 0 0 18px rgba(139, 255, 88, 0.12);
}

.menu-timer-spin-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.menu-timer-spin-copy strong {
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.menu-timer-spin-title-row,
.menu-timer-spin-subtitle {
  display: block;
}

.menu-timer-spin-subtitle {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
}

.menu-timer-spin-prizes {
  font-size: 0.78rem;
  line-height: 1.2;
}

.menu-timer-spin-price {
  min-width: 82px;
  min-height: 38px;
  padding: 0 8px;
  font-size: 0.72rem;
}

.menu-timer-spin-info {
  top: 8px;
  right: 8px;
  width: 23px;
  height: 23px;
  font-size: 0.68rem;
}

.menu-total-row {
  border: 1px solid rgba(139, 255, 88, 0.6);
  border-radius: 8px;
  background: #000;
  padding: 12px;
}

.menu-total-row span {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.menu-total-row strong {
  display: block;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  text-align: right;
}

.menu-total-row div:last-child small {
  display: block;
  text-align: right;
}

.menu-timer-bonus-dialog {
  width: min(100%, 470px);
  border-color: rgba(255, 214, 102, 0.5);
  background: linear-gradient(135deg, rgba(255, 214, 102, 0.08), rgba(139, 255, 88, 0.04) 38%), #030303;
}

.menu-timer-bonus-body {
  display: grid;
  gap: 10px;
}

.menu-timer-bonus-item,
.menu-timer-bonus-row {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(139, 255, 88, 0.16);
  border-radius: 8px;
  background: #000000;
  padding: 10px;
}

.menu-timer-bonus-item {
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  border-color: rgba(255, 214, 102, 0.42);
}

.menu-timer-bonus-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 214, 102, 0.58);
  border-radius: 8px;
  color: #ffd84a;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
}

.menu-timer-bonus-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.menu-timer-bonus-copy strong,
.menu-timer-bonus-price,
.menu-timer-bonus-row strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
}

.menu-timer-bonus-copy small,
.menu-timer-bonus-row span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.25;
}

.menu-timer-bonus-price {
  color: #ffd84a;
}

.menu-timer-bonus-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.menu-timer-bonus-row strong {
  text-align: right;
}

@keyframes menu-premium-price-rainbow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 320% 50%;
  }
}

@keyframes menu-premium-glow {
  from {
    box-shadow: 0 0 0 1px rgba(255, 214, 102, 0.12), 0 0 14px rgba(255, 214, 102, 0.16);
  }

  to {
    box-shadow: 0 0 0 1px rgba(255, 214, 102, 0.25), 0 0 26px rgba(255, 214, 102, 0.32);
  }
}

.print-service-banner {
  border: 1px solid rgba(255, 207, 72, 0.55);
  border-radius: 8px;
  background: rgba(255, 207, 72, 0.12);
  color: #ffd86b;
  padding: 10px 12px;
  font-weight: 900;
  line-height: 1.35;
}

.print-compose {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(139, 255, 88, 0.2);
  border-radius: 8px;
  background: #020202;
  padding: 14px;
}

.print-compose-heading,
.print-section-heading,
.print-price-summary,
.media-total-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.print-compose-heading h2,
.print-section-heading h3 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  line-height: 1.15;
  text-transform: uppercase;
}

.print-compose-heading h2 {
  font-size: 1rem;
}

.print-section-heading h3 {
  font-size: 0.92rem;
}

.print-compose-heading p,
.print-section-heading span,
.print-empty-queue,
.print-price-summary small,
.media-total-row small {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.print-compose-heading strong,
.print-section-heading h3 span,
.print-queue-price,
.print-price-summary strong,
.media-total-row strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.print-compose-heading strong {
  white-space: nowrap;
  font-size: 0.84rem;
}

.print-source-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.print-source-toggle button,
.print-add-button,
.print-quantity-control button,
.print-remove-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.print-source-toggle button {
  min-height: 42px;
  letter-spacing: 0;
}

.print-source-toggle button.is-active,
.print-add-button {
  border-color: var(--green);
  background: var(--green);
  color: #000000;
}

.print-source-toggle button:hover,
.print-add-button:hover,
.print-quantity-control button:hover,
.print-remove-button:hover {
  border-color: var(--green);
}

.print-upload-field,
.print-url-field {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.print-upload-field[hidden],
.print-url-field[hidden] {
  display: none;
}

.print-drop-zone {
  display: grid;
  min-height: 138px;
  place-items: center;
  gap: 4px;
  border: 1px dashed var(--green);
  border-radius: 8px;
  background: #030303;
  color: var(--ink);
  padding: 18px;
  text-align: center;
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.print-upload-icon {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.print-drop-preview {
  width: min(112px, 42vw);
  height: 86px;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 7px;
  background: #000000;
  object-fit: cover;
}

.print-drop-preview[hidden] {
  display: none;
}

.print-drop-zone.has-preview {
  border-style: solid;
  background: rgba(139, 255, 88, 0.05);
}

.print-drop-zone.has-preview .print-upload-icon {
  display: none;
}

.print-drop-zone strong,
.print-drop-zone span {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  line-height: 1.2;
}

.print-drop-zone span {
  color: var(--green);
}

.print-drop-zone small,
.print-url-field small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.print-drop-zone:hover,
.print-drop-zone.is-dragging {
  border-color: var(--ink);
  background: rgba(139, 255, 88, 0.08);
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.12);
}

.print-url-field > span:first-child {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.print-url-shell {
  display: grid;
  min-height: 54px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  overflow: hidden;
}

.print-url-shell:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.16);
}

.print-url-icon {
  width: 22px;
  height: 22px;
  justify-self: center;
  fill: var(--green);
}

.print-url-field input {
  min-height: 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
}

.print-url-field input:focus {
  box-shadow: none;
}

.print-custom-help {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.print-custom-help.error {
  color: #ff8277;
}

.print-add-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
}

.print-add-button span {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 999px;
  background: #000000;
  color: var(--green);
  line-height: 1;
}

.print-add-button:disabled {
  border-color: var(--line);
  background: #121212;
  color: #777777;
  cursor: not-allowed;
}

.print-add-button:disabled span {
  background: #050505;
  color: #777777;
}

.print-section-heading {
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.print-queue-heading {
  margin-top: -1px;
}

.preset-button,
.print-redeem-button {
  min-width: 0;
  min-height: 44px;
  overflow: hidden;
}

.print-redeem-button {
  display: grid;
  min-height: 48px;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: #030303;
  color: var(--ink);
  padding: 8px 12px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.redeem-thumb {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(139, 255, 88, 0.8);
  border-radius: 5px;
  background: #000000;
}

.redeem-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.redeem-thumb::before,
.print-queue-thumb > span::before {
  width: 14px;
  height: 10px;
  border-radius: 2px;
  background: var(--green);
  content: "";
  opacity: 0.9;
}

.redeem-thumb:has(img)::before {
  display: none;
}

.redeem-thumb-sexy {
  border-color: rgba(255, 69, 214, 0.9);
}

.redeem-thumb-sexy::before {
  background: #ff45d6;
}

.redeem-price {
  color: var(--green);
  font-size: 1rem;
}

.redeem-label {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.print-redeem-button.is-active .redeem-label,
.print-redeem-button.is-active .redeem-price {
  color: #000000;
}

.print-queue-list {
  display: grid;
  gap: 8px;
}

.print-queue-list:empty {
  display: none;
}

.print-empty-queue {
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #010101;
  padding: 12px;
  text-align: center;
}

.print-queue-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #030303;
  padding: 8px;
}

.print-queue-thumb {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.36);
  border-radius: 7px;
  background: #000000;
}

.print-queue-thumb.is-sexy {
  border-color: rgba(255, 69, 214, 0.6);
}

.print-queue-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.print-queue-thumb > span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: #000000;
}

.menu-cart-thumb > .menu-cart-fallback {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.78rem;
  line-height: 1;
}

.menu-cart-thumb > .menu-cart-fallback::before {
  display: none;
}

.print-queue-thumb.is-sexy > span::before {
  background: #ff45d6;
}

.print-queue-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.print-queue-copy span {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.print-queue-copy strong {
  overflow: hidden;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
}

.print-queue-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.print-queue-price {
  min-width: 68px;
  text-align: right;
}

.print-quantity-control {
  display: grid;
  width: 118px;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
}

.print-quantity-control button {
  min-height: 36px;
  border-width: 0;
  border-radius: 0;
  font-size: 1.1rem;
}

.print-quantity-control span {
  display: grid;
  min-height: 36px;
  place-items: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
}

.print-remove-button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-color: rgba(255, 74, 74, 0.55);
  color: var(--danger);
  font-size: 1rem;
  line-height: 1;
}

.print-price-summary,
.media-total-row {
  align-items: center;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 8px;
  background: #010101;
  padding: 14px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.media-total-row[hidden] {
  display: none;
}

.print-price-summary span,
.media-total-row span {
  color: var(--ink);
  font-size: 1rem;
}

.print-price-summary small,
.media-total-row small {
  display: block;
}

.print-price-summary strong,
.media-total-row strong {
  display: block;
  color: var(--green);
  font-size: 1.85rem;
  line-height: 1;
  text-align: right;
}

.print-price-summary div:last-child small,
.media-total-row div:last-child small {
  display: block;
  text-align: right;
}

.field-grid,
.payment-method-grid,
.card-row {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.field-grid {
  grid-template-columns: 1fr 1fr;
}

.donation-form.is-tts-purpose .field-grid {
  grid-template-columns: minmax(0, 1fr);
}

.donation-form.is-tts-purpose .field-grid label:nth-child(2) {
  display: none;
}

.donation-form.is-media-purpose .media-share-panel {
  order: 1;
}

.donation-form.is-media-purpose .field-grid {
  order: 2;
}

.donation-form.is-media-purpose .field-note {
  order: 3;
}

.donation-form.is-media-purpose .amount-fieldset {
  order: 4;
}

.input-shell {
  display: grid;
  min-height: 58px;
  align-items: center;
  grid-template-columns: 38px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  padding: 0 12px;
}

.media-url-shell {
  grid-template-columns: 38px minmax(0, 1fr) 40px;
  padding-right: 8px;
}

.input-shell:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.16);
}

.field-icon {
  width: 23px;
  height: 23px;
  fill: var(--green);
}

.media-paste-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 255, 88, 0.34);
  border-radius: 7px;
  background: #050505;
  color: var(--green);
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.media-paste-button:hover,
.media-paste-button:focus-visible {
  border-color: var(--green);
  background: #0d180a;
}

.media-paste-button:active {
  transform: translateY(1px);
}

.media-paste-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.input-shell input,
.input-shell textarea {
  min-height: 56px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.input-shell textarea {
  display: block;
  padding-top: 17px;
  line-height: 1.35;
}

.input-shell input:focus,
.input-shell textarea:focus {
  box-shadow: none;
}

.field-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.media-share-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(139, 255, 88, 0.22);
  border-radius: 8px;
  background: #020202;
  padding: 14px;
}

.media-share-heading {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
}

.media-share-heading h2 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.media-share-heading span {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  white-space: nowrap;
  text-transform: uppercase;
}

.media-minimum-label {
  display: none;
  border: 1px solid rgba(139, 255, 88, 0.34);
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(139, 255, 88, 0.08);
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}

.donation-form.is-media-purpose .media-minimum-label {
  display: inline-flex;
}

.wide-label {
  display: grid;
  gap: 8px;
}

.wide-label > span:first-child,
.media-time-grid label > span,
.media-loop-toggle span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-preview-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  padding: 10px;
}

.media-preview-card.is-blocked {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.2);
}

.media-preview-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: #050505;
  object-fit: cover;
}

.media-preview-card img.is-placeholder {
  background: #071207;
}

.media-preview-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.media-preview-copy span {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.media-preview-copy strong {
  overflow-wrap: anywhere;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.media-preview-copy p,
.media-pricing-info {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.media-preview-copy p .is-blocked,
.media-pricing-info.is-error {
  color: #ff4d4d;
  font-weight: 900;
}

.media-pricing-info.is-pending {
  color: #ffd166;
  font-weight: 900;
}

.media-time-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(250px, 1.2fr);
  gap: 10px;
  align-items: end;
}

.media-time-grid label,
.media-loop-control {
  display: grid;
  gap: 8px;
}

.media-loop-toggle {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: center;
  justify-content: start;
  min-width: 0;
  padding: 0 13px;
  border-right: 1px solid rgba(139, 255, 88, 0.36);
}

.media-loop-toggle input {
  width: 21px;
  min-height: 21px;
  height: 21px;
  accent-color: var(--green);
  filter: drop-shadow(0 0 8px rgba(139, 255, 88, 0.28));
}

.media-loop-control {
  grid-template-columns: minmax(98px, 1fr) minmax(156px, auto);
  gap: 0;
  align-items: stretch;
  min-height: 58px;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.32);
  border-radius: 8px;
  background: #000000;
  box-shadow: inset 0 0 0 1px rgba(139, 255, 88, 0.08), 0 0 18px rgba(139, 255, 88, 0.04);
}

.media-loop-counter {
  display: grid;
  grid-template-columns: 42px minmax(72px, 1fr) 42px;
  min-width: 156px;
  background: rgba(139, 255, 88, 0.03);
}

.media-loop-counter button,
.media-loop-counter input {
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: #000000;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

.media-loop-counter button {
  cursor: pointer;
  background: rgba(139, 255, 88, 0.04);
}

.media-loop-counter button:hover:not(:disabled),
.media-loop-counter button:focus-visible:not(:disabled) {
  background: rgba(139, 255, 88, 0.18);
  color: #ffffff;
  outline: none;
}

.media-loop-counter input {
  width: 100%;
  border-right: 1px solid rgba(139, 255, 88, 0.46);
  border-left: 1px solid rgba(139, 255, 88, 0.46);
  color: var(--ink);
  padding: 0 7px;
  font-size: 0.92rem;
  appearance: textfield;
}

.media-loop-counter input::-webkit-outer-spin-button,
.media-loop-counter input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.media-loop-counter button:disabled,
.media-loop-counter input:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.media-price-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}

.media-selection-price {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.2);
  border-radius: 8px;
  background: #010101;
  color: var(--ink);
}

.media-selection-price[hidden] {
  display: none;
}

.media-pricing-info.is-rich {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.2);
  border-radius: 8px;
  background: #010101;
  color: var(--ink);
}

.media-pricing-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
}

.media-pricing-row svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
}

.media-selection-price-row {
  grid-template-columns: 32px minmax(0, 1fr);
}

.media-pricing-copy {
  overflow-wrap: anywhere;
  font-weight: 900;
  line-height: 1.45;
}

.media-pricing-highlight {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
}

.timer-panel {
  display: grid;
  gap: 13px;
}

.timer-panel[hidden] {
  display: none;
}

.timer-hero,
.timer-cost-row,
.timer-spin-card,
.timer-total-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #020202;
}

.timer-hero {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.timer-hero-heading {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
}

.timer-hero-heading h2,
.timer-section-label {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.timer-hero-heading span {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  white-space: nowrap;
  text-transform: uppercase;
}

.timer-clock {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  gap: clamp(6px, 1.5vw, 18px);
  align-items: center;
  justify-content: center;
  color: var(--green);
  text-align: center;
  transition: color 220ms ease, transform 160ms ease;
}

.timer-clock > div {
  min-width: clamp(76px, 14vw, 150px);
}

.timer-clock[data-state="warning"] {
  color: var(--warning);
}

.timer-clock[data-state="danger"] {
  color: var(--danger);
  animation: timer-tremble 130ms linear infinite;
}

.timer-clock[data-state="finished"] {
  color: #d8d8d8;
  animation: none;
}

.timer-clock[data-state="paused"] {
  color: #7fd8ff;
  animation: none;
}

.timer-clock strong,
.timer-clock b {
  font-family: var(--timer-display-font);
  font-size: clamp(3.8rem, 13vw, 6.75rem);
  font-variant-numeric: tabular-nums lining-nums;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
  text-shadow: 0 0 16px rgba(139, 255, 88, 0.2);
}

.timer-clock b {
  position: relative;
  width: 0.22em;
  height: 0.68em;
  overflow: hidden;
  transform: translateY(0.02em);
  text-indent: -999px;
}

.timer-clock b::before,
.timer-clock b::after {
  position: absolute;
  left: 50%;
  width: 0.17em;
  height: 0.17em;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.timer-clock b::before {
  top: 0.09em;
}

.timer-clock b::after {
  bottom: 0.09em;
}

.timer-clock span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.timer-live-note,
.timer-inactive-banner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  padding: 10px 12px;
  color: var(--ink);
  text-align: center;
}

.timer-live-note span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(139, 255, 88, 0.15);
}

.timer-live-note p {
  margin: 0;
  line-height: 1.35;
}

.timer-inactive-banner {
  border-color: rgba(255, 215, 92, 0.55);
  color: var(--warning);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.timer-time-control {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 154px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
}

.timer-control-icon,
.timer-cost-icon {
  display: grid;
  place-items: center;
  color: var(--green);
}

.timer-control-icon,
.timer-cost-icon {
  min-height: 62px;
  border-right: 1px solid var(--line);
}

.timer-cost-icon {
  min-height: 76px;
}

.timer-control-icon svg,
.timer-cost-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.timer-cost-icon svg {
  width: 31px;
  height: 31px;
}

.timer-time-control > strong {
  overflow-wrap: anywhere;
  padding: 0 16px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.58rem;
  text-align: center;
  text-transform: uppercase;
}

.timer-duration-number {
  color: var(--ink);
  font-size: 1.14em;
  line-height: 1;
}

.timer-duration-unit {
  margin-left: 3px;
  color: var(--green);
  font-size: 0.58em;
  vertical-align: baseline;
}

.timer-duration-separator {
  display: inline-block;
  margin: 0 0.28em;
  color: var(--green);
  font-size: 0.86em;
  line-height: 1;
  vertical-align: baseline;
}

.timer-stepper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
}

.timer-stepper button,
.timer-increment-row button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #030303;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.timer-stepper button {
  font-size: 1.35rem;
  line-height: 1;
}

.timer-increment-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.timer-increment-row button {
  border-color: rgba(139, 255, 88, 0.7);
  color: var(--green);
}

.timer-increment-row .timer-clear-button {
  border-color: rgba(255, 215, 92, 0.78);
  background: rgba(255, 215, 92, 0.08);
  color: var(--warning);
}

.timer-stepper button:hover,
.timer-increment-row button:hover {
  border-color: var(--green);
}

.timer-increment-row .timer-clear-button:hover {
  border-color: var(--warning);
  color: var(--warning);
  box-shadow: 0 0 18px rgba(255, 215, 92, 0.16);
}

.timer-cost-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
}

.timer-cost-row > div:not(.timer-cost-icon) {
  display: grid;
  gap: 4px;
  padding: 13px 16px;
}

.timer-cost-row strong {
  overflow-wrap: anywhere;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.timer-cost-row strong span {
  color: var(--green);
}

.timer-cost-row span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.timer-spin-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-style: dashed;
  border-color: rgba(139, 255, 88, 0.68);
  padding: 16px 48px 16px 14px;
}

.timer-spin-check {
  display: grid;
  place-items: center;
}

.timer-spin-check input {
  position: absolute;
  opacity: 0;
}

.timer-spin-check span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 4px;
  background: #000000;
}

.timer-spin-check span::before {
  content: "";
}

.timer-spin-check input:checked + span {
  background: var(--green);
}

.timer-spin-check input:checked + span::before {
  width: 7px;
  height: 11px;
  border-right: 3px solid #000000;
  border-bottom: 3px solid #000000;
  transform: rotate(42deg) translateY(-1px);
}

.timer-spin-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.timer-spin-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.timer-spin-copy strong {
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.timer-spin-copy > span {
  color: var(--muted);
  line-height: 1.35;
}

.timer-spin-subtitle {
  font-size: 0.82rem;
}

.timer-spin-prizes {
  color: var(--ink) !important;
  font-size: 0.96rem;
}

.timer-spin-prizes b {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
}

.timer-spin-prizes b:not(.timer-prize-random) {
  text-transform: uppercase;
}

.timer-prize-10 {
  color: #ba55ff;
}

.timer-prize-5 {
  color: #ffd75c;
}

.timer-prize-2 {
  color: #36c8ff;
}

.timer-prize-random {
  color: #8fff36;
  text-transform: none;
}

.timer-prize-random span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76em;
  font-weight: 900;
}

.timer-spin-price {
  display: inline-flex;
  min-width: 112px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid rgba(139, 255, 88, 0.78);
  border-radius: 7px;
  background: rgba(139, 255, 88, 0.12);
  padding: 0 14px;
  color: var(--green) !important;
  cursor: pointer;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.timer-spin-price:hover,
.timer-spin-price:focus-visible {
  border-color: var(--green);
  background: rgba(139, 255, 88, 0.18);
  box-shadow: 0 0 18px rgba(139, 255, 88, 0.14);
}

.timer-info-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(139, 255, 88, 0.58);
  border-radius: 50%;
  background: #000000;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  line-height: 1;
}

.timer-spin-wheel-large {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.timer-total-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 8px;
  background: #010101;
  padding: 14px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.timer-total-row span,
.timer-total-row small,
.timer-total-row strong {
  display: block;
}

.timer-total-row span {
  color: var(--ink);
  font-size: 1rem;
}

.timer-total-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

#timer-total-detail {
  font-size: 1.08rem;
  line-height: 1.2;
}

.timer-total-row strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  text-align: right;
}

.timer-total-row div:last-child small {
  text-align: right;
}

.timer-total-row .timer-duration-number,
.timer-total-row .timer-duration-unit,
.timer-total-row .timer-duration-separator {
  display: inline-block;
}

.timer-total-row .timer-duration-number {
  color: var(--ink);
  font-size: 1.24em;
}

.timer-total-row .timer-duration-unit {
  color: var(--green);
  font-size: 0.64em;
}

.timer-total-row .timer-duration-separator {
  color: var(--green);
  font-size: 0.9em;
}

.timer-bonus-spin-text {
  display: inline-block;
  margin-left: 8px;
  background: linear-gradient(90deg, #ff4a4a, #ffd75c, #8bff58, #36c8ff, #ba55ff, #ff4a4a);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: timer-rainbow-text 2200ms linear infinite;
}

.timer-total-row .timer-bonus-spin-text,
.menu-total-row .timer-bonus-spin-text {
  display: inline-block;
  font-size: 1em;
  background: linear-gradient(90deg, #ff4a4a, #ffd75c, #8bff58, #36c8ff, #ba55ff, #ff4a4a);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: timer-rainbow-text 2200ms linear infinite;
}

.timer-minimum-note {
  margin: -4px 0 0;
  border: 1px solid rgba(255, 215, 92, 0.42);
  border-radius: 8px;
  background: rgba(255, 215, 92, 0.08);
  padding: 9px 12px;
  color: var(--warning);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.timer-minimum-note[hidden] {
  display: none;
}

.timer-spin-upsell-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147483220;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.84);
  padding: 12px;
}

.timer-spin-upsell-backdrop[hidden] {
  display: none;
}

.timer-spin-upsell-dialog {
  position: relative;
  width: min(704px, 100%);
  max-height: calc(100dvh - 24px);
  overflow: auto;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(139, 255, 88, 0.62);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 44%, rgba(139, 255, 88, 0.16), transparent 31%),
    #030303;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.74);
  padding: clamp(18px, 3.4vw, 30px);
}

.timer-spin-upsell-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #000000;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.timer-spin-upsell-close:hover,
.timer-spin-upsell-close:focus-visible {
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

.timer-spin-upsell-heading {
  display: grid;
  gap: 9px;
  justify-items: center;
  padding: 0 42px;
  text-align: center;
}

.timer-spin-upsell-heading h2 {
  margin: 0;
  font-family: "Bowlby One SC", "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 5.6vw, 3.1rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.timer-spin-upsell-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  line-height: 1.35;
}

.timer-spin-upsell-heading strong,
.timer-spin-upsell-price-text {
  color: var(--green);
}

.timer-spin-upsell-heading strong {
  color: var(--ink);
}

.timer-spin-upsell-heading span {
  color: var(--green);
}

.timer-spin-upsell-heading #timer-spin-upsell-price {
  color: var(--green);
}

.timer-spin-upsell-rainbow {
  display: inline-block;
  background: linear-gradient(90deg, #ff4a4a, #ffd75c, #8bff58, #36c8ff, #ba55ff, #ff4a4a);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  animation: timer-rainbow-text 2200ms linear infinite;
}

.timer-spin-upsell-body {
  display: grid;
  grid-template-columns: minmax(210px, 270px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.timer-spin-upsell-wheel-wrap {
  display: grid;
  min-height: 280px;
  place-items: center;
}

.timer-spin-upsell-wheel {
  width: min(250px, 58vw);
  height: min(250px, 58vw);
  filter: drop-shadow(0 0 22px rgba(139, 255, 88, 0.22));
}

.timer-spin-wheel-large.is-idle-spinning .timer-spin-wheel-track {
  animation: timer-wheel-idle-spin 18s linear infinite;
}

.timer-spin-upsell-odds {
  overflow: hidden;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.82);
}

.timer-spin-upsell-odds-row {
  display: grid;
  gap: 5px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(139, 255, 88, 0.22);
}

.timer-spin-upsell-odds-row:last-child {
  border-bottom: 0;
}

.timer-spin-upsell-odds-top {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
}

.timer-spin-upsell-odds-top b,
.timer-spin-upsell-odds-top em {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-style: normal;
  line-height: 1.15;
  text-transform: uppercase;
}

.timer-spin-upsell-odds-top b {
  font-size: 1.26rem;
}

.timer-spin-upsell-odds-top em {
  color: var(--ink);
  font-size: 0.92rem;
  text-align: right;
  white-space: nowrap;
}

.timer-spin-upsell-odds-row p {
  margin: 0;
  color: var(--muted);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.35;
}

.timer-spin-upsell-time {
  color: var(--ink);
}

.timer-spin-upsell-callout {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(139, 255, 88, 0.52);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  padding: 10px 16px;
  text-align: center;
}

.timer-spin-upsell-plus {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.timer-spin-upsell-callout strong {
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  line-height: 1.25;
}

.timer-spin-upsell-actions {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
}

.timer-spin-upsell-actions button {
  min-height: 64px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.timer-spin-upsell-secondary {
  border-color: var(--line);
  background: #000000;
}

.timer-spin-upsell-button-price {
  color: #0d5b07;
}

.timer-spin-upsell-primary .timer-spin-upsell-arrow {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.45em;
  line-height: 0;
  transform: translateY(0.07em);
}

.timer-spin-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147483200;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.82);
  padding: 18px;
}

.timer-spin-modal-backdrop[hidden] {
  display: none;
}

.timer-spin-dialog {
  position: relative;
  width: min(460px, 100%);
  display: grid;
  gap: 16px;
  justify-items: center;
  border: 1px solid rgba(139, 255, 88, 0.52);
  border-radius: 8px;
  background: #030303;
  padding: 20px;
  text-align: center;
}

.timer-spin-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #000000;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  line-height: 1;
}

.timer-spin-close[hidden] {
  display: none;
}

.timer-spin-dialog-heading h2,
.timer-spin-dialog-heading p {
  margin: 0;
}

.timer-spin-dialog-heading p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.timer-spin-wheel-large {
  width: min(260px, 72vw);
  height: min(260px, 72vw);
  background: none;
  filter: none;
  overflow: visible;
}

.timer-spin-wheel-track {
  position: absolute;
  inset: 0;
  display: block;
  border: 5px solid #050505;
  border-radius: 50%;
  background: var(
    --timer-spin-wheel-gradient,
    conic-gradient(from 0deg, #8fff36 0deg 288deg, #0095fd 288deg 342deg, #fed217 342deg 356deg, #813bfd 356deg 360deg)
  );
  box-shadow:
    inset 0 0 0 3px #101010,
    0 0 0 2px var(--line),
    0 12px 26px rgba(0, 0, 0, 0.56);
}

.timer-spin-wheel-large.is-spinning .timer-spin-wheel-track {
  animation: timer-wheel-spin 7200ms cubic-bezier(0.12, 0.72, 0.08, 1) forwards;
}

.timer-spin-wheel-center {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  display: block;
  width: 31%;
  height: 31%;
  background: url("/wheel%20center.webp") center / contain no-repeat;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.65));
}

.timer-spin-pointer {
  position: absolute;
  top: -4px;
  left: 50%;
  z-index: 4;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 24px solid var(--ink);
  content: "";
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.8));
  transform: translateX(-50%);
}

.timer-spin-result {
  display: grid;
  gap: 6px;
}

.timer-spin-result span {
  color: var(--muted);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.timer-spin-result strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.timer-spin-title-hit {
  display: inline !important;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1em !important;
  line-height: inherit;
  text-transform: uppercase;
}

.timer-spin-result strong .timer-prize-5 {
  color: #ffd75c;
}

.timer-spin-result strong .timer-prize-2 {
  color: #36c8ff;
}

.timer-spin-result strong .timer-prize-random {
  color: #8fff36;
}

.timer-spin-result strong .timer-spin-title-hit.is-jackpot {
  background: linear-gradient(90deg, #ff4a4a, #ffd75c, #8bff58, #36c8ff, #ba55ff, #ff4a4a);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: timer-rainbow-text 900ms linear infinite, timer-hit-flash 700ms ease-in-out infinite;
}

.timer-spin-result p {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--ink);
  line-height: 1.4;
}

.timer-spin-result-detail span,
.timer-spin-result p span {
  display: block;
}

.timer-spin-hit-amount {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.timer-spin-modal-odds {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  justify-content: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.timer-spin-odds-item b {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
}

.timer-spin-odds-item em {
  color: var(--muted);
  font-size: 0.82em;
  font-style: normal;
}

.timer-spin-odds-separator {
  color: var(--muted);
}

.timer-info-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147483210;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
  padding: 18px;
}

.timer-info-modal-backdrop[hidden] {
  display: none;
}

.timer-info-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(92vh, 820px);
  display: grid;
  gap: 12px;
  overflow: auto;
  border: 1px solid rgba(139, 255, 88, 0.74);
  border-radius: 8px;
  background: radial-gradient(circle at 18% 12%, rgba(139, 255, 88, 0.08), transparent 24%), #030303;
  padding: 20px;
  box-shadow: 0 0 0 1px rgba(139, 255, 88, 0.14), 0 24px 80px rgba(0, 0, 0, 0.68), 0 0 28px rgba(139, 255, 88, 0.1);
}

.timer-info-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 255, 88, 0.62);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.82);
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0 0 1px;
  box-shadow: 0 0 16px rgba(139, 255, 88, 0.12);
}

.timer-info-hero {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding-right: 48px;
}

.timer-info-wheel-mark {
  position: relative;
  display: block;
  width: 66px;
  height: 66px;
  border: 4px solid var(--green);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #030303 0 12%, var(--green) 13% 21%, transparent 22%),
    conic-gradient(from 8deg, var(--green) 0 38deg, transparent 38deg 70deg, var(--green) 70deg 116deg, transparent 116deg 154deg, var(--green) 154deg 205deg, transparent 205deg 248deg, var(--green) 248deg 294deg, transparent 294deg 360deg);
  box-shadow: 0 0 22px rgba(139, 255, 88, 0.24);
}

.timer-info-wheel-mark::after {
  position: absolute;
  inset: 18px;
  border: 3px solid var(--green);
  border-radius: inherit;
  content: "";
}

.timer-info-dialog h2 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.76rem, 2.7vw, 2.05rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.16), 0 0 16px rgba(255, 255, 255, 0.08);
}

.timer-info-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.34;
}

.timer-info-section,
.timer-info-footnote {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(139, 255, 88, 0.38);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  padding: 14px;
}

.timer-info-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timer-info-section-title strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  line-height: 1;
  text-transform: uppercase;
}

.timer-info-section-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 255, 88, 0.54);
  border-radius: 999px;
  color: var(--green);
}

.timer-info-section-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.timer-info-dialog ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timer-info-dialog li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 42px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
}

.timer-info-dialog li + li {
  border-top: 1px dashed rgba(139, 255, 88, 0.28);
}

.timer-info-dialog li span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 255, 88, 0.76);
  border-radius: 999px;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  padding-bottom: 1px;
}

.timer-info-dialog li b {
  color: var(--ink);
  font-weight: 900;
}

.timer-info-prizes {
  display: grid;
  gap: 6px;
}

.timer-info-prizes > span {
  display: grid;
  grid-template-columns: minmax(92px, 0.26fr) minmax(0, 1fr) minmax(88px, auto);
  align-items: center;
  gap: 12px;
  min-height: 46px;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  padding: 8px 12px;
}

.timer-info-prizes b {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.42rem;
  line-height: 1;
  text-transform: uppercase;
}

.timer-info-prizes em {
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  font-style: normal;
  text-align: right;
  text-transform: uppercase;
}

.timer-info-prizes small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
}

.timer-info-prizes .timer-prize-random {
  font-size: 1.06rem;
  line-height: 1.04;
}

.timer-info-time-amount {
  color: var(--green);
  font-weight: 900;
}

.timer-info-footnote {
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  padding: 12px 14px;
}

.timer-info-footnote p {
  font-size: 0.98rem;
}

.timer-info-footnote b {
  color: var(--green);
  font-weight: 900;
}

@keyframes timer-wheel-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(var(--timer-spin-rotation, 2340deg));
  }
}

@keyframes timer-wheel-idle-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes timer-tremble {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(1px, -1px) rotate(-0.4deg);
  }

  50% {
    transform: translate(-1px, 1px) rotate(0.4deg);
  }

  75% {
    transform: translate(1px, 1px) rotate(0deg);
  }
}

@keyframes timer-rainbow-text {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 240% 50%;
  }
}

@keyframes timer-hit-flash {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.7);
  }
}

.tts-panel {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(139, 255, 88, 0.2);
  border-radius: 8px;
  background: #020202;
  padding: 14px;
}

.tts-heading,
.tts-total-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.tts-heading h2 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.tts-heading span {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-align: right;
  text-transform: uppercase;
}

.tts-heading span {
  font-size: 0.8rem;
  white-space: nowrap;
}

.tts-voice-block,
.tts-message-field {
  display: grid;
  gap: 9px;
}

.tts-field-label,
.tts-message-field > span,
.tts-dialog-controls label > span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tts-voice-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  padding: 10px;
}

.tts-selected-voice {
  overflow-wrap: anywhere;
  padding: 0 10px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  line-height: 1.3;
}

.tts-browse-button,
.tts-action-button,
.tts-voice-select,
.tts-dialog-close,
.tts-voice-play {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tts-browse-button,
.tts-action-button {
  min-height: 48px;
  padding: 0 15px;
}

.tts-browse-button,
.tts-action-button,
.tts-voice-select,
.tts-voice-play {
  border-color: var(--green);
  color: var(--green);
}

.tts-action-button.is-playing,
.tts-voice-play.is-playing {
  background: var(--green);
  color: #000000;
}

.tts-browse-button svg,
.tts-action-button svg,
.tts-voice-play svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.tts-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tts-action-button:hover,
.tts-action-button:focus-visible,
.tts-browse-button:hover,
.tts-browse-button:focus-visible,
.tts-voice-select:hover,
.tts-voice-select:focus-visible,
.tts-voice-play:hover,
.tts-voice-play:focus-visible,
.tts-dialog-close:hover,
.tts-dialog-close:focus-visible {
  border-color: var(--green);
  color: var(--green);
  background: rgba(139, 255, 88, 0.1);
  outline: none;
}

.tts-action-button.is-playing:hover,
.tts-action-button.is-playing:focus-visible,
.tts-voice-play.is-playing:hover,
.tts-voice-play.is-playing:focus-visible {
  background: var(--green);
  color: #000000;
}

.tts-action-button:disabled,
.tts-browse-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.tts-message-field {
  position: relative;
}

.tts-message-field textarea {
  min-height: 190px;
  padding: 22px 20px 44px;
  font-size: 1rem;
  line-height: 1.55;
}

.tts-message-field small {
  position: absolute;
  right: 16px;
  bottom: 12px;
  color: var(--muted);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
}

.tts-help {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.tts-tip {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  padding: 13px 16px;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.42;
}

.tts-tip svg {
  width: 28px;
  height: 28px;
  fill: var(--green);
}

.tts-tip strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.tts-total-row {
  align-items: center;
  border: 1px solid rgba(139, 255, 88, 0.42);
  border-radius: 8px;
  background: #010101;
  padding: 14px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.tts-total-row span,
.tts-total-row small,
.tts-total-row strong {
  display: block;
}

.tts-total-row span {
  color: var(--ink);
  font-size: 1rem;
}

.tts-total-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.tts-total-row strong {
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  text-align: right;
}

.tts-total-row div:last-child small {
  text-align: right;
}

.tts-voice-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147483100;
  height: 100dvh;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
  padding: 18px;
}

.tts-voice-modal-backdrop[hidden] {
  display: none;
}

.tts-voice-dialog {
  width: min(760px, 100%);
  max-height: min(760px, calc(100dvh - 36px));
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #030303;
  box-shadow: 0 22px 74px rgba(0, 0, 0, 0.72);
  overflow: hidden;
  padding: 18px;
}

.tts-dialog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.tts-dialog-heading h2,
.tts-dialog-heading p {
  margin: 0;
}

.tts-dialog-heading h2 {
  font-size: 1rem;
}

.tts-dialog-heading p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.tts-dialog-close {
  width: 38px;
  height: 38px;
  padding: 0;
}

.tts-dialog-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 12px;
}

.tts-dialog-controls label {
  display: grid;
  gap: 8px;
}

.tts-dialog-controls select {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
  font-weight: 900;
}

.tts-voice-results {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: 10px;
  grid-auto-rows: max-content;
  overflow: auto;
  padding-right: 4px;
}

.tts-voice-option {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  padding: 10px;
}

.tts-voice-option.is-selected {
  border-color: rgba(139, 255, 88, 0.7);
  box-shadow: 0 0 0 1px rgba(139, 255, 88, 0.12);
}

.tts-voice-play {
  width: 42px;
  height: 42px;
  padding: 0;
}

.tts-voice-option-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.tts-voice-option-copy strong {
  overflow-wrap: anywhere;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.tts-voice-option-copy span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.tts-voice-select {
  min-height: 40px;
  padding: 0 13px;
}

.tts-load-more {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  color: var(--ink);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tts-load-more:hover,
.tts-load-more:focus-visible {
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

.tts-load-more:disabled {
  cursor: wait;
  opacity: 0.65;
}

.media-loop-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.76);
  padding: 18px;
}

.media-loop-dialog-backdrop[hidden] {
  display: none;
}

.media-loop-dialog {
  width: min(100%, 430px);
  display: grid;
  gap: 14px;
  border: 1px solid rgba(139, 255, 88, 0.38);
  border-radius: 8px;
  background: #030303;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.62);
  padding: 20px;
}

.media-loop-dialog h2 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.media-loop-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.media-loop-minimum-breakdown {
  display: grid;
  gap: 8px;
}

.media-loop-minimum-row {
  display: grid;
  grid-template-columns: minmax(86px, auto) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(139, 255, 88, 0.16);
  border-radius: 8px;
  background: #000000;
  padding: 9px 10px;
}

.media-loop-minimum-row span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-loop-minimum-row strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.25;
}

.payment-confirm-dialog {
  width: min(100%, 460px);
}

.payment-confirm-summary {
  display: grid;
  gap: 8px;
}

.payment-confirm-summary div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(139, 255, 88, 0.16);
  border-radius: 8px;
  background: #000000;
  padding: 10px 12px;
}

.payment-confirm-summary span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-confirm-summary strong {
  min-width: 0;
  justify-self: end;
  overflow-wrap: anywhere;
  color: var(--green);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.1;
  text-align: right;
}

.payment-confirm-actions {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.media-loop-dialog-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.media-loop-dialog-check input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--green);
}

.media-loop-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.media-loop-minimum-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-loop-dialog-actions button {
  min-height: 46px;
  padding: 0 12px;
}

.media-loop-dialog-secondary {
  border-color: var(--line);
  background: #000000;
  color: var(--ink);
}

.media-loop-dialog-actions.menu-partial-funding-actions {
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.media-loop-dialog-actions.menu-partial-funding-actions #menu-partial-funding-add {
  width: 100%;
}

.media-loop-dialog-actions.menu-partial-funding-actions #menu-partial-funding-cancel {
  justify-self: center;
  width: auto;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0 10px;
  box-shadow: none;
}

.media-loop-dialog-actions.menu-partial-funding-actions #menu-partial-funding-cancel:hover {
  color: var(--ink);
  transform: none;
}

.menu-partial-funding-notice-dialog {
  width: min(100%, 430px);
  border-color: rgba(128, 66, 255, 0.72);
  background: linear-gradient(135deg, rgba(128, 66, 255, 0.13), rgba(139, 255, 88, 0.05)), #030303;
}

.menu-partial-funding-notice-dialog p {
  color: #d8d8d8;
}

.menu-partial-funding-notice-actions {
  grid-template-columns: minmax(0, 1fr);
}

.payment-method-grid {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.method-card {
  min-height: 54px;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  text-align: left;
}

.method-card[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
}

.method-svg,
.paypal-wordmark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 900;
}

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

.paypal-wordmark {
  color: #009cde;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.4px;
  text-transform: none;
}

.apple-wordmark {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.payment-logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.paypal-logo {
  width: 20px;
  height: 20px;
}

.google-pay-logo {
  width: 24px;
  height: 24px;
}

.apple-pay-logo {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.method-card.is-active .method-svg,
.method-card.is-active .paypal-wordmark,
.method-card.is-active .apple-wordmark {
  color: #000000;
}

.method-card.is-active .apple-pay-logo {
  filter: none;
}

.payment-panel {
  display: none;
}

.payment-panel.is-open {
  display: grid;
  animation: panel-open 180ms ease both;
}

@keyframes panel-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payment-helper {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}

.payment-helper strong {
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.paypal-slot {
  min-height: 44px;
}

paypal-button {
  --paypal-button-border-radius: 8px;
  display: block;
  width: 100%;
  min-height: 44px;
}

.card-form {
  display: grid;
  gap: 8px;
}

.card-row {
  grid-template-columns: 1fr 1fr;
}

.card-field {
  position: relative;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000000;
  padding: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(139, 255, 88, 0.05);
}

.card-field::after {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background:
    linear-gradient(#000000, #000000) top / 100% 13px no-repeat,
    linear-gradient(#000000, #000000) bottom / 100% 13px no-repeat,
    linear-gradient(#000000, #000000) left / 13px 100% no-repeat,
    linear-gradient(#000000, #000000) right / 13px 100% no-repeat;
  box-shadow: inset 0 0 0 1px var(--line);
  content: "";
  pointer-events: none;
}

.card-field:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.16);
}

.card-field:focus-within::after {
  box-shadow: inset 0 0 0 1px var(--green);
}

.card-field iframe {
  display: block;
  width: 100%;
  min-height: 56px;
  border: 0 !important;
  background: #000000 !important;
}

.primary-button {
  min-height: 52px;
  border-color: var(--green);
  background: var(--green);
  color: #000000;
  box-shadow: 0 4px 0 var(--green-deep);
}

.primary-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--green-deep);
}

.wallet-stack {
  display: grid;
  gap: 10px;
}

#googlepay-container,
#applepay-container {
  width: 100%;
}

#googlepay-container > *,
#applepay-container > * {
  width: 100%;
}

#googlepay-container:empty,
#applepay-container:empty {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.wallet-message {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

#card-button-fallback[hidden] {
  display: none;
}

#applepay-container[hidden] {
  display: none;
}

apple-pay-button {
  --apple-pay-button-width: 100%;
  --apple-pay-button-height: 44px;
  --apple-pay-button-border-radius: 8px;
  --apple-pay-button-padding: 0;
  --apple-pay-button-box-sizing: border-box;
  display: block;
  width: 100%;
  height: 44px;
}

@media (max-width: 980px) {
  .road-trip-layout,
  .road-trip-route-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .road-trip-map-shell,
  .road-trip-map {
    min-height: 320px;
  }

  .road-trip-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .road-trip-cart-add-button {
    grid-column: 1 / -1;
  }

  .menu-funding-feature-main {
    grid-template-columns: 100px minmax(0, 1fr) minmax(132px, 0.24fr);
    gap: 10px;
  }

  .menu-funding-feature-image {
    min-height: 108px;
  }

  .menu-funding-feature-contributors {
    padding-left: 9px;
  }

  .menu-funding-feature-contributor {
    min-height: 36px;
  }

  .menu-cart-funding-main {
    grid-template-columns: 100px minmax(0, 1fr) minmax(132px, 0.24fr);
    gap: 10px;
  }

  .menu-cart-funding-thumb {
    min-height: 108px;
  }

  .menu-cart-contributors {
    grid-column: auto;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 0;
    padding-left: 9px;
  }

  .menu-cart-contributor-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-cart-funding-checkout {
    grid-template-columns: minmax(0, 1fr) minmax(224px, 0.34fr);
    gap: 10px;
  }

}

@media (max-width: 760px) {
  .site-header {
    min-height: 128px;
    flex-direction: column;
    gap: 12px;
    padding: 18px 0 14px;
  }

  .live-stack {
    position: static;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .live-users-pill {
    position: static;
    min-height: 32px;
    gap: 8px;
    padding: 0 11px;
    font-size: 0.66rem;
  }

  .live-users-pill svg {
    width: 16px;
    height: 16px;
  }

  .viewer-auth {
    position: static;
    max-width: 100%;
    min-height: 32px;
  }

  .viewer-auth-button,
  .viewer-auth-profile {
    min-height: 32px;
    font-size: 0.62rem;
  }

  .viewer-auth-name {
    max-width: 168px;
  }

  .viewer-auth-name strong {
    font-size: 0.62rem;
  }

  .viewer-auth-logout {
    min-height: 24px;
    font-size: 0.52rem;
  }

  .live-pill {
    min-height: 32px;
    gap: 5px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .page-shell {
    width: 100%;
    padding: 4px 9px 58px;
  }

  .social-link-bar {
    min-height: 58px;
    margin-top: 8px;
  }

  .social-link {
    min-height: 58px;
    gap: 5px;
    padding: 0 5px;
    font-size: 0.58rem;
  }

  .social-link img {
    width: 18px;
    height: 18px;
  }

  .social-link-divider {
    height: 26px;
  }

  .terms-link-row {
    padding-top: 8px;
  }

  .terms-footer-link {
    gap: 4px;
    font-size: 0.5rem;
  }

  .terms-footer-link svg {
    width: 15px;
    height: 15px;
  }

  .site-notifications {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
  }

  .site-toast {
    min-height: 82px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 12px 11px 10px;
  }

  .site-toast-visual {
    width: 42px;
    height: 42px;
  }

  .site-toast-top strong {
    font-size: 0.84rem;
  }

  .site-toast-subtitle,
  .site-toast-message {
    font-size: 0.76rem;
  }

  .tab-button,
  .method-card,
  .primary-button,
  .preset-button,
  .print-redeem-button {
    font-size: 0.78rem;
  }

  .tab-button {
    gap: 4px;
    padding: 0 2px;
    font-size: 0.66rem;
  }

  .tab-icon {
    width: 14px;
    height: 14px;
  }

  .donation-tabs {
    gap: 4px;
  }

  .road-trip-heading,
  .road-trip-preview,
  .road-trip-total-row,
  .road-trip-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .road-trip-rate-shell,
  .road-trip-add-button {
    width: 100%;
  }

  .road-trip-rate-shell {
    justify-self: start;
    justify-content: flex-start;
  }

  .road-trip-rate-shell > strong {
    min-width: 0;
    text-align: left;
  }

  .road-trip-pricing-info-backdrop {
    padding: 9px;
  }

  .road-trip-pricing-info-dialog {
    max-height: 96vh;
    gap: 11px;
    padding: 16px;
  }

  .road-trip-pricing-info-head {
    padding-right: 48px;
  }

  .road-trip-pricing-info-close {
    width: 40px;
    height: 40px;
  }

  .road-trip-pricing-chart {
    padding: 6px;
  }

  .road-trip-pricing-chart svg {
    min-height: 228px;
  }

  .road-trip-pricing-tags {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    padding: 0;
  }

  .road-trip-pricing-tags span {
    min-height: 38px;
  }

  .road-trip-pricing-detail-grid article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    padding: 11px;
  }

  .road-trip-pricing-detail-icon {
    width: 42px;
    height: 42px;
  }

  .timer-info-modal-backdrop {
    padding: 9px;
  }

  .timer-info-dialog {
    max-height: 96vh;
    gap: 10px;
    padding: 15px;
  }

  .timer-info-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .timer-info-hero {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    padding-right: 42px;
  }

  .timer-info-wheel-mark {
    width: 52px;
    height: 52px;
    border-width: 3px;
  }

  .timer-info-wheel-mark::after {
    inset: 13px;
  }

  .timer-info-dialog h2 {
    font-size: 1.62rem;
  }

  .timer-info-dialog p {
    font-size: 0.84rem;
  }

  .timer-info-section,
  .timer-info-footnote {
    padding: 11px;
  }

  .timer-info-prizes > span {
    grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
    gap: 4px 9px;
  }

  .timer-info-prizes .timer-prize-random {
    font-size: 1rem;
  }

  .timer-info-prizes em {
    grid-column: 1;
    text-align: left;
  }

  .timer-info-prizes small {
    grid-row: 1 / span 2;
    grid-column: 2;
  }

  .road-trip-search-shell input {
    font-size: 0.9rem;
    padding: 0 14px;
  }

  .road-trip-preview {
    align-items: stretch;
  }

  .road-trip-preview-thumb {
    width: 100%;
    height: auto;
    min-height: 156px;
  }

  .road-trip-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .road-trip-cart-main {
    grid-template-columns: minmax(0, 1fr) 38px;
    align-items: start;
  }

  .road-trip-cart-thumbs,
  .road-trip-cart-copy,
  .road-trip-cart-fields {
    grid-column: 1 / -1;
  }

  .road-trip-cart-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .road-trip-cart-facts {
    grid-column: 1 / 2;
    justify-items: start;
  }

  .road-trip-cart-remove {
    grid-column: 2 / 3;
    grid-row: 3;
    align-self: center;
    justify-self: end;
  }

  .road-trip-cart-thumbs {
    width: 100%;
  }

  .road-trip-active-toggle {
    min-height: 50px;
    grid-template-columns: minmax(0, 1fr) 28px;
    padding: 8px;
  }

  .road-trip-active-card {
    padding: 8px;
  }

  .road-trip-active-card-head {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 9px;
  }

  .road-trip-active-title-icon {
    width: 52px;
    min-height: 52px;
  }

  .road-trip-active-title-icon svg {
    width: 34px;
    height: 34px;
  }

  .road-trip-active-card-head strong {
    font-size: 1.22rem;
  }

  .road-trip-active-card-head .road-trip-active-requested,
  .road-trip-active-card-head .road-trip-active-details,
  .road-trip-active-card-head .road-trip-active-date {
    font-size: 0.76rem;
  }

  .road-trip-active-card-head .road-trip-active-date,
  .road-trip-active-map-button {
    grid-column: 1 / -1;
  }

  .road-trip-active-map-button {
    width: 100%;
  }

  .road-trip-active-stepper-track {
    left: 48px;
    right: 92px;
  }

  .road-trip-active-step {
    width: 28px;
    height: 28px;
    margin: 0;
    border-width: 2px;
    font-size: 0.7rem;
  }

  .road-trip-active-stepper b {
    font-size: 0.64rem;
  }

  .road-trip-active-route-band {
    padding: 10px;
    font-size: 0.82rem;
  }

  .road-trip-active-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .road-trip-active-stat {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    min-height: 66px;
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 9px;
  }

  .road-trip-active-stat:nth-child(-n + 2) {
    border-top: 0;
  }

  .road-trip-active-stat:nth-child(2n) {
    border-right: 0;
  }

  .road-trip-active-stops li {
    grid-template-columns: 32px minmax(0, 1fr) 36px;
    gap: 7px;
    padding: 7px;
  }

  .road-trip-active-stops li.has-photo {
    grid-template-columns: 32px 74px minmax(0, 1fr) 36px;
  }

  .road-trip-active-stop-thumb {
    width: 74px;
    height: 52px;
  }

  .road-trip-active-stop-index,
  .road-trip-active-stops button {
    width: 32px;
    height: 32px;
  }

  .road-trip-active-stops button {
    width: 36px;
    height: 36px;
  }

  .road-trip-active-stops li:not(:last-child) .road-trip-active-stop-index::after {
    height: 42px;
  }

  .road-trip-active-leg-facts {
    gap: 4px 6px;
    font-size: 0.64rem;
  }

  .road-trip-active-leg-facts b,
  .road-trip-active-leg-facts em {
    min-height: 22px;
    padding: 3px 6px;
  }

  .road-trip-history-modal {
    align-items: stretch;
    padding: max(7px, env(safe-area-inset-top)) max(7px, env(safe-area-inset-right)) max(7px, env(safe-area-inset-bottom)) max(7px, env(safe-area-inset-left));
  }

  .road-trip-history-dialog {
    height: calc(100dvh - 14px);
    max-height: calc(100dvh - 14px);
    padding: 8px;
  }

  .road-trip-history-head {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .road-trip-history-close {
    width: 36px;
    height: 36px;
  }

  .road-trip-photo-dialog {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    width: 100%;
    min-height: 92vh;
    max-height: 92vh;
  }

  .road-trip-photo-memory-badge {
    top: 14px;
    left: 14px;
    min-width: 132px;
    grid-template-columns: 30px auto;
    padding: 10px 12px;
  }

  .road-trip-photo-memory-badge svg {
    width: 27px;
    height: 27px;
  }

  .road-trip-photo-memory-badge span {
    font-size: 1rem;
  }

  .road-trip-photo-close {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .road-trip-photo-frame img {
    max-height: 62vh;
  }

  .road-trip-photo-frame.is-portrait {
    transform: translateY(-8vh);
  }

  .road-trip-photo-copy {
    grid-template-columns: minmax(0, 1fr) auto;
    left: 24px;
    bottom: 66px;
    width: calc(100% - 48px);
    min-width: 0;
    max-width: none;
    gap: 6px 10px;
    padding: 12px 13px;
  }

  .road-trip-photo-copy span {
    font-size: 0.62rem;
  }

  .road-trip-photo-copy h3 {
    grid-column: 1 / -1;
    font-size: clamp(1.25rem, 5.8vw, 1.72rem);
    line-height: 1.08;
  }

  .road-trip-photo-copy p {
    grid-column: 1 / -1;
    font-size: 0.86rem;
    line-height: 1.22;
  }

  .road-trip-photo-copy small {
    grid-column: 1 / -1;
    font-size: 0.7rem;
    line-height: 1.22;
  }

  .road-trip-photo-copy .road-trip-photo-place {
    grid-column: 1 / 2;
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .road-trip-photo-locate {
    display: none;
  }

  .road-trip-photo-mobile-locate {
    display: inline-flex;
    grid-column: 2 / 3;
    align-items: center;
    justify-content: center;
    gap: 6px;
    align-self: center;
    justify-self: end;
    width: auto;
    min-width: 0;
    border-radius: 8px;
    border-color: rgba(139, 255, 88, 0.72);
    background: rgba(0, 0, 0, 0.8);
    color: var(--green);
    font-size: 0.68rem;
    padding: 8px 10px;
    white-space: nowrap;
  }

  .road-trip-photo-dots {
    bottom: 23px;
    gap: 10px;
  }

  .road-trip-photo-nav {
    width: 34px;
    height: 46px;
  }

  .road-trip-photo-nav svg {
    width: 18px;
    height: 18px;
  }

  .preset-row,
  .print-redeem-row {
    gap: 6px;
  }

  .tab-button,
  .method-card {
    justify-content: center;
    text-align: center;
  }

  .donation-form,
  .payment-section {
    padding: 15px;
  }

  .field-grid,
  .media-price-row,
  .media-loop-dialog-actions,
  .timer-hero-heading,
  .timer-time-control,
  .tts-heading,
  .tts-voice-card,
  .tts-dialog-controls,
  .card-row {
    grid-template-columns: 1fr;
  }

  .timer-hero-heading {
    display: grid;
    gap: 5px;
  }

  .timer-hero-heading span {
    white-space: normal;
  }

  .timer-hero {
    gap: 11px;
    padding: 12px;
  }

  .timer-clock {
    gap: 4px;
  }

  .timer-clock > div {
    min-width: clamp(56px, 22vw, 92px);
  }

  .timer-clock strong,
  .timer-clock b {
    font-size: clamp(2.15rem, 16vw, 3.6rem);
  }

  .timer-clock span {
    font-size: 0.62rem;
  }

  .timer-live-note,
  .timer-inactive-banner {
    min-height: 34px;
    gap: 7px;
    padding: 7px 8px;
  }

  .timer-live-note span {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    box-shadow: 0 0 0 3px rgba(139, 255, 88, 0.14);
  }

  .timer-live-note p,
  .timer-inactive-banner {
    font-size: 0.68rem;
    line-height: 1.22;
  }

  .timer-time-control {
    overflow: visible;
  }

  .timer-control-icon {
    display: none;
  }

  .timer-time-control > strong {
    padding: 13px 10px 4px;
    font-size: 1.24rem;
  }

  .timer-stepper {
    grid-template-columns: 1fr 1fr;
  }

  .timer-increment-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .timer-increment-row button {
    min-height: 40px;
    padding: 0 2px;
    font-size: 0.64rem;
  }

  .timer-increment-row .timer-clear-button {
    grid-column: 1 / -1;
    min-height: 42px;
    font-size: 0.74rem;
  }

  .timer-cost-row {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .timer-cost-icon {
    min-height: 62px;
  }

  .timer-cost-row > div:not(.timer-cost-icon) {
    padding: 10px;
  }

  .timer-spin-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    justify-items: stretch;
    padding: 12px 40px 12px 12px;
  }

  .timer-spin-check {
    justify-self: start;
  }

  .timer-spin-copy {
    gap: 3px;
  }

  .timer-spin-copy strong {
    font-size: 0.78rem;
  }

  .timer-spin-subtitle {
    font-size: 0.66rem;
  }

  .timer-spin-prizes {
    font-size: 0.76rem;
  }

  .timer-info-button {
    top: 8px;
    right: 8px;
    width: 23px;
    height: 23px;
    font-size: 0.68rem;
  }

  .timer-spin-price {
    min-width: 76px;
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.72rem;
    justify-self: end;
  }

  .timer-spin-upsell-backdrop {
    padding: 6px;
  }

  .timer-spin-upsell-dialog {
    max-height: calc(100dvh - 12px);
    gap: 7px;
    padding: 10px;
  }

  .timer-spin-upsell-close {
    width: 30px;
    height: 30px;
    top: 7px;
    right: 7px;
    font-size: 0.72rem;
  }

  .timer-spin-upsell-heading {
    gap: 5px;
    padding: 0 34px;
    text-align: center;
    justify-items: center;
  }

  .timer-spin-upsell-heading h2 {
    font-size: clamp(1.18rem, 7vw, 1.58rem);
    line-height: 0.98;
  }

  .timer-spin-upsell-heading p {
    font-size: 0.66rem;
    line-height: 1.22;
  }

  .timer-spin-upsell-body {
    grid-template-columns: minmax(86px, 116px) minmax(0, 1fr);
    gap: 8px;
    align-items: center;
  }

  .timer-spin-upsell-wheel-wrap {
    min-height: 116px;
  }

  .timer-spin-upsell-wheel {
    width: min(116px, 31vw);
    height: min(116px, 31vw);
  }

  .timer-spin-upsell-wheel .timer-spin-pointer {
    top: -2px;
    border-right-width: 8px;
    border-left-width: 8px;
    border-top-width: 13px;
  }

  .timer-spin-upsell-odds-row {
    gap: 2px;
    padding: 5px 7px;
  }

  .timer-spin-upsell-odds-top b {
    font-size: 0.76rem;
  }

  .timer-spin-upsell-odds-top em {
    font-size: 0.58rem;
  }

  .timer-spin-upsell-odds-row p {
    font-size: 0.6rem;
    line-height: 1.18;
  }

  .timer-spin-upsell-callout {
    min-height: 36px;
    gap: 6px;
    padding: 5px 8px;
  }

  .timer-spin-upsell-plus {
    font-size: 1rem;
  }

  .timer-spin-upsell-callout strong {
    font-size: 0.62rem;
    line-height: 1.18;
  }

  .timer-spin-upsell-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .timer-spin-upsell-actions button {
    min-height: 40px;
    padding: 0 4px;
    font-size: 0.66rem;
  }

  .timer-total-row div:last-child strong {
    font-size: 1.2rem;
  }

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

  .media-loop-control {
    grid-column: 1 / -1;
  }

  .media-preview-card {
    grid-template-columns: 1fr;
  }

  .media-share-heading {
    display: grid;
    gap: 5px;
  }

  .media-share-heading span,
  .tts-heading span {
    text-align: left;
    white-space: normal;
  }

  .tts-panel {
    gap: 10px;
    padding: 11px;
  }

  .tts-action-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .tts-action-button {
    min-height: 40px;
    gap: 5px;
    padding: 0 6px;
    font-size: 0.64rem;
  }

  .tts-action-button svg {
    width: 17px;
    height: 17px;
  }

  .tts-message-field textarea {
    min-height: 138px;
    padding: 13px 12px 34px;
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .tts-message-field small {
    right: 12px;
    bottom: 10px;
    font-size: 0.66rem;
  }

  .tts-help {
    font-size: 0.72rem;
  }

  .tts-tip {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    padding: 9px 10px;
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .tts-tip svg {
    width: 22px;
    height: 22px;
  }

  .tts-total-row,
  .print-price-summary,
  .media-total-row,
  .timer-total-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 11px;
  }

  .tts-total-row span,
  .print-price-summary span,
  .media-total-row span,
  .timer-total-row span {
    font-size: 0.78rem;
  }

  .tts-total-row small,
  .print-price-summary small,
  .media-total-row small,
  .timer-total-row small {
    margin-top: 3px;
    font-size: 0.64rem;
    line-height: 1.22;
  }

  .tts-total-row strong,
  .print-price-summary strong,
  .media-total-row strong,
  .timer-total-row strong {
    font-size: 1.18rem;
    text-align: right;
  }

  .tts-total-row div:last-child small,
  .print-price-summary div:last-child small,
  .media-total-row div:last-child small,
  .timer-total-row div:last-child small {
    text-align: right;
  }

  .tts-selected-voice {
    padding: 0;
  }

  .tts-voice-option {
    grid-template-columns: 32px minmax(0, 1fr) 62px;
    gap: 7px;
    padding: 7px;
  }

  .tts-voice-dialog {
    width: min(100%, 430px);
    height: min(620px, calc(100dvh - 42px - env(safe-area-inset-bottom, 0px)));
    max-height: calc(100dvh - 42px - env(safe-area-inset-bottom, 0px));
    gap: 9px;
    padding: 11px;
  }

  .tts-dialog-heading {
    gap: 8px;
  }

  .tts-dialog-heading h2 {
    font-size: 0.88rem;
  }

  .tts-dialog-heading p {
    font-size: 0.68rem;
  }

  .tts-dialog-close {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  .tts-dialog-controls {
    grid-template-columns: minmax(0, 1fr) minmax(86px, 0.46fr);
    gap: 6px;
  }

  .tts-dialog-controls label {
    gap: 0;
  }

  .tts-dialog-controls label > span {
    display: none;
  }

  .tts-dialog-controls input,
  .tts-dialog-controls select {
    min-height: 38px;
    padding: 0 7px;
    font-size: 0.68rem;
  }

  .tts-voice-results {
    gap: 6px;
    padding-right: 2px;
  }

  .tts-voice-play {
    width: 32px;
    height: 32px;
  }

  .tts-voice-play svg {
    width: 17px;
    height: 17px;
  }

  .tts-voice-option-copy {
    gap: 2px;
  }

  .tts-voice-option-copy strong {
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .tts-voice-option-copy span {
    font-size: 0.58rem;
    line-height: 1.2;
  }

  .tts-voice-select {
    min-height: 32px;
    padding: 0 6px;
    font-size: 0.62rem;
  }

  .tts-load-more {
    min-height: 38px;
    font-size: 0.68rem;
  }

  .print-compose-heading,
  .print-section-heading {
    grid-template-columns: 1fr;
  }

  .print-compose-heading strong {
    text-align: left;
  }

  .menu-heading {
    grid-template-columns: 1fr;
  }

  .menu-card-actions {
    gap: 6px;
  }

  .menu-cart-funding-card {
    gap: 8px;
    padding: 9px;
  }

  .menu-cart-funding-main {
    grid-template-columns: 72px minmax(0, 1fr) minmax(96px, 0.28fr);
    gap: 7px;
  }

  .menu-cart-funding-thumb {
    min-height: 82px;
  }

  .menu-cart-funding-copy {
    gap: 4px;
  }

  .menu-cart-funding-copy > strong {
    font-size: 0.98rem;
  }

  .menu-cart-funding-copy > small {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .menu-cart-funding-goal {
    grid-template-columns: minmax(58px, auto) minmax(0, 1fr) auto;
    gap: 5px;
    align-items: end;
    margin-top: 2px;
  }

  .menu-cart-funding-goal > div:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    padding-right: 5px;
  }

  .menu-cart-funding-goal span,
  .menu-cart-contributors > span,
  .menu-cart-funding-after-title,
  .menu-cart-funding-contribution-title {
    font-size: 0.52rem;
  }

  .menu-cart-funding-goal > div:first-child strong {
    font-size: 1rem;
  }

  .menu-cart-funding-goal b {
    font-size: 0.66rem;
  }

  .menu-cart-funding-goal b {
    justify-self: auto;
  }

  .menu-cart-current-track {
    height: 10px;
  }

  .menu-cart-contributors {
    grid-column: auto;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 0;
    padding-left: 6px;
  }

  .menu-cart-contributors > span {
    font-size: 0.38rem;
  }

  .menu-cart-contributor {
    min-height: 30px;
    padding: 4px 6px;
  }

  .menu-cart-contributor strong,
  .menu-cart-contributor b {
    font-size: 0.62rem;
  }

  .menu-cart-contributor-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  .menu-cart-funding-checkout {
    grid-template-columns: minmax(0, 1fr) minmax(203px, 0.42fr);
    gap: 3px 8px;
    padding-top: 8px;
  }

  .menu-cart-funding-after {
    grid-template-rows: 10px 8px;
    gap: 3px;
    height: 34px;
    padding: 5px 8px;
  }

  .menu-cart-progress-labels {
    min-height: 10px;
  }

  .menu-cart-progress-labels span,
  .menu-cart-progress-labels strong {
    font-size: 0.52rem;
  }

  .menu-cart-progress-labels [data-funding-after-value] {
    left: 50%;
  }

  .menu-cart-funding-after .menu-partial-track {
    height: 8px;
  }

  .menu-cart-funding-control-row {
    grid-template-columns: 34px minmax(86px, 1fr) 34px 34px;
    gap: 5px;
  }

  .menu-cart-funding-control-row button,
  .menu-cart-funding-money,
  .print-remove-button.menu-cart-funding-remove {
    width: 34px;
    min-height: 34px;
    height: 34px;
    border-radius: 7px;
  }

  .menu-cart-funding-money {
    width: 100%;
    padding: 0 6px;
  }

  .menu-cart-funding-money span,
  .menu-cart-funding-money input {
    font-size: 0.78rem;
  }

  .menu-cart-funding-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .menu-funding-amount-control,
  .menu-cart-funding-item .print-remove-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .menu-cart-funding-details {
    grid-column: 1 / -1;
  }

  .menu-partial-funding-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .menu-partial-current-card {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
  }

  .menu-partial-funding-thumb {
    width: 82px;
    height: 82px;
  }

  .menu-partial-preset-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-controls {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.42fr);
    gap: 7px;
  }

  .menu-controls span {
    display: none;
  }

  .menu-controls input,
  .menu-controls select {
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .menu-tag-filters {
    gap: 6px;
    padding-bottom: 4px;
  }

  .menu-tag-filter {
    min-height: 34px;
    border-radius: 7px;
    font-size: 0.58rem;
    padding: 0 9px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .menu-funding-feature-card {
    gap: 8px;
    padding: 9px;
  }

  .menu-funding-feature-main {
    grid-template-columns: 72px minmax(0, 1fr) minmax(96px, 0.28fr);
    gap: 7px;
  }

  .menu-funding-feature-image {
    min-height: 82px;
  }

  .menu-funding-feature-copy > strong {
    font-size: 0.98rem;
  }

  .menu-funding-feature-copy > small {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .menu-funding-feature-goal {
    grid-template-columns: minmax(58px, auto) minmax(0, 1fr) auto;
    gap: 5px;
    margin-top: 2px;
  }

  .menu-funding-feature-goal > div:first-child strong {
    font-size: 1rem;
  }

  .menu-funding-feature-goal b {
    font-size: 0.66rem;
  }

  .menu-funding-feature-track {
    height: 10px;
  }

  .menu-funding-feature-contributors {
    grid-column: auto;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 0;
    padding-left: 6px;
  }

  .menu-funding-feature-contributor {
    min-height: 30px;
  }

  .menu-funding-feature-button {
    min-height: 34px;
    font-size: 0.62rem;
  }

  .menu-item-card {
    grid-template-rows: 52px minmax(38px, auto) auto;
    gap: 4px;
    padding: 6px;
  }

  .menu-item-image {
    height: 52px;
  }

  .menu-item-copy h3 {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  .menu-item-copy p {
    -webkit-line-clamp: 2;
    font-size: 0.7rem;
    line-height: 1.16;
  }

  .menu-primary-tag {
    font-size: 0.46rem;
    padding: 4px 6px;
  }

  .menu-item-bottom {
    min-height: 42px;
  }

  .menu-item-bottom strong {
    flex-direction: column;
    gap: 0;
    font-size: 1.32rem;
    line-height: 0.92;
  }

  .menu-item-bottom strong .menu-original-price {
    font-size: 0.72rem;
    line-height: 1;
  }

  .menu-item-bottom > span {
    font-size: 0.48rem;
  }

  .menu-add-button {
    grid-template-columns: 13px minmax(0, auto);
    gap: 4px;
    min-height: 31px;
    font-size: 0.58rem;
  }

  .menu-add-button svg {
    width: 13px;
    height: 13px;
  }

  .menu-cart-item {
    grid-template-columns: 46px minmax(0, 1fr) auto auto 32px;
    gap: 6px;
  }

  .menu-timer-bonus-dialog {
    padding: 14px;
  }

  .menu-timer-bonus-item {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .menu-timer-bonus-icon {
    width: 40px;
    height: 40px;
    font-size: 1.28rem;
  }

  .menu-timer-bonus-price {
    grid-column: 1 / -1;
  }

  .menu-timer-bonus-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .menu-timer-bonus-row strong {
    text-align: left;
  }

  .menu-cart-thumb {
    width: 46px;
    height: 46px;
  }

  .menu-cart-copy strong {
    font-size: 0.76rem;
  }

  .menu-cart-copy small {
    font-size: 0.68rem;
  }

  .menu-cart-price {
    min-width: 0;
    font-size: 0.88rem;
  }

  .menu-cart-details {
    grid-column: 1 / -1;
  }

  .menu-timer-spin-option {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    padding: 9px 36px 9px 9px;
  }

  .menu-timer-spin-copy strong {
    font-size: 0.72rem;
  }

  .menu-timer-spin-subtitle {
    font-size: 0.62rem;
  }

  .menu-timer-spin-prizes {
    font-size: 0.68rem;
  }

  .menu-timer-spin-price {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
    min-height: 34px;
    font-size: 0.68rem;
  }

  .drop-desktop-copy {
    display: none;
  }

  .print-drop-zone {
    min-height: 118px;
  }

  .print-redeem-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .print-redeem-button {
    grid-template-columns: auto auto minmax(0, 1fr);
    gap: 5px;
    min-height: 48px;
    padding: 7px;
  }

  .redeem-thumb {
    width: 28px;
    height: 28px;
  }

  .redeem-price {
    font-size: 0.9rem;
  }

  .redeem-label {
    font-size: 0.62rem;
  }

  .print-queue-item {
    grid-template-columns: 46px minmax(0, 1fr) auto auto 32px;
    align-items: center;
    gap: 6px;
    padding: 6px;
  }

  .print-queue-thumb {
    width: 46px;
    height: 46px;
  }

  .print-queue-price {
    min-width: 0;
    font-size: 0.88rem;
    text-align: right;
  }

  .print-quantity-control {
    width: 86px;
    grid-template-columns: 27px minmax(0, 1fr) 27px;
  }

  .print-quantity-control button,
  .print-quantity-control span {
    min-height: 32px;
  }

  .print-queue-copy span {
    font-size: 0.58rem;
  }

  .print-queue-copy strong {
    font-size: 0.76rem;
  }

  .print-queue-copy small {
    font-size: 0.68rem;
  }

  .print-remove-button {
    width: 32px;
    height: 32px;
  }

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

@media (max-width: 560px) {
  .page-shell {
    width: min(100%, 390px);
  }

  .road-trip-map-shell,
  .road-trip-map {
    min-height: 280px;
  }

  .road-trip-result-copy strong,
  .road-trip-preview-copy strong,
  .road-trip-cart-copy strong {
    white-space: normal;
  }

  .road-trip-cart-route strong {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .road-trip-live-controls {
    top: 10px;
    left: 52px;
    gap: 4px;
    max-width: calc(100% - 126px);
  }

  .road-trip-live-status {
    min-width: 88px;
    max-width: 132px;
    padding: 5px 6px;
  }

  .road-trip-live-status strong {
    font-size: 0.52rem;
  }

  .road-trip-live-status span {
    font-size: 0.5rem;
  }

  .road-trip-map-control-button {
    width: 27px;
    min-width: 27px;
    height: 27px;
  }

  .road-trip-map-control-button svg {
    width: 14px;
    height: 14px;
  }

  .road-trip-memory-count {
    top: 10px;
    right: 10px;
    gap: 5px;
    width: 84px;
    padding: 5px 6px;
    font-size: 0.52rem;
    box-shadow: 0 0 10px rgba(139, 255, 88, 0.08);
  }

  .road-trip-memory-count svg {
    width: 14px;
    height: 14px;
  }

  .road-trip-route-focus {
    top: 43px;
    right: 10px;
    width: 84px;
    min-height: 26px;
    gap: 4px;
    padding: 0 6px;
    font-size: 0.5rem;
  }

  .road-trip-route-focus svg {
    width: 13px;
    height: 13px;
  }

  .road-trip-pixel-map-link {
    right: 10px;
    bottom: 32px;
    width: 96px;
    min-height: 27px;
    gap: 4px;
    padding: 0 6px;
    font-size: 0.5rem;
    box-shadow: 0 0 10px rgba(139, 255, 88, 0.08);
  }

  .road-trip-pixel-map-link svg {
    width: 14px;
    height: 14px;
  }

  .road-trip-map-hint {
    right: 12px;
    bottom: 10px;
    max-width: 180px;
    font-size: 0.52rem;
    padding: 4px 6px;
  }

  .road-trip-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .road-trip-cart-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .road-trip-cart-thumb {
    width: 46px;
    height: 46px;
  }

  .menu-funding-feature-main {
    grid-template-columns: 58px minmax(0, 1fr) minmax(82px, 0.28fr);
    gap: 6px;
  }

  .menu-funding-feature-image {
    min-height: 76px;
  }

  .menu-funding-feature-copy > strong {
    font-size: 0.86rem;
  }

  .menu-funding-feature-copy > small {
    font-size: 0.62rem;
  }

  .menu-funding-feature-goal {
    grid-template-columns: minmax(48px, auto) minmax(0, 1fr) auto;
    gap: 4px;
  }

  .menu-funding-feature-goal > div:first-child strong {
    font-size: 0.92rem;
  }

  .menu-cart-funding-main {
    grid-template-columns: 58px minmax(0, 1fr) minmax(82px, 0.28fr);
    gap: 6px;
  }

  .menu-cart-funding-thumb {
    width: 100%;
    min-height: 76px;
    justify-self: stretch;
  }

  .menu-cart-funding-copy > strong {
    font-size: 0.86rem;
  }

  .menu-cart-funding-copy > small {
    -webkit-line-clamp: 2;
    font-size: 0.62rem;
  }

  .menu-cart-funding-goal {
    grid-template-columns: minmax(48px, auto) minmax(0, 1fr) auto;
    gap: 4px;
  }

  .menu-cart-funding-goal > div:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    padding-right: 4px;
  }

  .menu-cart-contributors {
    padding-left: 6px;
  }

  .menu-cart-contributors > span {
    font-size: 0.34rem;
  }

  .menu-cart-contributor {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px;
  }

  .menu-cart-contributor strong,
  .menu-cart-contributor b {
    font-size: 0.58rem;
  }

  .menu-cart-funding-checkout {
    grid-template-columns: minmax(0, 1fr) minmax(166px, 0.48fr);
    gap: 3px 6px;
  }

  .menu-cart-funding-after-title,
  .menu-cart-funding-contribution-title {
    font-size: 0.48rem;
  }

  .menu-cart-funding-after {
    grid-template-rows: 9px 7px;
    gap: 2px;
    height: 30px;
    padding: 4px 8px;
  }

  .menu-cart-progress-labels {
    min-height: 9px;
  }

  .menu-cart-progress-labels span,
  .menu-cart-progress-labels strong {
    font-size: 0.48rem;
  }

  .menu-cart-funding-after .menu-partial-track {
    height: 7px;
  }

  .menu-cart-funding-control-row {
    grid-template-columns: 30px minmax(64px, 1fr) 30px 30px;
    gap: 4px;
  }

  .menu-cart-funding-control-row button,
  .menu-cart-funding-money,
  .print-remove-button.menu-cart-funding-remove {
    width: 30px;
    min-height: 30px;
    height: 30px;
  }

  .menu-cart-funding-money {
    width: 100%;
    padding: 0 5px;
  }

  .menu-cart-funding-money span,
  .menu-cart-funding-money input {
    font-size: 0.62rem;
  }

  .menu-partial-funding-item {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .menu-partial-current-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-partial-funding-thumb {
    width: 62px;
    height: 62px;
  }

  .tab-button {
    min-height: 42px;
    padding: 0 2px;
    font-size: 0.56rem;
  }

  .tab-icon {
    width: 13px;
    height: 13px;
  }

  .stream-logo {
    width: 16px;
    height: 16px;
  }

  .preset-button {
    min-height: 40px;
    padding: 0 4px;
    font-size: 0.68rem;
  }
}

@media (max-width: 760px) {
  .road-trip-cart-main {
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: start;
  }

  .road-trip-cart-thumbs,
  .road-trip-cart-copy,
  .road-trip-notes-field {
    grid-column: 1 / -1;
  }

  .road-trip-cart-facts {
    grid-column: 1 / 2;
    justify-items: start;
  }

  .road-trip-cart-remove {
    grid-column: 2 / 3;
    grid-row: 3;
    align-self: center;
    justify-self: end;
  }
}

@media (max-width: 480px) {
  .road-trip-search-shell {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 6px;
  }

  .road-trip-search-shell button {
    width: 100%;
    gap: 5px;
    padding: 0 7px;
    font-size: 0.62rem;
  }

  .road-trip-search-shell button svg {
    width: 15px;
    height: 15px;
  }

  .road-trip-cart-thumb {
    width: 74px;
    height: 46px;
  }
}

@media (max-width: 760px) {
  .road-trip-active-card {
    gap: 8px;
    padding: 8px;
  }

  .road-trip-active-card-head {
    grid-template-columns: 46px minmax(0, 1fr) 70px;
    gap: 8px;
    align-items: start;
  }

  .road-trip-active-title-icon {
    width: 44px;
    min-height: 44px;
  }

  .road-trip-active-title-icon svg {
    width: 29px;
    height: 29px;
  }

  .road-trip-active-title-copy {
    grid-column: 2 / 3;
    gap: 4px;
  }

  .road-trip-active-card-head strong {
    font-size: 1rem;
    line-height: 1.04;
  }

  .road-trip-active-title.is-long {
    font-size: 0.86rem;
  }

  .road-trip-active-title.is-extra-long {
    font-size: 0.74rem;
  }

  .road-trip-active-card-head .road-trip-active-requested,
  .road-trip-active-card-head .road-trip-active-details,
  .road-trip-active-card-head .road-trip-active-date {
    gap: 5px;
    font-size: 0.62rem;
    line-height: 1.16;
  }

  .road-trip-active-requested svg,
  .road-trip-active-details svg,
  .road-trip-active-date svg {
    width: 13px;
    height: 13px;
  }

  .road-trip-active-card-head .road-trip-active-details {
    grid-template-columns: 13px minmax(0, 1fr);
  }

  .road-trip-active-card-head .road-trip-active-details svg {
    width: 13px;
    height: 13px;
    min-width: 13px;
  }

  .road-trip-active-card-head .road-trip-active-date {
    grid-column: 2 / 4;
    grid-row: 2;
    justify-self: start;
    white-space: normal;
  }

  .road-trip-active-card.is-history .road-trip-active-card-head {
    row-gap: 4px;
  }

  .road-trip-active-card.is-history .road-trip-active-card-head .road-trip-active-date {
    grid-column: 2 / 3;
    margin-top: -2px;
  }

  .road-trip-active-map-button {
    grid-column: 3 / 4;
    grid-row: 1;
    width: 70px;
    min-width: 0;
    min-height: 40px;
    gap: 5px;
    padding: 0 7px;
    font-size: 0.58rem;
  }

  .road-trip-active-map-button svg {
    width: 14px;
    height: 14px;
  }

  .road-trip-active-stepper {
    min-height: 44px;
    gap: 8px;
    padding: 0 8px;
  }

  .road-trip-active-stepper-track {
    left: 23px;
    right: 74px;
    height: 4px;
  }

  .road-trip-active-step {
    width: 26px;
    height: 26px;
    border-width: 2px;
    font-size: 0.66rem;
  }

  .road-trip-active-stepper b {
    width: 66px;
    font-size: 0.54rem;
    line-height: 1.05;
    text-align: right;
    white-space: normal;
  }

  .road-trip-active-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .road-trip-active-stat {
    min-height: 54px;
    grid-template-columns: 16px minmax(0, 1fr);
    grid-template-rows: minmax(0, auto) auto;
    align-content: center;
    gap: 2px 4px;
    border-top: 1px solid rgba(139, 255, 88, 0.58);
    padding: 5px 4px;
  }

  .road-trip-active-stat:nth-child(-n + 2),
  .road-trip-active-stat:nth-child(2n) {
    border-top: 1px solid rgba(139, 255, 88, 0.58);
    border-right: 1px solid rgba(139, 255, 88, 0.58);
  }

  .road-trip-active-stat svg {
    width: 16px;
    height: 16px;
  }

  .road-trip-active-stat strong {
    font-size: clamp(0.5rem, 2.7vw, 0.68rem);
    line-height: 1;
    overflow: visible;
    text-overflow: clip;
  }

  .road-trip-active-stat small {
    font-size: clamp(0.34rem, 1.9vw, 0.48rem);
    line-height: 1.02;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: normal;
  }

  .road-trip-active-stops li {
    grid-template-columns: 30px minmax(0, 1fr) 34px;
    gap: 7px;
    padding: 7px;
  }

  .road-trip-active-stops li.has-photo {
    grid-template-columns: 30px 78px minmax(0, 1fr) 34px;
  }

  .road-trip-active-stop-thumb {
    width: 78px;
    height: 50px;
  }

  .road-trip-active-stop-index {
    width: 30px;
    height: 30px;
    font-size: 0.74rem;
  }

  .road-trip-active-stops strong {
    font-size: 0.76rem;
  }

  .road-trip-active-stops small {
    font-size: 0.6rem;
  }

  .road-trip-active-leg-facts {
    gap: 4px;
    font-size: 0.56rem;
  }

  .road-trip-active-leg-facts b,
  .road-trip-active-leg-facts em {
    min-height: 19px;
    padding: 2px 5px;
  }

  .road-trip-active-leg-facts em {
    display: none;
  }

  .road-trip-active-leg-facts svg {
    width: 11px;
    height: 11px;
  }

  .road-trip-active-stops button {
    width: 34px;
    height: 34px;
  }

  .road-trip-history-dialog {
    width: min(100%, 560px);
  }
}

@media (max-width: 640px) {
  .road-trip-paid-modal {
    place-items: start center;
    overflow-y: auto;
    padding: 6px;
  }

  .road-trip-paid-dialog {
    width: calc(100vw - 12px);
    max-height: none;
    overflow: visible;
    gap: 7px;
    padding: 10px;
  }

  .road-trip-paid-stat-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .road-trip-paid-stat-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .road-trip-paid-stat-strip .road-trip-paid-stat,
  .road-trip-paid-stat-strip .road-trip-paid-stat + .road-trip-paid-stat,
  .road-trip-paid-stat-strip .road-trip-paid-stat:nth-child(-n + 2),
  .road-trip-paid-stat-strip .road-trip-paid-stat:nth-child(even) {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }

  .road-trip-paid-stat-strip .road-trip-paid-stat:first-child {
    border-left: 0;
  }

  .road-trip-paid-stat,
  .road-trip-paid-stat.is-total {
    min-height: 48px;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 3px;
    padding: 6px 5px;
  }

  .road-trip-paid-stat svg,
  .road-trip-paid-stat.is-total svg {
    width: 18px;
    height: 18px;
  }

  .road-trip-paid-stat strong,
  .road-trip-paid-stat.is-rate strong {
    font-size: clamp(0.58rem, 3.2vw, 0.88rem);
  }

  .road-trip-paid-stat.is-total strong {
    font-size: clamp(1.22rem, 7vw, 1.68rem);
  }

  .road-trip-paid-stat span {
    font-size: 0.42rem;
  }

  .road-trip-paid-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 7px;
    padding: 8px;
  }

  .road-trip-paid-action-note {
    grid-column: 1 / -1;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 8px;
  }

  .road-trip-paid-action-note svg {
    width: 24px;
    height: 24px;
  }

  .road-trip-paid-action-note p {
    font-size: 0.64rem;
  }

  .road-trip-paid-action,
  .road-trip-paid-action.is-primary {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    font-size: 0.68rem;
  }
}

@media (max-width: 760px) {
  .road-trip-photo-dialog {
    min-height: 92dvh;
    max-height: 92dvh;
  }

  .road-trip-photo-copy {
    left: 16px;
    bottom: 58px;
    width: min(340px, calc(100% - 84px));
    min-width: 0;
    max-width: none;
    gap: 4px 8px;
    padding: 9px 10px;
  }

  .road-trip-photo-copy.has-trip-memory {
    padding-right: 43px;
  }

  .road-trip-photo-copy.is-trip-memory-expanded {
    max-height: 44vh;
  }

  .road-trip-photo-trip-toggle {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }

  .road-trip-photo-trip-toggle svg {
    width: 17px;
    height: 17px;
  }

  .road-trip-photo-copy span {
    font-size: 0.5rem;
  }

  .road-trip-photo-copy h3 {
    font-size: clamp(0.9rem, 4.2vw, 1.16rem);
    line-height: 1.04;
  }

  .road-trip-photo-copy p {
    font-size: 0.64rem;
    line-height: 1.16;
  }

  .road-trip-photo-copy small {
    font-size: 0.54rem;
    line-height: 1.16;
  }

  .road-trip-photo-copy small::before {
    width: 12px;
    height: 12px;
    border-width: 2px;
    border-top-width: 4px;
  }

  .road-trip-photo-copy .road-trip-photo-place {
    font-size: 0.56rem;
    padding: 4px 7px;
  }

  .road-trip-photo-trip {
    gap: 5px;
    margin-top: 4px;
    padding-top: 7px;
  }

  .road-trip-photo-trip span {
    font-size: 0.5rem;
  }

  .road-trip-photo-trip strong {
    font-size: 0.72rem;
  }

  .road-trip-photo-trip dl {
    gap: 3px;
  }

  .road-trip-photo-trip dl div {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 6px;
  }

  .road-trip-photo-trip dt,
  .road-trip-photo-trip dd,
  .road-trip-photo-trip p {
    font-size: 0.56rem;
    line-height: 1.18;
  }

  .road-trip-photo-mobile-locate {
    width: 31px;
    height: 31px;
    padding: 0;
    font-size: 0;
  }

  .road-trip-photo-mobile-locate svg {
    width: 16px;
    height: 16px;
  }

  .road-trip-photo-dialog.is-trip-memory-expanded .road-trip-photo-nav.is-prev {
    transform: translateY(-72px);
  }
}

@media (max-width: 760px) {
  .menu-active-toggle {
    min-height: 50px;
    grid-template-columns: minmax(0, 1fr) 28px;
    padding: 8px;
  }

  .menu-active-panel.is-expanded .menu-active-toggle {
    min-height: 62px;
  }

  .menu-active-panel.is-expanded .menu-active-toggle strong {
    font-size: 1.1rem;
  }

  .menu-active-panel.is-expanded .menu-active-toggle small {
    font-size: 0.74rem;
  }

  .menu-active-card {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 9px;
    padding: 8px;
    align-items: start;
  }

  .menu-active-thumb {
    grid-row: 1 / 3;
    align-self: stretch;
    width: 78px;
    height: 100%;
    min-height: 78px;
  }

  .menu-active-thumb svg {
    width: 30px;
    height: 30px;
  }

  .media-active-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .media-active-thumb {
    width: 104px;
    min-height: 82px;
  }

  .menu-active-card strong {
    overflow: visible;
    font-size: 0.78rem;
    line-height: 1.04;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .menu-active-title.is-long {
    font-size: 0.7rem;
  }

  .menu-active-title.is-extra-long {
    font-size: 0.64rem;
  }

  .menu-active-requested,
  .menu-active-detail,
  .menu-active-side small {
    gap: 5px;
    font-size: 0.58rem;
  }

  .menu-active-requested svg,
  .menu-active-detail svg,
  .menu-active-side svg {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
  }

  .menu-active-requested {
    display: grid;
    grid-template-columns: 13px max-content minmax(0, 1fr);
    align-items: center;
    column-gap: 5px;
  }

  .menu-active-requested b {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .menu-active-side,
  .menu-active-card.is-history .menu-active-side {
    grid-column: 2 / 3;
    justify-items: start;
    text-align: left;
    margin-top: -2px;
  }

  .menu-active-side small {
    display: grid;
    grid-template-columns: 13px minmax(0, 1fr);
    align-items: center;
    white-space: normal;
  }

  .menu-history-modal {
    align-items: stretch;
    padding: max(7px, env(safe-area-inset-top)) max(7px, env(safe-area-inset-right)) max(7px, env(safe-area-inset-bottom)) max(7px, env(safe-area-inset-left));
  }

  .menu-history-dialog {
    height: calc(100dvh - 14px);
    max-height: calc(100dvh - 14px);
    padding: 8px;
  }

  .menu-history-head {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .menu-history-close {
    width: 36px;
    height: 36px;
  }
}
