.runtime-toast {
  position: fixed;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 9999;
  width: min(calc(100% - 32px), 420px);
  padding: 13px 16px;
  border: 1px solid rgba(69, 249, 156, .35);
  border-radius: 12px;
  background: #0d1c2d;
  color: #d4e4fa;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .45);
  font: 500 13px/1.45 Geist, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: .2s ease;
}

/* Cada protótipo é carregado como uma rota interna. O elemento raiz da página
   precisa continuar sendo o contêiner de rolagem depois da troca do body. */
html {
  width: 100%;
  height: 100%;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

body {
  width: 100%;
  height: 100dvh !important;
  min-height: 0 !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

.runtime-toast.visible { opacity: 1; transform: translate(-50%, 0); }
.runtime-toast.error { border-color: rgba(255, 180, 171, .45); color: #ffdad6; }
.runtime-busy { opacity: .6; pointer-events: none; }
.runtime-access-disabled { opacity: .58; cursor: not-allowed !important; box-shadow: none !important; }

.runtime-robot-control {
  border: 1px solid transparent !important;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .12s ease !important;
}
.runtime-robot-control[data-robot-state="start"] {
  background: #00dc82 !important;
  border-color: rgba(89, 255, 164, .7) !important;
  color: #00391d !important;
  box-shadow: 0 4px 20px rgba(0, 220, 130, .24) !important;
}
.runtime-robot-control[data-robot-state="stop"],
.runtime-robot-control[data-robot-state="stopping"] {
  background: #93000a !important;
  border-color: rgba(255, 180, 171, .48) !important;
  color: #ffdad6 !important;
  box-shadow: 0 4px 20px rgba(147, 0, 10, .3) !important;
}
.runtime-robot-control[data-robot-state="stopping"] {
  background: #5f1015 !important;
}

.runtime-access-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 12px;
  width: calc(100% - 32px);
  margin: 12px 16px 0;
  padding: 13px 14px;
  border: 1px solid rgba(69, 249, 156, .24);
  border-radius: 12px;
  background: #0d1c2d;
  color: #d4e4fa;
  box-sizing: border-box;
  font-family: Geist, sans-serif;
}
.runtime-access-card.blocked { border-color: rgba(255, 180, 171, .5); background: #191c2a; }
.runtime-access-card.warning { border-color: rgba(255, 209, 128, .48); }
.runtime-access-icon { color: #45f99c; font-size: 22px; }
.runtime-access-card.blocked .runtime-access-icon { color: #ffb4ab; }
.runtime-access-card.warning .runtime-access-icon { color: #ffd180; }
.runtime-access-content { min-width: 0; }
.runtime-access-content strong { display: block; font-size: 14px; line-height: 1.3; }
.runtime-access-content p { margin: 3px 0 0; color: #bacbbc; font-size: 12px; line-height: 1.45; }
.runtime-access-facts {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 2px;
}
.runtime-access-facts span {
  padding: 4px 7px;
  border-radius: 6px;
  background: #122131;
  color: #45f99c;
  font: 600 9px/1.2 "JetBrains Mono", monospace;
  letter-spacing: .04em;
}
.runtime-access-card.blocked .runtime-access-facts span { color: #ffdad6; }
.runtime-access-facts .previous-price { color: #859587; text-decoration: line-through; }
.runtime-access-facts .benefit-price { background: rgba(69, 249, 156, .14); color: #45f99c; }

.runtime-switch-recovery {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: 100%;
  text-align: center;
}
.runtime-switch-recovery > .material-symbols-outlined { color: #ffb4ab; font-size: 40px; }
.runtime-switch-recovery h2 { margin: 0; color: #d4e4fa; font: 650 20px/1.25 Geist, sans-serif; }
.runtime-switch-recovery p { margin: 0 0 4px; color: #bacbbc; font: 400 14px/1.5 Geist, sans-serif; }
.runtime-switch-recovery a,
.runtime-switch-recovery button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(69, 249, 156, .35);
  border-radius: 12px;
  background: #00dc82;
  color: #00210f;
  font: 700 13px/1.2 Geist, sans-serif;
  text-decoration: none;
  cursor: pointer;
}
.runtime-switch-recovery a { background: #122131; color: #45f99c; }
.runtime-switch-recovery a .material-symbols-outlined { font-size: 18px; }
.runtime-switch-recovery button.secondary { background: transparent; color: #bacbbc; border-color: #273647; }
.runtime-recovery-steps {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(69, 249, 156, .18);
  border-radius: 12px;
  background: rgba(69, 249, 156, .05);
  color: #bacbbc;
  font: 400 13px/1.45 Geist, sans-serif;
  text-align: left;
}
.runtime-recovery-steps strong { color: #45f99c; }

.runtime-mode-stack { display: grid; gap: 12px; width: 100%; margin-top: 8px; }
.runtime-mode-title { color: #d4e4fa; text-align: center; font-weight: 700; }
.runtime-mode-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid #273647;
  border-radius: 12px;
  background: transparent;
  color: #bacbbc;
  font-family: Geist, sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.runtime-mode-button.primary { border: 0; background: #00dc82; color: #00210f; }
.runtime-mode-note { color: #859587; text-align: center; font-size: 11px; }

.runtime-deposit-shell { padding: 22px 16px 16px; background: radial-gradient(circle at 50% 12%, rgba(0,220,130,.08), transparent 34%); box-sizing: border-box; }
.runtime-deposit-content { width: min(100%, 560px); margin: 0 auto; }
.runtime-deposit-brands { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; padding: 12px 8px 24px; color: #d4e4fa; }
.runtime-deposit-brands > div { display: flex; align-items: center; gap: 10px; min-width: 0; }
.runtime-deposit-brands > div:last-child { justify-content: flex-end; }
.runtime-deposit-brands img { width: 46px; height: 46px; }
.runtime-deposit-brands span span,.runtime-deposit-brands strong,.runtime-deposit-brands small { display: block; }
.runtime-deposit-brands strong { font-size: 17px; line-height: 1.1; }
.runtime-deposit-brands small { margin-top: 3px; color: #859587; font: 700 8px/1.1 "JetBrains Mono",monospace; letter-spacing: .3em; }
.runtime-deposit-brands > .material-symbols-outlined { color: #4a667d; font-size: 32px; }
.runtime-avalon-brand i { display: grid; place-items: center; width: 44px; height: 44px; color: #45f99c; font: 900 31px/1 Geist,sans-serif; font-style: normal; clip-path: polygon(50% 0,100% 100%,77% 100%,50% 43%,23% 100%,0 100%); background: #45f99c; text-indent: -999px; }
.runtime-avalon-brand strong { font-size: 19px; letter-spacing: .04em; }
.runtime-deposit-card { padding: 28px 24px; border: 1px solid #273647; border-radius: 20px; background: linear-gradient(180deg,#0d2235,#091d2e); box-shadow: 0 18px 54px rgba(0,0,0,.28); color: #d4e4fa; text-align: center; }
.runtime-deposit-shield { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%; background: rgba(0,220,130,.12); color: #45f99c; }
.runtime-deposit-shield .material-symbols-outlined { font-size: 30px; }
.runtime-deposit-card h1 { margin: 0 0 8px; font-size: 27px; line-height: 1.18; }
.runtime-deposit-card p { max-width: 430px; margin: 0 auto; color: #bacbbc; line-height: 1.55; }
.runtime-deposit-actions { display: grid; gap: 10px; margin-top: 18px; }
.runtime-deposit-card button { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; min-height: 52px; padding: 10px 14px; border: 0; border-radius: 12px; background: #00dc82; color: #00210f; font-weight: 800; cursor: pointer; }
.runtime-deposit-card button.secondary { border: 1px solid #859587; background: transparent; color: #d4e4fa; font-size: 12px; font-weight: 600; }
.runtime-deposit-glow { animation: runtime-deposit-glow 4.5s ease-in-out infinite; }
@keyframes runtime-deposit-glow { 0%,100% { box-shadow: 0 0 0 rgba(0,220,130,0); } 50% { box-shadow: 0 0 16px rgba(0,220,130,.22); } }
@media (prefers-reduced-motion: reduce) { .runtime-deposit-glow { animation: none; } }
.runtime-deposit-card button.secondary:hover { border-color: #45f99c; color: #45f99c; }
.runtime-deposit-how { display: flex; align-items: center; gap: 13px; margin: 28px 0 18px; color: #859587; font: 800 10px/1 "JetBrains Mono",monospace; letter-spacing: .22em; }
.runtime-deposit-how:before,.runtime-deposit-how:after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg,transparent,#2b4b61); }
.runtime-deposit-how:after { background: linear-gradient(90deg,#2b4b61,transparent); }
.runtime-deposit-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.runtime-deposit-steps li { color: #bacbbc; text-align: center; }
.runtime-deposit-steps li > div { position: relative; display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 11px; border-radius: 50%; background: rgba(0,220,130,.08); color: #d4e4fa; }
.runtime-deposit-steps li > div > strong { position: absolute; top: -7px; display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: #00dc82; color: #00210f; font: 800 12px/1 Geist,sans-serif; }
.runtime-deposit-steps .material-symbols-outlined { font-size: 29px; }
.runtime-deposit-steps h2 { margin: 0 0 6px; color: #d4e4fa; font-size: 13px; line-height: 1.25; }
.runtime-deposit-steps p { margin: 0; color: #859587; font-size: 10px; line-height: 1.45; }
.runtime-deposit-frame-shell { min-height: calc(100dvh - 64px); display: grid; grid-template-rows: 50px minmax(0,1fr); background: #010f1f; }
.runtime-deposit-frame-bar { display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid #273647; background: #0d1c2d; color: #45f99c; font: 700 11px/1.2 "JetBrains Mono", monospace; letter-spacing: .08em; }
.runtime-deposit-frame-bar button { display: inline-flex; align-items: center; gap: 6px; border: 0; background: transparent; color: #d4e4fa; font-weight: 750; cursor: pointer; }
.runtime-deposit-frame-bar .material-symbols-outlined { font-size: 18px; }
.runtime-deposit-frame { width: 100%; height: 100%; min-height: calc(100dvh - 114px); border: 0; background: white; }
@media (max-width: 420px) { .runtime-deposit-shell { padding-inline: 12px; } .runtime-deposit-card { padding: 24px 18px; } .runtime-deposit-brands { gap: 7px; } .runtime-deposit-brands img { width: 38px; height: 38px; } .runtime-deposit-brands strong,.runtime-avalon-brand strong { font-size: 14px; } .runtime-avalon-brand i { width: 36px; height: 36px; } .runtime-deposit-steps { gap: 5px; } .runtime-deposit-steps li > div { width: 56px; height: 56px; } }

.runtime-operation-list { display: grid; gap: 8px; }
.runtime-operation { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px; border-radius: 10px; background: #0d1c2d; }
.runtime-operation small { color: #859587; }
.runtime-operation-result { font-family: "JetBrains Mono", monospace; text-align: right; }
.runtime-operation-result.win { color: #45f99c; }
.runtime-operation-result.loss { color: #ffb4ab; }

html.runtime-page-hidden *,
html.runtime-page-hidden *::before,
html.runtime-page-hidden *::after {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

.runtime-config-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: end center;
  padding-top: 64px;
  background: rgba(1, 8, 18, .82);
  backdrop-filter: blur(4px);
}
.runtime-config-sheet {
  width: min(100%, 560px);
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
  box-sizing: border-box;
  padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
  border: 1px solid #273647;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: #0d1c2d;
  color: #d4e4fa;
  box-shadow: 0 -24px 64px rgba(0, 0, 0, .5);
  font-family: Geist, sans-serif;
}
.runtime-config-sheet > header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.runtime-config-sheet h2 { margin: 3px 0 0; font-size: 20px; }
.runtime-config-sheet header small { color: #45f99c; font: 600 10px/1.2 "JetBrains Mono", monospace; letter-spacing: .08em; }
.runtime-config-sheet header button { display: grid; place-items: center; width: 38px; height: 38px; border: 0; border-radius: 9px; background: #122131; color: #bacbbc; }
.runtime-config-description { margin: 14px 0 18px; color: #bacbbc; font-size: 12px; line-height: 1.5; }
.runtime-config-risk { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; padding: 14px; border: 1px solid rgba(69,249,156,.34); border-radius: 10px; background: #071727; }
.runtime-config-risk[hidden], .runtime-config-risk > [hidden] { display: none !important; }
.runtime-config-field input { box-sizing: border-box; width: 100%; margin-top: 7px; padding: 11px; border: 1px solid #273647; border-radius: 7px; background: #010f1f; color: #d4e4fa; font: 600 13px/18px "JetBrains Mono", monospace; }
.runtime-config-section { margin-top: 16px; padding: 16px; border: 1px solid #273647; border-radius: 12px; background: #091725; }
.runtime-config-section > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.runtime-config-section h3 { margin: 0; color: #d4e4fa; font-size: 15px; }
.runtime-config-section header p { margin: 5px 0 0; color: #bacbbc; font-size: 11px; line-height: 1.45; }
.runtime-config-section header > strong { flex: 0 0 auto; padding: 7px 10px; border: 1px solid rgba(69,249,156,.34); border-radius: 999px; color: #45f99c; font: 650 10px/1 "JetBrains Mono",monospace; }
.runtime-strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.runtime-strategy-choice { position: relative; display: grid; grid-template-columns: 34px minmax(0,1fr); align-items: start; gap: 10px; min-height: 92px; padding: 12px; border: 1px solid #273647; border-radius: 9px; background: #07131f; cursor: pointer; box-sizing: border-box; }
.runtime-strategy-choice:hover { border-color: rgba(69,249,156,.48); }
.runtime-strategy-choice.selected { border-color: #00dc82; background: rgba(0,220,130,.08); }
.runtime-strategy-choice input,.runtime-timeframe-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.runtime-choice-marker { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid #3c4a3f; color: #d4e4fa; font-size: 19px; }
.runtime-strategy-choice.selected .runtime-choice-marker { border-color: #00dc82; background: #00dc82; color: #00210f; }
.runtime-strategy-choice > span:last-child { min-width: 0; }
.runtime-strategy-choice strong { display: block; color: #d4e4fa; font-size: 13px; line-height: 1.35; }
.runtime-strategy-choice small { display: block; margin-top: 5px; color: #bacbbc; font-size: 10px; line-height: 1.55; }
.runtime-timeframe-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 8px; }
.runtime-timeframe-choice { position: relative; display: grid; place-items: center; min-height: 48px; border: 1px solid #273647; border-radius: 9px; background: #07131f; color: #d4e4fa; cursor: pointer; }
.runtime-timeframe-choice.selected { border-color: #00dc82; background: rgba(0,220,130,.12); color: #45f99c; }
.runtime-timeframe-choice .runtime-choice-marker { display: none; }
.runtime-timeframe-choice strong { font: 650 11px/1 "JetBrains Mono",monospace; }
.runtime-config-field, .runtime-config-sheet legend { color: #859587; font: 650 10px/1.2 "JetBrains Mono", monospace; letter-spacing: .06em; }
.runtime-config-field select { display: block; width: 100%; margin-top: 7px; padding: 12px; border: 1px solid #273647; border-radius: 9px; background: #010f1f; color: #d4e4fa; }
.runtime-config-sheet fieldset { margin: 16px 0 0; padding: 13px; border: 1px solid #273647; border-radius: 11px; }
.runtime-config-sheet legend { padding: 0 6px; }
.runtime-config-sheet fieldset > small { display: block; margin-top: 9px; color: #4cd7f6; font: 500 10px/1.3 "JetBrains Mono", monospace; }
.runtime-config-options { display: grid; gap: 8px; }
.runtime-config-options.compact { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.runtime-config-options label { display: flex; align-items: center; gap: 9px; min-height: 40px; padding: 0 10px; border-radius: 8px; background: #122131; color: #d4e4fa; font-size: 12px; }
.runtime-config-options input { width: 17px; height: 17px; margin: 0; accent-color: #00dc82; }
.runtime-config-options.compact label { justify-content: center; padding: 0 4px; }
.runtime-config-error { min-height: 18px; margin: 12px 0; color: #ffb4ab; font-size: 12px; }
.runtime-config-sheet footer { position: sticky; bottom: -20px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 9px; margin: 0 -18px -20px; padding: 14px 18px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid #273647; background: #0d1c2d; }
.runtime-config-sheet footer button { min-height: 48px; border: 1px solid #273647; border-radius: 10px; background: #122131; color: #d4e4fa; font-weight: 750; }
.runtime-config-sheet footer button[type=submit] { border: 0; background: #00dc82; color: #00210f; }
.runtime-config-sheet footer button:disabled { opacity: .5; cursor: not-allowed; }

.runtime-app-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 64px;
  background: rgba(5, 20, 36, .92);
  color: #d4e4fa;
  backdrop-filter: blur(16px);
}

.runtime-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 64px;
  padding: 0 16px;
}

.runtime-header-brand, .runtime-header-actions, .runtime-account-pill {
  display: flex;
  align-items: center;
}
.runtime-account-selector { position: relative; }
.runtime-header-brand { gap: 6px; min-width: 0; }
.runtime-header-actions { gap: 6px; flex: 0 0 auto; }
.runtime-brand-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(69, 249, 156, .24);
  border-radius: 8px;
  background: rgba(69, 249, 156, .08);
  color: #45f99c;
}
.runtime-brand-icon .material-symbols-outlined { font-size: 19px; }
.runtime-brand-name { overflow: hidden; font: 650 14px/1 Geist, sans-serif; white-space: nowrap; text-overflow: ellipsis; }
.runtime-brand-icon img,
.runtime-nav-operate img,
.runtime-inline-brand-icon { width: 100%; height: 100%; object-fit: contain; display: block; }
.runtime-account-pill { gap: 5px; min-height: 38px; padding: 0 8px; border: 1px solid transparent; border-radius: 12px; background: #0d1c2d; }
.runtime-account-pill.switchable { cursor: pointer; border-color: rgba(69,249,156,.2); }
.runtime-account-pill.switchable:hover { border-color: #45f99c; }
.runtime-account-pill:disabled { opacity: 1; }
.runtime-account-pill > span:first-child { width: 6px; height: 6px; border-radius: 50%; background: #45f99c; }
.runtime-account-pill strong { color: #45f99c; font: 600 10px/1 "JetBrains Mono", monospace; letter-spacing: .08em; white-space: nowrap; }
.runtime-account-pill .material-symbols-outlined { color: #859587; font-size: 14px; }
.runtime-account-pill:not(.switchable) .material-symbols-outlined { display: none; }
.runtime-account-menu { position: absolute; z-index: 80; top: 44px; right: 0; width: 178px; padding: 6px; border: 1px solid #273647; border-radius: 9px; background: #071727; box-shadow: 0 12px 28px rgba(0,0,0,.42); }
.runtime-account-menu[hidden] { display: none; }
.runtime-account-menu button { display: flex; align-items: center; gap: 7px; width: 100%; padding: 9px; border: 0; border-radius: 6px; background: transparent; color: #bacbbc; font: 600 11px/15px Geist,sans-serif; text-align: left; cursor: pointer; }

.runtime-history-ledger { max-height: 520px; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: #273647 transparent; }
.runtime-history-ledger > .runtime-history-heading { position: sticky; top: 0; z-index: 2; background: #051424; }
.runtime-history-sentinel { min-height: 40px; display: grid; place-items: center; color: #859587; font: 500 11px/14px "JetBrains Mono", monospace; }
.runtime-history-custom { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; padding: 10px; border-radius: 8px; background: #0d1c2d; }
.runtime-history-custom label { display: grid; gap: 4px; color: #859587; font: 600 10px/12px Geist, sans-serif; }
.runtime-history-custom input { min-width: 0; border: 1px solid #273647; border-radius: 6px; background: #010f1f; color: #d4e4fa; padding: 8px; color-scheme: dark; }
.runtime-history-custom button { align-self: end; border: 0; border-radius: 6px; background: #00dc82; color: #00391d; padding: 9px 12px; font-weight: 700; cursor: pointer; }
@media (max-width: 520px) { .runtime-history-custom { grid-template-columns: 1fr 1fr; } .runtime-history-custom button { grid-column: 1 / -1; } }
.runtime-account-menu button:hover,.runtime-account-menu button.active { background: #122131; color: #45f99c; }
.runtime-account-menu .material-symbols-outlined { font-size: 16px; }
.runtime-icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 11px;
  background: #0d1c2d;
  color: #bacbbc;
}
.runtime-icon-button i { position: absolute; top: 9px; right: 9px; width: 7px; height: 7px; border-radius: 50%; background: #45f99c; box-shadow: 0 0 8px #45f99c; }
.runtime-icon-button i[hidden] { display: none; }
.runtime-notification-overlay { position: fixed; inset: 0; z-index: 1000; background: transparent; }
.runtime-notification-sheet { position: fixed; max-height: min(480px,calc(100dvh - 84px)); display: flex; flex-direction: column; padding: 14px; border: 1px solid #273647; border-radius: 14px; background: #122131; color: #d4e4fa; box-shadow: 0 16px 44px rgba(0,0,0,.55); overflow: hidden; }
.runtime-notification-sheet header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid #273647; }
.runtime-notification-sheet h2 { margin: 1px 0 0; font: 700 18px/23px Geist,sans-serif; }
.runtime-notification-sheet header small { color: #45f99c; font: 700 10px/12px monospace; letter-spacing: .08em; }
.runtime-notification-sheet header button { border: 0; border-radius: 8px; padding: 8px; background: #1c2b3c; color: #bacbbc; cursor: pointer; }
.runtime-notification-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; color: #bacbbc; font-size: 11px; }
.runtime-notification-toolbar button,.runtime-notification-more { border: 0; background: transparent; color: #45f99c; font-weight: 700; cursor: pointer; }
.runtime-notification-list { flex: 1; min-height: 64px; max-height: 330px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; overscroll-behavior: contain; }
.runtime-notification-item { position: relative; display: flex; flex-direction: column; gap: 4px; width: 100%; padding: 13px 14px 13px 18px; border: 1px solid rgba(69,249,156,.18); border-radius: 10px; background: #0d1c2d; color: #d4e4fa; text-align: left; cursor: pointer; }
.runtime-notification-item:before { content: ''; position: absolute; left: 7px; top: 18px; width: 5px; height: 5px; border-radius: 50%; background: #45f99c; }
.runtime-notification-item.read { opacity: .68; border-color: #273647; }
.runtime-notification-item.read:before { display: none; }
.runtime-notification-item strong { font-size: 14px; }
.runtime-notification-item span { color: #bacbbc; font-size: 12px; line-height: 17px; }
.runtime-notification-item small { color: #859587; font: 11px/14px monospace; }
.runtime-notification-empty { margin: auto; color: #859587; text-align: center; }
.runtime-notification-more { padding: 14px; }
.runtime-session-overlay { position: fixed; inset: 0; z-index: 1000; display: grid; align-items: end; justify-items: center; padding: 16px; background: rgba(1,15,31,.72); backdrop-filter: blur(5px); }
.runtime-session-sheet { display: flex; flex-direction: column; width: min(430px,100%); max-height: min(650px,calc(100dvh - 32px)); padding: 16px; overflow: hidden; border: 1px solid #273647; border-radius: 18px; background: #122131; color: #d4e4fa; box-shadow: 0 24px 70px rgba(0,0,0,.58); }
.runtime-session-sheet header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid #273647; }
.runtime-session-sheet header small { color: #45f99c; font: 700 9px/12px "JetBrains Mono",monospace; letter-spacing: .08em; }
.runtime-session-sheet h2 { margin: 2px 0 0; font: 700 19px/24px Geist,sans-serif; }
.runtime-session-sheet header button { display: grid; place-items: center; width: 38px; height: 38px; border: 0; border-radius: 9px; background: #1c2b3c; color: #bacbbc; cursor: pointer; }
.runtime-session-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 2px; color: #bacbbc; font: 600 11px/15px Geist,sans-serif; }
.runtime-session-toolbar button,.runtime-session-more { border: 0; background: transparent; color: #ffb4ab; font: 700 11px/15px Geist,sans-serif; cursor: pointer; }
.runtime-session-toolbar button:disabled,.runtime-session-more:disabled { opacity: .5; cursor: wait; }
.runtime-session-list { display: flex; flex-direction: column; gap: 8px; min-height: 92px; overflow-y: auto; overscroll-behavior: contain; }
.runtime-session-item { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 10px; padding: 12px; border: 1px solid #273647; border-radius: 12px; background: #0d1c2d; }
.runtime-session-item.current { border-color: rgba(69,249,156,.35); background: rgba(69,249,156,.06); }
.runtime-session-device { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: #1c2b3c; color: #4cd7f6; font-size: 21px; }
.runtime-session-item.current .runtime-session-device { background: rgba(69,249,156,.13); color: #45f99c; }
.runtime-session-item div { min-width: 0; }
.runtime-session-item strong,.runtime-session-item div > span,.runtime-session-item small { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.runtime-session-item strong { font: 650 13px/18px Geist,sans-serif; }
.runtime-session-item div > span { color: #45f99c; font: 600 10px/14px "JetBrains Mono",monospace; }
.runtime-session-item small { color: #859587; font: 500 10px/14px Geist,sans-serif; }
.runtime-session-item button { min-height: 34px; padding: 0 8px; border: 1px solid rgba(255,180,171,.25); border-radius: 8px; background: transparent; color: #ffb4ab; font: 700 9px/12px "JetBrains Mono",monospace; cursor: pointer; }
.runtime-session-item button:disabled { border-color: rgba(69,249,156,.18); color: #45f99c; cursor: default; }
.runtime-session-more { padding: 13px; color: #45f99c; }
.runtime-session-note { margin: 10px 2px 0; color: #859587; font: 500 10px/15px Geist,sans-serif; }
.runtime-setting-row.runtime-setting-danger { color: #ffb4ab; }
.runtime-setting-row.runtime-setting-danger strong,
.runtime-setting-row.runtime-setting-danger > b { color: #ffb4ab; }
.runtime-session-empty { margin: auto; color: #859587; font-size: 12px; text-align: center; }
@media (min-width: 560px) { .runtime-session-overlay { align-items: center; } }
@media (max-width: 380px) { .runtime-session-item { grid-template-columns: auto minmax(0,1fr); } .runtime-session-item button { grid-column: 1 / -1; } }
.runtime-support-overlay { position: fixed; inset: 0; z-index: 1000; display: grid; align-items: end; justify-items: center; padding: 16px; background: rgba(1,15,31,.72); backdrop-filter: blur(5px); }
.runtime-support-sheet { display: flex; flex-direction: column; width: min(430px,100%); max-height: min(720px,calc(100dvh - 32px)); padding: 16px; overflow: hidden; border: 1px solid #273647; border-radius: 18px; background: #122131; color: #d4e4fa; box-shadow: 0 24px 70px rgba(0,0,0,.58); }
.runtime-support-sheet>header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid #273647; }
.runtime-support-sheet>header small { color: #45f99c; font: 700 9px/12px "JetBrains Mono",monospace; letter-spacing: .08em; }
.runtime-support-sheet h2 { margin: 2px 0 0; font: 700 19px/24px Geist,sans-serif; }
.runtime-support-sheet>header button { display: grid; place-items: center; width: 38px; height: 38px; border: 0; border-radius: 9px; background: #1c2b3c; color: #bacbbc; cursor: pointer; }
.runtime-support-body { min-height: 160px; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; }
.runtime-support-toolbar,.runtime-support-detail-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 2px; color: #bacbbc; font: 600 11px/15px Geist,sans-serif; }
.runtime-support-toolbar button,.runtime-support-detail-head button,.runtime-support-more { display: inline-flex; align-items: center; gap: 4px; border: 0; background: transparent; color: #45f99c; font: 700 10px/14px "JetBrains Mono",monospace; cursor: pointer; }
.runtime-support-detail-head>span { padding: 4px 7px; border-radius: 5px; font: 700 9px/12px "JetBrains Mono",monospace; }
.runtime-support-detail-head .status-open,.runtime-support-ticket.status-open em { background: rgba(76,215,246,.12); color: #4cd7f6; }
.runtime-support-detail-head .status-in-progress,.runtime-support-ticket.status-in-progress em { background: rgba(255,224,138,.12); color: #ffe08a; }
.runtime-support-detail-head .status-resolved,.runtime-support-ticket.status-resolved em { background: rgba(69,249,156,.12); color: #45f99c; }
.runtime-support-detail-head .status-closed,.runtime-support-ticket.status-closed em { background: rgba(133,149,135,.14); color: #9bad9d; }
.runtime-support-list { display: grid; gap: 8px; }
.runtime-support-ticket { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 10px; width: 100%; padding: 12px; border: 1px solid #273647; border-radius: 11px; background: #0d1c2d; color: #d4e4fa; text-align: left; cursor: pointer; }
.runtime-support-ticket:hover { border-color: rgba(69,249,156,.45); }
.runtime-support-ticket>.material-symbols-outlined { color: #4cd7f6; }
.runtime-support-ticket div,.runtime-support-ticket strong,.runtime-support-ticket small { display: block; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.runtime-support-ticket strong { font: 650 13px/18px Geist,sans-serif; }
.runtime-support-ticket small { color: #859587; font: 500 10px/14px Geist,sans-serif; }
.runtime-support-ticket em { min-width: 22px; padding: 4px 6px; border-radius: 999px; color: #45f99c; font: 700 9px/12px "JetBrains Mono",monospace; font-style: normal; text-align:center; }
.runtime-support-ticket.unread { border-color: rgba(255,85,85,.55); }
.runtime-support-ticket.unread em { background: #ff5555; color: #fff; }
.runtime-support-more { width: 100%; justify-content: center; padding: 13px; }
.runtime-support-empty,.runtime-support-loading { padding: 36px 12px; color: #859587; font-size: 12px; text-align: center; }
.runtime-support-ticket-heading { display: grid; gap: 3px; padding: 11px; border-radius: 9px; background: #0d1c2d; }
.runtime-support-ticket-heading strong { font-size: 14px; }
.runtime-support-ticket-heading small { color: #859587; font: 500 10px/14px "JetBrains Mono",monospace; }
.runtime-support-messages { display: grid; gap: 8px; margin: 12px 0; }
.runtime-support-message { max-width: 88%; padding: 10px 12px; border-radius: 11px; background: #1c2b3c; }
.runtime-support-message.customer { justify-self: end; border-bottom-right-radius: 3px; background: rgba(0,220,130,.12); }
.runtime-support-message.support { justify-self: start; border-bottom-left-radius: 3px; }
.runtime-support-message strong { color: #45f99c; font-size: 10px; }
.runtime-support-message p { margin: 4px 0; color: #d4e4fa; font-size: 12px; line-height: 17px; white-space: pre-wrap; overflow-wrap: anywhere; }
.runtime-support-message small { color: #859587; font-size: 9px; }
.runtime-support-reply { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; position: sticky; bottom: 0; padding-top: 10px; background: #122131; }
.runtime-support-reply textarea,.runtime-support-create input,.runtime-support-create select,.runtime-support-create textarea { width: 100%; box-sizing: border-box; padding: 10px; border: 1px solid #3c4a3f; border-radius: 8px; outline: none; background: #010f1f; color: #d4e4fa; font: 500 12px/17px Geist,sans-serif; }
.runtime-support-reply textarea { grid-column: 1/-1; min-height: 78px; max-height: 150px; resize: vertical; }
.runtime-support-reply .runtime-support-send,.runtime-support-create button[type="submit"] { min-width:82px; min-height:38px; padding: 0 12px; border: 0; border-radius: 8px; background: #00dc82; color: #00391d; font: 800 10px/14px Geist,sans-serif; cursor: pointer; }
.runtime-support-reply p,.runtime-support-reply>small { grid-column: 1/-1; min-height: 0; margin: 0; color: #ffb4ab; font-size: 10px; }
.runtime-support-reply>small { color:#859587; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.runtime-support-compose-tools { display:flex; align-items:center; gap:5px; }
.runtime-support-compose-tools button,.runtime-support-compose-tools label,.runtime-support-create-tools button { display:grid; place-items:center; width:34px; height:34px; padding:0; border:1px solid #3c4a3f; border-radius:7px; background:#0d1c2d; color:#bacbbc; cursor:pointer; }
.runtime-support-compose-tools input { display:none; }
.runtime-support-attachment { display:block; width:min(250px,100%); max-height:220px; margin:7px 0; border-radius:8px; object-fit:contain; background:#010f1f; }
.runtime-support-closed { margin-top:10px; padding:12px; border:1px solid #3c4a3f; border-radius:9px; color:#bacbbc; font-size:12px; text-align:center; }
.runtime-support-create { display: grid; gap: 12px; padding-top: 14px; }
.runtime-support-create>p { margin: 0; color: #bacbbc; font-size: 12px; line-height: 17px; }
.runtime-support-create label { display: grid; gap: 5px; color: #859587; font: 700 9px/12px "JetBrains Mono",monospace; }
.runtime-support-create textarea { min-height: 110px; resize: vertical; }
.runtime-support-create .runtime-support-form-error { min-height: 15px; color: #ffb4ab; }
.runtime-support-create-tools { display:flex; align-items:center; justify-content:space-between; gap:8px; }
.runtime-support-create-tools>span { display:flex; gap:4px; }
.runtime-support-create .runtime-support-create-tools button { flex:none; min-height:34px; }
.runtime-support-create-tools>label { display:flex; align-items:center; gap:5px; cursor:pointer; }
.runtime-support-create-tools input { max-width:190px; padding:5px; font-size:9px; }
.runtime-support-create>div { display: flex; gap: 8px; }
.runtime-support-create>div button { flex: 1; min-height: 42px; border: 1px solid #3c4a3f; border-radius: 8px; background: transparent; color: #bacbbc; font-weight: 800; cursor: pointer; }
.runtime-support-create>div button[type="submit"] { border: 0; color: #00391d; background: #00dc82; }
.runtime-support-create button:disabled,.runtime-support-reply button:disabled,.runtime-support-more:disabled { opacity: .5; cursor: wait; }
.runtime-support-unread-badge { display:grid; place-items:center; min-width:19px; height:19px; margin-left:auto; padding:0 5px; border-radius:999px; background:#ff5555; color:#fff; font:800 10px/1 "JetBrains Mono",monospace; }
.runtime-support-unread-badge[hidden] { display:none; }
.runtime-help-sheet { max-height:min(760px,calc(100dvh - 32px)); }
.runtime-help-search { display:grid; grid-template-columns:minmax(0,1fr) 42px; gap:7px; margin:14px 0 9px; }
.runtime-help-search input { width:100%; box-sizing:border-box; padding:11px; border:1px solid #3c4a3f; border-radius:8px; outline:0; background:#010f1f; color:#d4e4fa; }
.runtime-help-search button,.runtime-help-back { display:grid; place-items:center; border:0; border-radius:8px; background:#1c2b3c; color:#45f99c; cursor:pointer; }
.runtime-help-categories { display:flex; gap:6px; overflow-x:auto; padding-bottom:9px; }
.runtime-help-categories button { flex:0 0 auto; padding:6px 9px; border:1px solid #273647; border-radius:999px; background:#0d1c2d; color:#bacbbc; font:700 9px/12px "JetBrains Mono",monospace; cursor:pointer; }
.runtime-help-categories button.active { border-color:#45f99c; background:#063924; color:#45f99c; }
.runtime-help-list { display:grid; gap:8px; }
.runtime-help-row { display:grid; grid-template-columns:auto minmax(0,1fr) auto; align-items:center; gap:10px; width:100%; padding:12px; border:1px solid #273647; border-radius:10px; background:#0d1c2d; color:#d4e4fa; text-align:left; cursor:pointer; }
.runtime-help-row:hover { border-color:rgba(69,249,156,.45); }
.runtime-help-row>.material-symbols-outlined:first-child { color:#4cd7f6; }
.runtime-help-row div { min-width:0; }.runtime-help-row small,.runtime-help-row strong,.runtime-help-row p { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.runtime-help-row small { color:#45f99c; font:700 9px/12px "JetBrains Mono",monospace; }.runtime-help-row strong { margin-top:2px; font:650 13px/18px Geist,sans-serif; }.runtime-help-row p { margin:2px 0 0; color:#859587; font-size:10px; }
.runtime-help-row>.material-symbols-outlined:last-child { color:#859587; }.runtime-help-back { grid-template-columns:auto auto; gap:4px; margin:14px 0 10px; padding:7px 9px; font:700 9px/12px "JetBrains Mono",monospace; }
.runtime-help-article-head { padding:13px; border-radius:10px; background:#0d1c2d; }.runtime-help-article-head small { color:#45f99c; font:700 9px/12px "JetBrains Mono",monospace; }.runtime-help-article-head h3 { margin:5px 0; font-size:18px; }.runtime-help-article-head p { margin:0; color:#bacbbc; font-size:12px; line-height:17px; }
.runtime-help-content { padding:3px 3px 12px; color:#d4e4fa; font-size:13px; line-height:20px; }.runtime-help-content p { white-space:pre-wrap; }.runtime-help-support { display:flex; align-items:center; justify-content:center; gap:6px; width:100%; min-height:43px; margin:2px 0 12px; border:1px solid #45f99c; border-radius:8px; background:transparent; color:#45f99c; font:800 10px/14px Geist,sans-serif; cursor:pointer; }
.runtime-help-media { display:block; width:100%; max-height:360px; margin:12px 0; border:1px solid #273647; border-radius:10px; object-fit:contain; background:#010f1f; }
.runtime-help-step { margin:18px 0; padding:13px; border:1px solid #273647; border-radius:10px; background:#0d1c2d; }.runtime-help-step h4 { margin:0 0 6px; color:#d4e4fa; font:700 14px/19px Geist,sans-serif; }.runtime-help-step p { margin:0; color:#bacbbc; font-size:12px; line-height:17px; }.runtime-help-step .runtime-help-media { margin:12px 0 0; }
.runtime-risk-limit-banner { display:flex; align-items:center; gap:11px; margin:0 0 14px; padding:12px; border:1px solid #45f99c; border-radius:11px; background:#0d1c2d; }.runtime-risk-limit-banner.loss { border-color:#ff6f7b; }.runtime-risk-limit-banner>.material-symbols-outlined { display:grid; place-items:center; width:35px; height:35px; border-radius:10px; background:rgba(69,249,156,.12); color:#45f99c; }.runtime-risk-limit-banner.loss>.material-symbols-outlined { background:rgba(255,111,123,.12); color:#ff9aa0; }.runtime-risk-limit-banner strong,.runtime-risk-limit-banner small { display:block; }.runtime-risk-limit-banner strong { color:#d4e4fa; font:700 12px/17px Geist,sans-serif; }.runtime-risk-limit-banner small { margin-top:2px; color:#bacbbc; font:500 10px/14px Geist,sans-serif; }
.runtime-risk-limit-overlay { position:fixed; inset:0; z-index:110; display:grid; place-items:center; padding:20px; background:rgba(1,10,18,.74); backdrop-filter:blur(5px); }.runtime-risk-limit-modal { width:min(100%,390px); padding:22px; border:1px solid #45f99c; border-radius:24px; background:linear-gradient(180deg,#0b2031,#071727); box-shadow:0 0 34px rgba(69,249,156,.14),0 30px 75px rgba(0,0,0,.5); text-align:center; }.runtime-risk-limit-modal.loss { border-color:#ff6f7b; box-shadow:0 0 34px rgba(255,111,123,.14),0 30px 75px rgba(0,0,0,.5); }.runtime-risk-limit-modal>button:first-child { float:right; display:grid; place-items:center; width:40px; height:40px; border:0; border-radius:11px; background:#122b3e; color:#d4e4fa; cursor:pointer; }.runtime-risk-limit-icon { display:grid; place-items:center; width:78px; height:78px; margin:15px auto; border-radius:50%; background:rgba(69,249,156,.11); color:#45f99c; }.loss .runtime-risk-limit-icon { background:rgba(255,111,123,.11); color:#ff9aa0; }.runtime-risk-limit-icon span { font-size:38px; }.runtime-risk-limit-modal h2 { margin:0 0 9px; color:#45f99c; font-size:27px; }.runtime-risk-limit-modal.loss h2 { color:#ff9aa0; }.runtime-risk-limit-modal p { margin:0 auto 16px; color:#c5d2dc; font-size:15px; line-height:22px; }.runtime-risk-limit-amount { display:block; margin:12px 0 16px; padding:14px; border:1px solid rgba(69,249,156,.55); border-radius:16px; color:#45f99c; font:800 34px/42px "JetBrains Mono",monospace; }.loss .runtime-risk-limit-amount { border-color:rgba(255,111,123,.55); color:#ff9aa0; }.runtime-risk-limit-facts { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; margin-bottom:16px; }.runtime-risk-limit-facts div { min-height:88px; padding:10px 5px; border-radius:12px; background:#102b40; }.runtime-risk-limit-facts span,.runtime-risk-limit-facts b,.runtime-risk-limit-facts small { display:block; }.runtime-risk-limit-facts span { color:#4cd7f6; font-size:19px; }.runtime-risk-limit-facts b { margin-top:5px; color:#d4e4fa; font:700 10px/13px Geist,sans-serif; }.runtime-risk-limit-facts small { margin-top:3px; color:#859587; font:500 8px/11px Geist,sans-serif; }.runtime-risk-limit-primary,.runtime-risk-limit-secondary { width:100%; min-height:50px; border-radius:13px; font:800 14px/18px Geist,sans-serif; cursor:pointer; }.runtime-risk-limit-primary { border:0; background:#45f99c; color:#00391d; }.runtime-risk-limit-secondary { margin-top:9px; border:1px solid #7893a5; background:transparent; color:#d4e4fa; }
@media (min-width: 560px) { .runtime-support-overlay { align-items: center; } }
@media (max-width: 380px) { .runtime-support-ticket { grid-template-columns: auto minmax(0,1fr); } .runtime-support-ticket em { grid-column: 2; } }
.runtime-pwa-invite { position: fixed; z-index: 70; left: 50%; bottom: calc(88px + env(safe-area-inset-bottom,0px)); display: flex; align-items: stretch; width: min(250px,calc(100vw - 32px)); overflow: hidden; border: 1px solid rgba(69,249,156,.58); border-radius: 12px; background: #0d1c2d; box-shadow: 0 0 24px rgba(69,249,156,.3),0 10px 30px rgba(0,0,0,.45); transform: translateX(-50%); animation: runtime-pwa-pulse 1.8s ease-in-out infinite; }
.runtime-pwa-install { display: flex; flex: 1; align-items: center; justify-content: center; gap: 7px; min-height: 46px; border: 0; background: transparent; color: #45f99c; font: 750 12px/1 Geist,sans-serif; letter-spacing: .04em; cursor: pointer; }
.runtime-pwa-install .material-symbols-outlined { font-size: 19px; }
.runtime-pwa-dismiss { width: 42px; border: 0; border-left: 1px solid rgba(69,249,156,.18); background: #122131; color: #bacbbc; cursor: pointer; }
.runtime-pwa-dismiss .material-symbols-outlined { font-size: 18px; }
@keyframes runtime-pwa-pulse { 0%,100% { box-shadow: 0 0 14px rgba(69,249,156,.18),0 10px 30px rgba(0,0,0,.4); } 50% { box-shadow: 0 0 28px rgba(69,249,156,.5),0 10px 30px rgba(0,0,0,.5); } }
.runtime-pwa-settings-action { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 12px; width: 100%; padding: 12px 16px; border: 0; border-bottom: 1px solid rgba(39,54,71,.4); background: transparent; color: #d4e4fa; text-align: left; cursor: pointer; }
.runtime-pwa-settings-action:hover { background: #1c2b3c; }
.runtime-pwa-settings-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 8px; background: #0d1c2d; color: #45f99c; font-size: 20px; }
.runtime-pwa-settings-action strong,.runtime-pwa-settings-action small { display: block; }
.runtime-pwa-settings-action strong { font: 500 14px/20px Geist,sans-serif; }
.runtime-pwa-settings-action small { color: #bacbbc; font: 400 12px/16px Geist,sans-serif; }
.runtime-pwa-settings-action em { color: #45f99c; font: 600 11px/14px "JetBrains Mono",monospace; font-style: normal; }
.runtime-market-card { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 14px; border-radius: 12px; background: #0d1c2d; color: #d4e4fa; box-shadow: 0 1px 4px rgba(0,0,0,.18); }
.runtime-market-loading { display: grid; justify-items: center; gap: 5px; padding: 28px 16px; border-radius: 12px; background: #0d1c2d; color: #bacbbc; text-align: center; }
.runtime-market-loading .material-symbols-outlined { color: #45f99c; font-size: 25px; animation: spin 1s linear infinite; }
.runtime-market-loading strong { color: #d4e4fa; font: 600 13px/18px Geist,sans-serif; }
.runtime-market-loading small { font: 400 11px/16px Geist,sans-serif; }
.runtime-market-card[hidden] { display: none; }
.runtime-market-card.unavailable { opacity: .62; }
.runtime-market-favorite { border: 0; background: transparent; color: #859587; font-size: 21px; cursor: pointer; font-variation-settings: 'FILL' 0; }
.runtime-market-card.favorite .runtime-market-favorite { color: #4cd7f6; font-variation-settings: 'FILL' 1; }
.runtime-market-copy strong,.runtime-market-copy span { display: block; }
.runtime-market-copy strong { font: 650 17px/22px Geist,sans-serif; }
.runtime-market-copy span { margin-top: 3px; color: #45f99c; font: 500 11px/15px Geist,sans-serif; }
.runtime-market-card.unavailable .runtime-market-copy span { color: #859587; }
.runtime-market-metric { display: flex; flex-direction: column; align-items: flex-end; }
.runtime-market-metric small { color: #bacbbc; font: 600 9px/12px Geist,sans-serif; letter-spacing: .08em; }
.runtime-market-metric strong { color: #45f99c; font: 700 20px/24px "JetBrains Mono",monospace; }
.runtime-market-metric span { margin-top: 3px; color: #d4e4fa; font: 600 9px/12px Geist,sans-serif; }
.filter-pill.active { background: #45f99c !important; color: #00391d !important; font-weight: 700 !important; box-shadow: 0 2px 8px rgba(69,249,156,.18); }

.runtime-bottom-nav {
  position: fixed;
  inset: auto 0 0;
  z-index: 50;
  height: calc(80px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(5, 20, 36, .94);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .35);
  backdrop-filter: blur(16px);
}
.runtime-nav-inner { display: flex; align-items: center; justify-content: space-around; height: 80px; padding: 0 4px; }
.runtime-nav-inner a {
  position: relative;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 48px;
  gap: 3px;
  color: #bacbbc;
  text-decoration: none;
}
.runtime-nav-inner a > .material-symbols-outlined { font-size: 21px; }
.runtime-nav-inner small { font: 600 10px/1 Geist, sans-serif; }
.runtime-nav-inner a > i { width: 12px; height: 2px; margin-top: 1px; border-radius: 2px; background: transparent; }
.runtime-nav-inner a.active { color: #45f99c; }
.runtime-nav-inner a.active > i { background: #45f99c; }
.runtime-nav-operate { margin-top: -22px; }
.runtime-nav-operate b {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 11px;
  background: #45f99c;
  color: #00391d;
  box-shadow: 0 0 20px rgba(0, 220, 130, .4);
}
.runtime-nav-operate b .material-symbols-outlined { font-size: 23px; }
.runtime-nav-operate small { color: #d4e4fa; }
.runtime-nav-operate.active b { background: #45f99c; }
@media (max-width: 380px) {
  .runtime-brand-name { max-width: 82px; }
  .runtime-account-pill { padding-inline: 6px; }
  .runtime-header-inner { padding-inline: 10px; }
  .runtime-icon-button { width: 38px; }
}

@media (max-width: 420px) {
  body { overflow-x: hidden; }
  .runtime-mode-stack { padding-inline: 0; }
  .runtime-config-risk { grid-template-columns: 1fr; }
  .runtime-strategy-grid { grid-template-columns: 1fr; }
  .runtime-timeframe-grid { grid-template-columns: repeat(5,minmax(46px,1fr)); overflow-x: auto; }
}
:root .runtime-web-push { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; padding: 16px; border-top: 1px solid #223748; }
.runtime-stop-toggle{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:16px;padding:12px;border:1px solid #273647;border-radius:12px;background:#122538}.runtime-stop-toggle strong{font-size:13px}.runtime-stop-toggle small{display:block;margin-top:4px;color:#91a4b5;font-size:10px}.runtime-stop-toggle button{flex-shrink:0;padding:8px 12px;border:1px solid #335367;border-radius:20px;background:#1c2b3c;color:#b5c8d7;font-size:11px;cursor:pointer}.runtime-stop-toggle button[aria-checked="true"]{border-color:#00dc82;background:#00dc8220;color:#00dc82}.runtime-stop-toggle button:focus-visible{outline:2px solid #00e5ff;outline-offset:3px}.runtime-config-field select{width:100%;padding:12px;border:1px solid #335367;border-radius:10px;background:#051424;color:#edf5f8;margin-top:7px}.runtime-config-field:has(select){margin-bottom:14px}
:root .runtime-web-push > div { flex: 1; min-width: 170px; }
:root .runtime-web-push strong { font-size: 14px; }
:root .runtime-web-push p { font-size: 12px; color: #b5c8d7; margin-top: 4px; }
:root .runtime-web-push button { border: 1px solid #335367; border-radius: 8px; padding: 8px 12px; font-size: 12px; }
:root .runtime-web-push button[aria-checked="true"] { color: #00dc82; border-color: #00dc82; }
:root .runtime-web-push button:disabled { opacity: .55; cursor: default; }

/* Customer App final shell */
.runtime-customer-app{margin:0;background:#051424;color:#d4e4fa;font-family:Geist,system-ui,sans-serif}.runtime-page{box-sizing:border-box;width:min(100%,680px);min-height:100dvh;margin:0 auto;padding:80px 16px 112px}.runtime-eyebrow{color:#45f99c;font:700 10px/14px "JetBrains Mono",monospace;letter-spacing:.1em}.runtime-page-intro{padding:8px 2px 4px}.runtime-page-intro h1{margin:5px 0 4px;font-size:28px;line-height:34px}.runtime-page-intro p{margin:0;color:#9badad;font-size:13px;line-height:19px}
.runtime-balance-card,.runtime-home-status,.runtime-operate-summary,.runtime-config-preview,.runtime-operate-current,.runtime-compact-card,.runtime-account-identity,.runtime-account-grid article{box-sizing:border-box;margin-top:14px;border:1px solid #273647;border-radius:18px;background:linear-gradient(145deg,#102538,#0b1b2b);box-shadow:0 16px 36px rgba(1,10,20,.2)}.runtime-balance-card{padding:20px;background:radial-gradient(circle at 92% 0,rgba(69,249,156,.14),transparent 36%),linear-gradient(145deg,#102538,#0b1b2b)}.runtime-balance-card>.runtime-eyebrow,.runtime-section-title{display:flex;align-items:center;justify-content:space-between;gap:12px}.runtime-balance-card button,.runtime-section-title button{border:0;background:transparent;color:#45f99c;cursor:pointer}.runtime-balance-card>strong{display:block;margin:11px 0 6px;font:750 34px/42px "JetBrains Mono",monospace}.runtime-balance-foot{display:flex;align-items:center;gap:8px}.runtime-balance-foot span{color:#45f99c;font:650 13px/18px "JetBrains Mono",monospace}.runtime-balance-foot small{color:#9badad}
.runtime-quick-actions{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin-top:12px}.runtime-quick-actions button{display:grid;justify-items:center;gap:5px;min-height:70px;padding:10px 4px;border:1px solid #273647;border-radius:14px;background:#0d1c2d;color:#d4e4fa;cursor:pointer}.runtime-quick-actions span{color:#45f99c}.runtime-quick-actions small{font-size:11px}.runtime-home-status,.runtime-operate-summary,.runtime-config-preview,.runtime-operate-current,.runtime-compact-card{padding:16px}
.runtime-status-head,.runtime-status-head>div{display:flex;align-items:center;justify-content:space-between;gap:10px}.runtime-status-head>div{justify-content:flex-start}.runtime-status-head strong,.runtime-status-head small{display:block}.runtime-status-head small{margin-top:2px;color:#9badad;font-size:10px}.runtime-status-head>span:last-child{padding:5px 8px;border-radius:999px;background:rgba(69,249,156,.1);color:#45f99c;font:700 9px/12px "JetBrains Mono",monospace}.runtime-status-dot{width:9px;height:9px;border-radius:50%;background:#859587;box-shadow:0 0 10px currentColor}.is-active .runtime-status-dot{background:#45f99c}.is-loss .runtime-status-dot{background:#ff9aa0}.runtime-session-metrics{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:14px}.runtime-session-metrics>div,.runtime-config-preview-grid>div{min-width:0;padding:12px;border-radius:12px;background:#071727}.runtime-session-metrics small,.runtime-session-metrics strong,.runtime-config-preview-grid small,.runtime-config-preview-grid strong,.runtime-config-preview-grid span{display:block}.runtime-session-metrics small,.runtime-config-preview-grid small{color:#859587;font:650 9px/12px "JetBrains Mono",monospace}.runtime-session-metrics strong{margin-top:5px;font:700 15px/20px "JetBrains Mono",monospace}
.runtime-live-chart{display:block;width:100%;height:auto;margin:14px 0 6px;overflow:visible}.runtime-current-operation{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:10px;padding:12px;border-radius:12px;background:#071727}.runtime-current-operation>.material-symbols-outlined{color:#4cd7f6}.runtime-current-operation small,.runtime-current-operation strong{display:block}.runtime-current-operation small{color:#859587;font-size:9px}.runtime-current-operation>span:last-child{color:#45f99c;font:700 10px/14px "JetBrains Mono",monospace}.runtime-primary-cta,.runtime-secondary-cta{display:flex;align-items:center;justify-content:center;gap:9px;width:100%;min-height:54px;margin-top:14px;padding:12px 16px;border:0;border-radius:14px;background:#00dc82;color:#00210f;font:800 13px/18px Geist,sans-serif;cursor:pointer;transition:transform .16s ease,opacity .16s ease}.runtime-secondary-cta{border:1px solid #3c4a3f;background:#0d1c2d;color:#d4e4fa}.runtime-primary-cta:active,.runtime-secondary-cta:active{transform:scale(.985)}.runtime-primary-cta:disabled{opacity:.55;cursor:wait}
.runtime-section-title>span{color:#9badad;font:700 10px/14px "JetBrains Mono",monospace;letter-spacing:.08em}.runtime-section-title>b{color:#45f99c;font:700 9px/12px "JetBrains Mono",monospace}.runtime-compact-card p{margin:12px 0 0;color:#9badad;font-size:12px;line-height:18px}.runtime-last-session-row{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:12px}.runtime-last-session-row span,.runtime-last-session-row strong{display:block}.runtime-last-session-row span{color:#9badad;font-size:11px}.runtime-last-session-row strong{font-family:"JetBrains Mono",monospace}.runtime-config-preview-grid,.runtime-account-grid{display:grid;grid-template-columns:1fr 1fr;gap:9px}.runtime-config-preview-grid{margin-top:13px}.runtime-config-preview-grid strong{margin-top:5px;font-size:13px}.runtime-config-preview-grid span{margin-top:3px;overflow:hidden;color:#45f99c;font:600 9px/13px "JetBrains Mono",monospace;text-overflow:ellipsis;white-space:nowrap}.runtime-advanced-disclosure{margin-top:10px;padding:12px;border-radius:10px;background:#071727;color:#bacbbc;font-size:12px}.runtime-advanced-disclosure summary{color:#d4e4fa;cursor:pointer;font-weight:700}.runtime-advanced-disclosure p{margin:9px 0 0}.runtime-operate-current[hidden]{display:none}.runtime-operate-current>small,.runtime-operate-current>strong,.runtime-operate-current>span{display:block}.runtime-operate-current>small{color:#45f99c}.runtime-operate-current>strong{margin-top:7px}.runtime-operate-current>span{margin-top:3px;color:#4cd7f6}.runtime-progress{display:grid;grid-template-columns:1fr auto;gap:6px;margin-top:12px;color:#9badad;font-size:10px}.runtime-progress i{grid-column:1/-1;height:5px;overflow:hidden;border-radius:999px;background:#273647}.runtime-progress em{display:block;width:0;height:100%;background:#45f99c}.runtime-action-note{margin:8px 12px 0;color:#859587;font-size:11px;line-height:16px;text-align:center}
.runtime-result-state{display:grid;justify-items:center;padding:20px 8px 8px;text-align:center}.runtime-result-orb{display:grid;place-items:center;width:86px;height:86px;border:1px solid rgba(69,249,156,.45);border-radius:50%;background:radial-gradient(circle,rgba(69,249,156,.24),rgba(69,249,156,.02));color:#45f99c;box-shadow:0 0 38px rgba(69,249,156,.12)}.runtime-result-orb span{font-size:40px}.runtime-result-state.loss .runtime-result-orb{border-color:rgba(255,154,160,.45);color:#ff9aa0;background:radial-gradient(circle,rgba(255,154,160,.18),transparent)}.runtime-result-state h2{margin:14px 0 5px;font-size:22px}.runtime-result-state p{margin:0;color:#bacbbc;font-size:12px;line-height:18px}.runtime-result-state>strong{margin:13px 0;color:#45f99c;font:800 28px/36px "JetBrains Mono",monospace}.runtime-result-state.loss>strong{color:#ff9aa0}.runtime-result-progress{width:100%;margin-top:8px;padding:11px;border-radius:11px;background:#071727;color:#bacbbc;font-size:11px}.runtime-result-progress b{color:#45f99c}
.runtime-account-identity{display:flex;align-items:center;gap:13px;padding:16px}.runtime-avatar{display:grid;place-items:center;width:48px;height:48px;flex:none;border-radius:14px;background:rgba(69,249,156,.12);color:#45f99c}.runtime-account-identity strong,.runtime-account-identity span,.runtime-account-identity small{display:block}.runtime-account-identity span{margin-top:3px;color:#bacbbc;font-size:12px}.runtime-account-identity small{margin-top:3px;color:#859587;font:500 9px/12px "JetBrains Mono",monospace}.runtime-account-grid article{padding:14px}.runtime-account-grid small,.runtime-account-grid strong,.runtime-account-grid span{display:block}.runtime-account-grid small{color:#859587}.runtime-account-grid strong{margin-top:6px}.runtime-account-grid span{margin-top:3px;color:#45f99c;font-size:10px}.runtime-fact-list{margin:10px 0 0}.runtime-fact-list div{display:flex;justify-content:space-between;gap:16px;padding:10px 0;border-bottom:1px solid #273647}.runtime-fact-list dt{color:#859587}.runtime-fact-list dd{margin:0;overflow:hidden;text-align:right;text-overflow:ellipsis}.runtime-inline-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:12px}.runtime-inline-actions button{min-height:42px;border:1px solid #3c4a3f;border-radius:10px;background:#122131;color:#d4e4fa;font-weight:700;cursor:pointer}.runtime-inline-actions button:first-child{border:0;background:#00dc82;color:#00210f}
.runtime-critical-overlay{position:fixed;inset:0;z-index:2000;display:grid;place-items:center;padding:24px;background:rgba(1,10,18,.88);backdrop-filter:blur(8px)}.runtime-critical-card{width:min(100%,360px);padding:24px;border:1px solid rgba(69,249,156,.35);border-radius:20px;background:#0d1c2d;text-align:center;box-shadow:0 30px 80px rgba(0,0,0,.58)}.runtime-critical-spinner{width:42px;height:42px;margin:0 auto 15px;border:3px solid #273647;border-top-color:#45f99c;border-radius:50%;animation:runtime-spin .8s linear infinite}.runtime-critical-card strong,.runtime-critical-card span{display:block}.runtime-critical-card span{margin-top:6px;color:#9badad;font-size:12px}@keyframes runtime-spin{to{transform:rotate(360deg)}}html.runtime-navigating main{opacity:.55;transform:translateY(3px)}main{transition:opacity .14s ease,transform .14s ease}@media(min-width:720px){.runtime-page{padding-inline:24px}}@media(max-width:390px){.runtime-config-preview-grid,.runtime-account-grid{grid-template-columns:1fr}.runtime-inline-actions{grid-template-columns:1fr}}@media(prefers-reduced-motion:reduce){.runtime-critical-spinner{animation:none;border-color:#45f99c}main{transition:none}}
.runtime-settings-group{padding:8px 14px 4px}.runtime-settings-group>.runtime-section-title{padding:9px 2px}.runtime-setting-row{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:11px;width:100%;padding:13px 2px;border:0;border-top:1px solid #273647;background:transparent;color:#d4e4fa;text-align:left;cursor:pointer}.runtime-setting-row>.material-symbols-outlined:first-child{display:grid;place-items:center;width:36px;height:36px;border-radius:10px;background:#122131;color:#45f99c}.runtime-setting-row strong,.runtime-setting-row small{display:block}.runtime-setting-row strong{font-size:13px}.runtime-setting-row small{margin-top:3px;color:#859587;font-size:10px}.runtime-setting-row>b{color:#859587;font-size:18px}.runtime-setting-row>i{position:relative;width:42px;height:23px;border-radius:999px;background:#273647}.runtime-setting-row>i>span{position:absolute;top:3px;left:3px;width:17px;height:17px;border-radius:50%;background:#9badad;transition:transform .15s ease}.runtime-setting-row>i[data-active="true"]{background:#00dc82}.runtime-setting-row>i[data-active="true"]>span{background:#00210f;transform:translateX(19px)}
.runtime-visually-hidden{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.runtime-stop-win{position:relative;isolation:isolate;min-height:470px;overflow:hidden;padding:10px 8px 18px;background:radial-gradient(circle at 50% 32%,rgba(25,245,165,.12),transparent 36%)}
.runtime-stop-win-orb{position:absolute;z-index:-2;top:28px;left:50%;width:330px;height:330px;border:1px solid rgba(25,245,165,.12);border-radius:50%;box-shadow:inset 0 0 70px rgba(25,245,165,.08);transform:translateX(-50%)}
.runtime-stop-win-orb:before,.runtime-stop-win-orb:after{position:absolute;content:"";inset:32px;border:1px solid rgba(52,215,255,.08);border-radius:50%}.runtime-stop-win-orb:after{inset:72px}
.runtime-stop-win-detective{width:190px;height:190px;margin:-5px auto -6px;opacity:0;transform:translateY(24px) scale(.92);animation:runtime-detective-enter .8s cubic-bezier(.2,.8,.2,1) forwards}.runtime-stop-win-detective svg{display:block;width:100%;height:100%}
.runtime-stop-win-glass{transform-origin:145px 112px;animation:runtime-glass-scan 1.6s .45s ease-in-out both}.runtime-stop-win-eye{transform-origin:center;animation:runtime-eye-blink 3.4s 1.2s infinite}
.runtime-stop-win-chip{display:inline-flex;align-items:center;gap:7px;padding:7px 11px;border:1px solid rgba(25,245,165,.32);border-radius:999px;background:rgba(8,40,39,.78);color:#19f5a5;font-size:9px;font-weight:900;letter-spacing:.06em;opacity:0;transform:translateY(10px);animation:runtime-result-rise .45s 1.05s ease forwards}
.runtime-result-state.runtime-stop-win h2{margin:13px 0 12px;background:linear-gradient(90deg,#eafff7,#19f5a5,#fff,#19f5a5);background-size:220% 100%;background-clip:text;color:transparent;font-size:32px;line-height:1;font-weight:900;letter-spacing:-.03em;opacity:0;transform:scale(.8);animation:runtime-title-pop .65s 1.15s cubic-bezier(.2,.9,.2,1.25) forwards,runtime-result-shimmer 1.6s 1.7s linear infinite}
.runtime-stop-win-profit{width:min(100%,300px);padding:15px 12px;border:1px solid rgba(25,245,165,.48);border-radius:18px;background:linear-gradient(180deg,rgba(9,48,48,.94),rgba(6,28,37,.96));opacity:0;transform:translateY(18px) scale(.96);animation:runtime-result-card-in .55s 1.45s ease forwards,runtime-result-pulse 2.1s 2.1s ease-in-out infinite}.runtime-stop-win-profit small{display:block;color:#9bc1b4;font-size:9px;letter-spacing:.14em}.runtime-stop-win-profit strong{display:block;margin:3px 0 0;color:#19f5a5;font:900 35px/43px "JetBrains Mono",monospace;letter-spacing:-.05em}.runtime-result-state .runtime-stop-win-profit p{margin:4px 0 0;color:#b5c9d2;font-size:11px;line-height:16px}
.runtime-stop-win-case{margin-top:12px;color:#91aebb;font-size:10px;opacity:0;animation:runtime-result-rise .5s 1.75s forwards}.runtime-stop-win-scan{position:absolute;z-index:4;top:78px;left:5%;right:5%;height:2px;background:linear-gradient(90deg,transparent,#19f5a5,transparent);box-shadow:0 0 12px #19f5a5;opacity:0;animation:runtime-result-scan 1.1s .65s ease-out both}
.runtime-stop-win-confetti{position:absolute;inset:0;z-index:-1;overflow:hidden;pointer-events:none}.runtime-stop-win-confetti i{position:absolute;top:-20px;width:6px;height:11px;border-radius:2px;background:#19f5a5;opacity:0;animation:runtime-confetti-fall 2.8s 1.55s ease-in forwards}.runtime-stop-win-confetti i:nth-child(4n+2){background:#34d7ff;animation-delay:1.72s}.runtime-stop-win-confetti i:nth-child(4n+3){background:#ffd06a;animation-delay:1.86s}.runtime-stop-win-confetti i:nth-child(4n){background:#fff;animation-delay:2s}.runtime-stop-win-confetti i:nth-child(1){left:5%}.runtime-stop-win-confetti i:nth-child(2){left:11%}.runtime-stop-win-confetti i:nth-child(3){left:17%}.runtime-stop-win-confetti i:nth-child(4){left:23%}.runtime-stop-win-confetti i:nth-child(5){left:29%}.runtime-stop-win-confetti i:nth-child(6){left:35%}.runtime-stop-win-confetti i:nth-child(7){left:41%}.runtime-stop-win-confetti i:nth-child(8){left:47%}.runtime-stop-win-confetti i:nth-child(9){left:53%}.runtime-stop-win-confetti i:nth-child(10){left:59%}.runtime-stop-win-confetti i:nth-child(11){left:65%}.runtime-stop-win-confetti i:nth-child(12){left:71%}.runtime-stop-win-confetti i:nth-child(13){left:77%}.runtime-stop-win-confetti i:nth-child(14){left:83%}.runtime-stop-win-confetti i:nth-child(15){left:89%}.runtime-stop-win-confetti i:nth-child(16){left:95%}.runtime-stop-win-confetti i:nth-child(17){left:14%}.runtime-stop-win-confetti i:nth-child(18){left:38%}.runtime-stop-win-confetti i:nth-child(19){left:62%}.runtime-stop-win-confetti i:nth-child(20){left:86%}
@keyframes runtime-detective-enter{to{opacity:1;transform:none}}@keyframes runtime-glass-scan{0%{transform:rotate(-22deg) translate(-8px,8px)}50%{transform:rotate(14deg) translate(12px,-4px)}100%{transform:rotate(0)}}@keyframes runtime-eye-blink{0%,45%,49%,100%{transform:scaleY(1)}47%{transform:scaleY(.08)}}@keyframes runtime-result-rise{to{opacity:1;transform:none}}@keyframes runtime-title-pop{to{opacity:1;transform:scale(1)}}@keyframes runtime-result-shimmer{0%{background-position:-180% 0}100%{background-position:180% 0}}@keyframes runtime-result-card-in{to{opacity:1;transform:none;box-shadow:0 0 34px rgba(25,245,165,.12)}}@keyframes runtime-result-pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.025)}}@keyframes runtime-result-scan{0%{transform:translateY(-55px);opacity:0}15%{opacity:1}100%{transform:translateY(275px);opacity:0}}@keyframes runtime-confetti-fall{0%{transform:translateY(-30px) rotate(0);opacity:0}12%{opacity:1}100%{transform:translateY(470px) rotate(640deg);opacity:0}}
@media(max-width:390px){.runtime-stop-win{min-height:450px}.runtime-stop-win-detective{width:176px;height:176px}.runtime-stop-win-profit strong{font-size:31px}}
@media(prefers-reduced-motion:reduce){.runtime-stop-win-detective,.runtime-stop-win-chip,.runtime-result-state.runtime-stop-win h2,.runtime-stop-win-profit,.runtime-stop-win-case{animation:none;opacity:1;transform:none}.runtime-stop-win-glass,.runtime-stop-win-eye,.runtime-stop-win-scan,.runtime-stop-win-confetti i{animation:none}.runtime-stop-win-scan,.runtime-stop-win-confetti{display:none}}
.runtime-page{width:min(100%,430px);padding:76px 16px 112px}
.runtime-brand-name{display:block}.runtime-brand-name>b{margin-left:3px;color:#45f99c;font-size:10px}.runtime-brand-name>small{display:block;margin-top:3px;color:#859587;font:700 8px/1 "JetBrains Mono",monospace;letter-spacing:.12em}.runtime-nav-operate b{border-radius:14px}.runtime-nav-operate b .material-symbols-outlined{font-size:29px;font-weight:800}
.runtime-reference-home{display:flex;flex-direction:column;gap:10px}.runtime-reference-home>*{margin-top:0}
.runtime-reference-balance{padding:15px}.runtime-reference-balance>strong{margin:8px 0 7px;font-size:30px;line-height:36px}.runtime-reference-balance .runtime-balance-foot{display:grid;grid-template-columns:auto auto minmax(0,1fr) auto;align-items:center;column-gap:6px;min-height:22px}.runtime-reference-balance .runtime-balance-foot>.material-symbols-outlined{color:#45f99c;font-family:"Material Symbols Outlined";font-size:17px;font-style:normal;font-weight:400;line-height:1}.runtime-reference-balance .runtime-balance-foot>#daily-profit-display{color:#45f99c;font:700 12px/18px "JetBrains Mono",monospace;white-space:nowrap}.runtime-reference-balance .runtime-balance-foot>small{min-width:0;color:#9badad;font-size:10px;line-height:13px}.runtime-reference-balance .runtime-balance-foot em{display:flex;align-items:center;gap:3px;margin-left:auto;color:#859587;font-size:9px;font-style:normal;white-space:nowrap}.runtime-reference-balance .runtime-balance-foot em .material-symbols-outlined{color:#859587;font-family:"Material Symbols Outlined";font-size:13px;font-style:normal;font-weight:400;line-height:1}
.runtime-reference-actions{margin:0}.runtime-reference-actions button{min-height:76px;background:#0d1c2d}.runtime-reference-actions button>span{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;background:rgba(69,249,156,.1)}.runtime-reference-actions strong{font-size:10px}.runtime-reference-actions small{color:#45f99c;font:600 9px/11px "JetBrains Mono",monospace}
.runtime-reference-robot{margin:0;padding:15px}.runtime-reference-robot .runtime-status-head>div>div>small:first-child{color:#4cd7f6;font:700 9px/12px "JetBrains Mono",monospace;letter-spacing:.08em}.runtime-reference-robot .runtime-status-head strong{font-size:17px}.runtime-reference-copy{margin:12px 0;color:#bacbbc;font-size:12px;line-height:18px}.runtime-reference-facts{display:grid;gap:6px}.runtime-reference-facts>div{display:flex;align-items:center;gap:7px;padding:8px;border-radius:7px;background:#071727;color:#bacbbc;font-size:10px}.runtime-reference-facts .material-symbols-outlined{color:#45f99c;font-size:16px}.runtime-reference-facts strong{color:#45f99c}.runtime-reference-robot .runtime-primary-cta{margin-top:12px;min-height:48px;border-radius:10px}
.runtime-live-summary{display:grid;grid-template-columns:1.15fr .85fr;margin-top:12px;border-radius:8px;background:#071727}.runtime-live-summary>div{padding:9px}.runtime-live-summary>div+div{border-left:1px solid #273647}.runtime-live-summary small,.runtime-live-summary strong{display:block}.runtime-live-summary small{color:#859587;font:700 8px/11px "JetBrains Mono",monospace}.runtime-live-summary strong{margin-top:3px;color:#45f99c;font:800 21px/26px "JetBrains Mono",monospace}.runtime-live-summary>div+div strong{color:#4cd7f6;font-size:14px}.runtime-live-market-head{display:flex;align-items:center;justify-content:space-between;margin-top:8px;color:#bacbbc;font:700 9px/12px "JetBrains Mono",monospace}.runtime-live-market-head strong{color:#45f99c}.runtime-reference-robot .runtime-live-chart{margin:5px 0;height:126px;border-radius:8px;background:#061622}.runtime-reference-progress{padding:9px;border-radius:8px;background:#071727}.runtime-reference-progress>div{display:flex;justify-content:space-between;color:#bacbbc;font-size:9px}.runtime-reference-progress>div strong{color:#45f99c}.runtime-reference-progress>i{display:block;height:7px;margin:7px 0;border-radius:999px;background:#273647;overflow:hidden}.runtime-reference-progress>i em{display:block;width:0;height:100%;background:#45f99c}.runtime-reference-progress>small{color:#859587;font-size:9px}.runtime-pause-cta{display:flex;align-items:center;justify-content:center;gap:6px;width:100%;min-height:43px;margin-top:9px;border:0;border-radius:8px;background:#273647;color:#d4e4fa;font-weight:700;cursor:pointer}.runtime-reference-last{margin:0;padding:13px}.runtime-reference-last .runtime-section-title>span{display:flex;align-items:center;gap:5px}.runtime-reference-last .runtime-section-title .material-symbols-outlined{color:#45f99c;font-size:15px}
.runtime-reference-intro{padding:4px 1px}.runtime-reference-intro>span,.runtime-reference-section-head>span{display:flex;align-items:center;gap:4px;color:#45f99c;font:700 9px/12px "JetBrains Mono",monospace;letter-spacing:.06em}.runtime-reference-intro>span .material-symbols-outlined,.runtime-reference-section-head .material-symbols-outlined{font-size:14px}.runtime-reference-intro h1{margin:5px 0 3px;font-size:24px}.runtime-reference-intro p{margin:0;color:#bacbbc;font-size:11px}.runtime-reference-operate{display:flex;flex-direction:column;gap:16px}.runtime-reference-section{display:flex;flex-direction:column;gap:7px}.runtime-reference-section-head{display:flex;align-items:center;justify-content:space-between;padding:0 3px}.runtime-reference-section-head>b{color:#45f99c;font:600 8px/11px "JetBrains Mono",monospace}.runtime-profile-list{display:grid;gap:7px}.runtime-profile-list>button{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:start;gap:9px;width:100%;padding:12px;border:1px solid transparent;border-radius:10px;background:#0d1c2d;color:#d4e4fa;text-align:left;cursor:pointer}.runtime-profile-list>button.active{border-color:rgba(69,249,156,.5);background:linear-gradient(120deg,rgba(69,249,156,.1),#0d1c2d);box-shadow:0 0 20px rgba(69,249,156,.08)}.runtime-profile-list>button>.material-symbols-outlined:first-child{display:grid;place-items:center;width:32px;height:32px;border-radius:8px;background:rgba(69,249,156,.1);color:#45f99c}.runtime-profile-list strong,.runtime-profile-list small,.runtime-profile-list em{display:block}.runtime-profile-list strong{font-size:13px}.runtime-profile-list small{margin-top:2px;color:#bacbbc;font-size:9px;line-height:13px}.runtime-profile-list em{margin-top:3px;color:#45f99c;font:600 8px/11px "JetBrains Mono",monospace;font-style:normal}.runtime-profile-list>button>.material-symbols-outlined:last-child{color:#45f99c;font-size:17px}.runtime-choice-dot{width:13px;height:13px;margin:3px;border-radius:50%;background:#273647}
.runtime-parameter-card{overflow:hidden;border-radius:10px;background:#0d1c2d}.runtime-parameter-card>div{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:8px;padding:10px;border-bottom:1px solid rgba(39,54,71,.7)}.runtime-parameter-card .material-symbols-outlined{color:#45f99c;font-size:18px}.runtime-parameter-card .loss{color:#ff9aa0}.runtime-parameter-card p{margin:0}.runtime-parameter-card small,.runtime-parameter-card strong{display:block}.runtime-parameter-card small{color:#859587;font:700 8px/11px "JetBrains Mono",monospace}.runtime-parameter-card strong{margin-top:2px;font-size:11px}.runtime-parameter-card button{padding:5px 8px;border:0;border-radius:5px;background:#273647;color:#d4e4fa;font-size:9px;cursor:pointer}.runtime-parameter-card>div.split{grid-template-columns:1fr 1fr}.runtime-parameter-card>div.split p+P{border-left:1px solid #273647;padding-left:10px}.runtime-parameter-card>div.split strong{color:#4cd7f6}.runtime-reference-operate .runtime-advanced-disclosure{margin:0}.runtime-reference-operate .runtime-advanced-disclosure summary{display:flex;align-items:center;justify-content:space-between}.runtime-reference-operate .runtime-advanced-disclosure summary>span:first-child{display:grid;grid-template-columns:auto 1fr;gap:1px 7px}.runtime-reference-operate .runtime-advanced-disclosure summary>span:first-child>.material-symbols-outlined{grid-row:1/3;color:#4cd7f6}.runtime-reference-operate .runtime-advanced-disclosure small{display:block;color:#859587;font-size:8px}.runtime-operate-launch button{display:flex;align-items:center;justify-content:center;gap:7px;width:100%;min-height:54px;border:0;border-radius:10px;background:#45f99c;color:#00391d;font-weight:900;box-shadow:0 0 22px rgba(69,249,156,.25);cursor:pointer}.runtime-operate-launch button:disabled{opacity:.55}.runtime-operate-launch p{margin:7px 12px 0;color:#859587;font-size:9px;line-height:13px;text-align:center}
.runtime-timeframe-direct{margin-top:7px;padding:10px;border-radius:10px;background:#0d1c2d}.runtime-timeframe-direct>small{display:block;margin-bottom:8px;color:#859587;font:700 8px/11px "JetBrains Mono",monospace}.runtime-timeframe-direct>div{display:grid;grid-template-columns:repeat(5,1fr);gap:6px}.runtime-timeframe-direct button{min-height:34px;border:1px solid #273647;border-radius:7px;background:#071727;color:#bacbbc;font:700 10px "JetBrains Mono",monospace;cursor:pointer}.runtime-timeframe-direct button.active{border-color:#45f99c;background:rgba(69,249,156,.12);color:#45f99c}.runtime-timeframe-direct button:disabled{opacity:.55}
.runtime-session-plan{padding:11px;border-radius:10px;background:#071727}.runtime-session-plan>div:first-child{display:flex;align-items:center;justify-content:space-between;gap:8px}.runtime-session-plan small{color:#859587;font:700 8px/11px "JetBrains Mono",monospace}.runtime-session-plan strong{color:#45f99c;font-size:10px}.runtime-session-plan>p{margin:7px 0 0;color:#859587;font-size:9px;line-height:13px}.runtime-session-checkpoints{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:7px;margin:9px 0}.runtime-session-checkpoints>span{display:grid;place-items:center;align-content:center;gap:2px;min-width:0;min-height:52px;padding:3px;border:1px solid rgba(133,149,135,.12);border-radius:7px;background:#0d1c2d;color:#64788a;box-sizing:border-box}.runtime-session-checkpoints b,.runtime-session-checkpoints small{display:block}.runtime-session-checkpoints b{font-size:15px;line-height:17px}.runtime-session-checkpoints small{max-width:100%;font-size:7px;line-height:10px;text-align:center;white-space:nowrap}.runtime-session-checkpoints>span.complete{border-color:rgba(69,249,156,.3);background:rgba(69,249,156,.16);color:#45f99c}.runtime-session-checkpoints>span.current{border-color:rgba(76,215,246,.38);background:rgba(76,215,246,.12);color:#4cd7f6}.runtime-reference-progress .runtime-session-checkpoints{margin-block:9px}.runtime-reference-progress .runtime-session-checkpoints+ i{margin-top:0}
.runtime-reference-progress>.runtime-session-checkpoints{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));margin-block:9px}.runtime-reference-progress>.runtime-progress-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px 6px;margin-top:9px;color:#bacbbc}.runtime-reference-progress>.runtime-progress-facts>span:nth-child(4),.runtime-reference-progress>.runtime-progress-facts>span:nth-child(5){grid-column:span 1}.runtime-progress-facts>span{display:grid;gap:2px;min-width:0}.runtime-progress-facts em{color:#859587;font:600 7px/10px "JetBrains Mono",monospace;font-style:normal;text-transform:uppercase}.runtime-progress-facts b{overflow:hidden;color:#d4e4fa;font:700 9px/13px "JetBrains Mono",monospace;text-overflow:ellipsis;white-space:nowrap}.runtime-progress-facts>.runtime-progress-session{grid-column:1/-1;display:block;padding-top:6px;border-top:1px solid rgba(39,54,71,.65);color:#859587;font:600 8px/12px "JetBrains Mono",monospace}.runtime-reference-robot.is-active .runtime-primary-cta{background:#273647;color:#d4e4fa}.runtime-reference-robot.is-active .runtime-primary-cta .material-symbols-outlined{color:#4cd7f6}.runtime-primary-cta[hidden]{display:none!important}
.runtime-stage-plan-overlay{position:fixed;inset:0;z-index:120;display:grid;place-items:center;padding:18px;background:rgba(1,10,16,.82);backdrop-filter:blur(7px);opacity:0;transition:opacity .28s ease}.runtime-stage-plan-overlay.show{opacity:1}.runtime-stage-plan-modal{width:min(342px,100%);padding:20px 18px;border:1px solid rgba(69,249,156,.44);border-radius:24px;background:radial-gradient(circle at 50% 0,rgba(69,249,156,.14),transparent 38%),linear-gradient(180deg,#0b2534,#071a26);box-shadow:0 24px 80px rgba(0,0,0,.5),0 0 44px rgba(69,249,156,.1);text-align:center;transform:scale(.88) translateY(16px);transition:transform .45s cubic-bezier(.2,.95,.25,1.18)}.runtime-stage-plan-overlay.show .runtime-stage-plan-modal{transform:none}.runtime-stage-detective{position:relative;width:112px;height:112px;margin:0 auto 8px}.runtime-stage-detective img{width:86px;height:86px;margin-top:10px;border-radius:24px;filter:drop-shadow(0 0 18px rgba(69,249,156,.3));animation:runtime-stage-float 1.5s ease-in-out infinite}.runtime-stage-detective .material-symbols-outlined{position:absolute;right:0;bottom:0;color:#ffd36d;font-size:48px;animation:runtime-stage-scan 1.2s ease-in-out}.runtime-stage-plan-modal>small{display:inline-flex;padding:6px 9px;border:1px solid rgba(76,215,246,.25);border-radius:999px;color:#4cd7f6;font:900 9px/12px "JetBrains Mono",monospace;letter-spacing:.08em}.runtime-stage-plan-modal h2{margin:11px 0 0;color:#eff7fb;font-size:25px;line-height:1.08}.runtime-stage-plan-modal h2 strong{color:#45f99c}.runtime-stage-plan-modal p{margin:9px auto;color:#a9bec9;font-size:11px;line-height:16px}.runtime-stage-plan-modal>div:last-child{display:flex;flex-wrap:wrap;justify-content:center;gap:6px;margin-top:14px}.runtime-stage-plan-modal i{width:31px;height:31px;display:grid;place-items:center;border-radius:9px;background:#45f99c;color:#00291e;font:900 11px/1 "JetBrains Mono",monospace;font-style:normal;animation:runtime-stage-pop .35s both}@keyframes runtime-stage-float{50%{transform:translateY(-5px)}}@keyframes runtime-stage-scan{0%{transform:rotate(-15deg) translateX(-8px)}100%{transform:none}}@keyframes runtime-stage-pop{from{opacity:0;transform:translateY(10px) scale(.75)}}@media(prefers-reduced-motion:reduce){.runtime-stage-detective img,.runtime-stage-detective .material-symbols-outlined,.runtime-stage-plan-modal i{animation:none}}
.runtime-focused-config [data-focused-content]{margin-top:12px}.runtime-focused-config .runtime-config-description{margin-top:10px}.runtime-reference-operate{gap:12px}.runtime-reference-operate .runtime-profile-list{gap:6px}.runtime-reference-operate .runtime-profile-list>button{padding:10px}.runtime-reference-operate .runtime-reference-intro h1{font-size:22px}
.runtime-reference-settings{display:flex;flex-direction:column;gap:15px}.runtime-settings-profile{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:9px;padding:10px;border-radius:10px;background:#0d1c2d}.runtime-settings-profile .runtime-avatar{width:42px;height:42px}.runtime-settings-profile strong,.runtime-settings-profile span{display:block}.runtime-settings-profile strong{font-size:13px}.runtime-settings-profile span{color:#859587;font:500 9px/12px "JetBrains Mono",monospace}.runtime-settings-profile em,.runtime-channel-list em,.runtime-settings-list em{padding:4px 6px;border-radius:999px;background:rgba(69,249,156,.1);color:#45f99c;font:700 8px/10px "JetBrains Mono",monospace;font-style:normal}.runtime-reference-settings .runtime-page-intro{padding:0}.runtime-reference-settings .runtime-page-intro h1{font-size:23px}.runtime-settings-list,.runtime-channel-list{overflow:hidden;border-radius:10px;background:#0d1c2d}.runtime-reference-settings .runtime-setting-row{min-height:58px;padding:10px;border-top-color:rgba(39,54,71,.65)}.runtime-reference-settings .runtime-setting-row:first-child{border-top:0}.runtime-reference-settings .runtime-setting-row>span:first-child:not(.material-symbols-outlined){padding-left:2px}
.runtime-reference-settings .runtime-setting-row:has(>span:first-child:not(.material-symbols-outlined)){grid-template-columns:minmax(0,1fr) auto}.runtime-reference-settings .runtime-setting-row strong{font-size:12px}.runtime-reference-settings .runtime-setting-row small{font-size:9px}.runtime-channel-list article,.runtime-channel-list>button{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:9px;width:100%;padding:11px;border:0;border-top:1px solid rgba(39,54,71,.65);background:transparent;color:#d4e4fa;text-align:left}.runtime-channel-list article:first-child{border-top:0}.runtime-channel-list>.material-symbols-outlined,.runtime-channel-list article>.material-symbols-outlined,.runtime-channel-list button>.material-symbols-outlined{color:#4cd7f6}.runtime-channel-list strong,.runtime-channel-list small{display:block}.runtime-channel-list strong{font-size:12px}.runtime-channel-list small{margin-top:2px;color:#859587;font-size:9px}.runtime-channel-list b{color:#4cd7f6;font-size:9px}.runtime-settings-ecosystem{margin-top:7px;border-radius:10px}.runtime-settings-ecosystem>span{display:none}.runtime-settings-footer{padding:4px;color:#859587;font:500 8px/13px "JetBrains Mono",monospace;text-align:center}.runtime-settings-footer span{color:#45f99c}
/* Canonical daily-goal scene: nova tela/meta--concluida.html. */
.runtime-guide-launcher{position:fixed;right:16px;bottom:88px;z-index:70;max-width:calc(100% - 32px);padding:11px 16px;border:1px solid #00dc82;border-radius:24px;background:#0d1c2d;color:#00dc82;font-size:12px;box-shadow:0 5px 24px #0006}.runtime-guide-dialog{width:min(400px,calc(100% - 24px));max-height:80dvh;overflow:auto;background:#0d1c2d;color:#edf5f8;border:1px solid #23475c;border-radius:20px;padding:20px}.runtime-guide-dialog::backdrop{background:#020b1499}.runtime-guide-dialog header{display:flex;justify-content:space-between;align-items:center}.runtime-guide-dialog small{color:#7f9cae;font-size:11px}.runtime-guide-bubble{margin:18px 0;padding:16px;border-radius:14px;background:#122538;font-size:13px;line-height:1.6}.runtime-guide-options,.runtime-guide-dialog [data-guide-next]{display:grid;gap:8px}.runtime-guide-dialog [hidden]{display:none!important}.runtime-guide-dialog button{padding:11px;border-radius:9px;border:1px solid #23475c;background:#122538;color:#edf5f8;text-align:left}.runtime-guide-dialog [data-real]{background:#00dc82;color:#00281d;font-weight:700}.runtime-guide-note{color:#7f9cae;font-size:10px;line-height:1.5;margin:16px 0 0}.runtime-guide-dialog [role=alert]{color:#ffb7bf;font-size:12px}
.runtime-notification-invitation{width:min(440px,calc(100% - 32px));padding:24px;border:1px solid #23475c;border-radius:20px;background:#0d1c2d;color:#edf5f8;box-shadow:0 20px 80px #0008}.runtime-notification-invitation::backdrop{background:#020b14b8}.runtime-notification-invitation h2{margin:0 0 12px;font-size:21px}.runtime-notification-invitation p{margin:10px 0;color:#a9bec9;font-size:13px;line-height:1.6}.runtime-notification-invitation>div{display:flex;justify-content:flex-end;gap:10px;margin-top:18px;flex-wrap:wrap}.runtime-notification-invitation button{padding:11px 15px;border-radius:10px;background:#122538;color:#edf5f8;border:1px solid #23475c}.runtime-notification-invitation [data-activate]{background:#00dc82;color:#00281d;font-weight:700}.runtime-notification-invitation button:disabled{opacity:.5}.runtime-notification-invitation [role=alert]{color:#ffb7bf}
.runtime-daily-goal{position:relative;min-height:590px;overflow:hidden;padding:14px 10px 20px;text-align:center;background:radial-gradient(circle at 50% 12%,rgba(25,245,165,.13),transparent 38%),linear-gradient(180deg,#061a28,#03121d)}
.runtime-daily-goal-orb{position:absolute;left:50%;top:74px;width:360px;height:360px;transform:translateX(-50%);border:1px solid rgba(25,245,165,.12);border-radius:50%;box-shadow:inset 0 0 70px rgba(25,245,165,.08)}.runtime-daily-goal-orb::before,.runtime-daily-goal-orb::after{position:absolute;content:"";border:1px solid rgba(52,215,255,.08);border-radius:50%;inset:34px}.runtime-daily-goal-orb::after{inset:78px}
.runtime-daily-goal-detective{position:relative;z-index:2;width:184px;height:184px;margin:0 auto -14px;animation:runtime-goal-enter .8s cubic-bezier(.2,.8,.2,1) both}.runtime-daily-goal-detective svg{width:100%;height:100%}.runtime-daily-goal-arm{transform-origin:116px 144px;animation:runtime-goal-pull 2.2s .55s ease-in-out both}
.runtime-daily-goals{position:relative;z-index:3;display:grid;grid-template-columns:repeat(3,minmax(0,76px));justify-content:center;gap:9px;width:100%}.runtime-daily-goal-item{display:grid;place-items:center;width:100%;aspect-ratio:1;border:1px solid rgba(25,245,165,.65);border-radius:15px;background:linear-gradient(180deg,#0d3040,#071d2a);box-shadow:0 0 20px rgba(25,245,165,.12);opacity:0;transform:translateY(18px) scale(.7);animation:runtime-goal-pop .48s 1.05s cubic-bezier(.2,.9,.2,1.25) forwards}.runtime-daily-goal-item:nth-child(2){animation-delay:1.35s}.runtime-daily-goal-item:nth-child(3){animation-delay:1.65s}.runtime-daily-goal-item:nth-child(n+4){animation-delay:1.85s}.runtime-daily-goal-item b{display:block;color:#19f5a5;font-size:22px}.runtime-daily-goal-item small{display:block;color:#9eb4bf;font-size:7px}
.runtime-daily-goal h2{position:relative;z-index:3;margin:10px 0 0;font-size:25px;line-height:1;opacity:0;transform:scale(.84);animation:runtime-goal-title .65s 1.75s cubic-bezier(.2,.9,.2,1.2) forwards}.runtime-daily-goal h2 span{color:transparent;background:linear-gradient(90deg,#fff,#ffd06a,#19f5a5,#fff);background-size:240% 100%;background-clip:text;-webkit-background-clip:text;animation:runtime-goal-shimmer 1.8s 2.2s linear infinite}.runtime-daily-goal-choice{position:relative;z-index:3;width:88%;margin:8px auto 0;padding:7px 9px;border:1px solid rgba(69,249,156,.14);border-radius:10px;background:rgba(13,28,45,.72);color:#a9bec9;font-size:9px;line-height:13px}
.runtime-daily-goal-treasure{position:relative;z-index:3;width:92%;margin:10px auto 0;padding:14px;border:1px solid rgba(255,208,106,.56);border-radius:18px;background:linear-gradient(180deg,rgba(49,38,14,.95),rgba(8,30,35,.96));opacity:0;transform:translateY(18px);animation:runtime-goal-card .55s 2s ease forwards,runtime-goal-pulse 2.2s 2.6s ease-in-out infinite}.runtime-daily-goal-treasure small,.runtime-daily-goal-treasure strong,.runtime-daily-goal-treasure em{display:block}.runtime-daily-goal-treasure small{color:#d6c28d;font-size:8px;letter-spacing:.14em}.runtime-daily-goal-treasure strong{margin-top:4px;color:#ffd06a;font-size:32px;letter-spacing:-.05em}.runtime-daily-goal-treasure em{width:max-content;max-width:100%;margin:6px auto 0;padding:5px 9px;border:1px solid rgba(25,245,165,.35);border-radius:999px;color:#19f5a5;font-size:8px;font-style:normal;font-weight:900}
.runtime-daily-goal-real{position:relative;z-index:3;width:92%;min-height:52px;margin:13px auto 0;border:1px solid rgba(255,208,106,.72);border-radius:16px;background:linear-gradient(180deg,#ffd873,#e6a936);box-shadow:0 0 22px rgba(255,208,106,.24);color:#302006;font-weight:900;letter-spacing:.03em;cursor:pointer;opacity:0;transform:translateY(18px);animation:runtime-goal-card .55s 2.25s ease forwards,runtime-goal-pulse 2.2s 2.8s ease-in-out infinite}.runtime-daily-goal-real:hover{filter:brightness(1.08)}
.runtime-daily-goal-stars{position:absolute;z-index:4;inset:0;pointer-events:none}.runtime-daily-goal-stars i{position:absolute;font-size:17px;font-style:normal;opacity:0;animation:runtime-goal-star 1.1s 1.55s ease-out forwards}.runtime-daily-goal-stars i:nth-child(1){left:12%;top:33%}.runtime-daily-goal-stars i:nth-child(2){left:78%;top:28%;animation-delay:1.68s}.runtime-daily-goal-stars i:nth-child(3){left:18%;top:64%;animation-delay:1.81s}.runtime-daily-goal-stars i:nth-child(4){left:84%;top:62%;animation-delay:1.94s}.runtime-daily-goal-stars i:nth-child(5){left:48%;top:19%;animation-delay:2.07s}.runtime-daily-goal-stars i:nth-child(6){left:61%;top:46%;animation-delay:2.2s}
@keyframes runtime-goal-enter{from{opacity:0;transform:scale(.88)}to{opacity:1;transform:scale(1)}}@keyframes runtime-goal-pull{0%{transform:rotate(-16deg)}40%{transform:rotate(11deg)}70%{transform:rotate(-5deg)}100%{transform:rotate(0)}}@keyframes runtime-goal-pop{to{opacity:1;transform:none}}@keyframes runtime-goal-title{to{opacity:1;transform:scale(1)}}@keyframes runtime-goal-shimmer{from{background-position:-180% 0}to{background-position:180% 0}}@keyframes runtime-goal-card{to{opacity:1;transform:none}}@keyframes runtime-goal-pulse{50%{transform:scale(1.03)}}@keyframes runtime-goal-star{0%{opacity:0;transform:scale(.2)}35%{opacity:1}100%{opacity:0;transform:scale(1.3) translateY(-40px) rotate(40deg)}}
@media(prefers-reduced-motion:reduce){.runtime-daily-goal-detective,.runtime-daily-goal-arm,.runtime-daily-goal-item,.runtime-daily-goal h2,.runtime-daily-goal-treasure,.runtime-daily-goal-real,.runtime-daily-goal-stars i{animation:none;opacity:1;transform:none}}
@media(max-width:360px){.runtime-page{padding-inline:10px}.runtime-reference-actions strong{font-size:9px}.runtime-brand-name{max-width:68px}.runtime-account-pill strong{font-size:8px}.runtime-daily-goal h2{font-size:23px}}
