/* Gachi stylesheet: dashboard.css. Din Dag: header, bottom nav, overview, reminder, day-complete state. */
/* Extracted verbatim from index.html. Load order is significant; see styles/README.md. */

/* ------------------------------ */
/* Invite / Dashboard / Detail Views */
/* ------------------------------ */
.status-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(111, 224, 192, 0.16);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.dashboard-screen {
  position: relative;
  gap: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-bottom: 112px;
}

.screen.has-bottom-nav {
  padding-bottom: var(--bottom-nav-scroll-reserve);
}

.dashboard-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.dashboard-header .logo-text {
  font-size: clamp(1.55rem, 5vw, 1.9rem);
  line-height: 1.1;
}

.dashboard-header-top {
  display: none;
}

.dashboard-bottom-nav {
  --bottom-nav-active-arc-size: 42px;
  --bottom-nav-active-arc-height: 12px;
  --bottom-nav-active-line-top: calc(var(--bottom-nav-top-padding) + 4px);
  --bottom-nav-rail-color: rgba(255, 248, 226, 0.56);
  --bottom-nav-rail-width: 2px;
  position: fixed;
  left: 50%;
  right: auto;
  bottom: var(--viewport-bottom-offset);
  width: min(calc(100% - (var(--shell-gutter) * 2) - var(--safe-left) - var(--safe-right)), var(--app-max-width));
  transform: translateX(-50%) translateY(var(--bottom-nav-y-offset));
  z-index: 35;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: var(--bottom-nav-top-padding);
  padding-left: calc(var(--screen-padding-x) + var(--safe-left));
  padding-right: calc(var(--screen-padding-x) + var(--safe-right));
  padding-bottom: max(10px, calc(var(--safe-bottom) + var(--native-bottom-reserve) + 8px));
  background:
    linear-gradient(
      180deg,
      transparent 0,
      transparent var(--bottom-nav-active-line-top),
      var(--surface-solid) var(--bottom-nav-active-line-top),
      var(--surface-solid) 100%
    );
  box-shadow: none;
  transition: opacity 160ms ease, transform 180ms ease, visibility 0ms linear;
}

.dashboard-bottom-nav::after {
  content: "";
  position: absolute;
  top: var(--bottom-nav-active-line-top);
  left: 50%;
  right: auto;
  width: 100vw;
  max-width: 100vw;
  height: var(--bottom-nav-rail-width);
  background: var(--bottom-nav-rail-color);
  pointer-events: none;
  transform: translateX(-50%);
}

.dashboard-bottom-nav-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: var(--bottom-nav-button-height);
  padding: 6px 8px 5px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 248, 226, 0.66);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.1;
  text-align: center;
  text-wrap: balance;
  cursor: pointer;
  box-shadow: none;
  transition: transform 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.dashboard-bottom-nav-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 160ms ease, color 160ms ease;
}

.dashboard-bottom-nav-label {
  display: block;
}

.dashboard-bottom-nav-button:hover,
.dashboard-bottom-nav-button:focus-visible {
  color: rgba(255, 248, 226, 0.82);
  background: rgba(163, 227, 211, 0.05);
}

.dashboard-bottom-nav-button.is-active {
  color: var(--accent);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.dashboard-bottom-nav-button.is-active::before {
  content: "";
  position: absolute;
  top: calc(4px - var(--bottom-nav-active-arc-height));
  left: 50%;
  width: var(--bottom-nav-active-arc-size);
  height: var(--bottom-nav-active-arc-height);
  border: var(--bottom-nav-rail-width) solid var(--bottom-nav-rail-color);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: var(--surface-solid);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.dashboard-bottom-nav-button.is-active::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: calc(var(--bottom-nav-active-arc-size) + 8px);
  height: calc(var(--bottom-nav-rail-width) + 2px);
  background: var(--surface-solid);
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.dashboard-bottom-nav-button.is-active .dashboard-bottom-nav-icon {
  transform: scale(1.2);
}

.dashboard-bottom-nav-button.is-active .dashboard-bottom-nav-label {
  font-size: 0.8rem;
  font-weight: 700;
}

.dashboard-bottom-nav-button.is-active:hover,
.dashboard-bottom-nav-button.is-active:focus-visible {
  transform: none;
  color: var(--accent);
  background: transparent;
  box-shadow: none;
}

.dashboard-bottom-nav-unread {
  position: absolute;
  top: 9px;
  left: calc(50% + 22px);
  z-index: 2;
  display: none;
  width: 15px;
  height: 15px;
  color: var(--accent);
  fill: var(--surface-solid);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(4, 14, 18, 0.62));
  transform: translateX(-50%);
  transform-origin: center;
}

.dashboard-bottom-nav-button.has-unread-chat .dashboard-bottom-nav-unread {
  display: block;
}

.dashboard-bottom-nav-button.has-unread-chat:not(.is-active) .dashboard-bottom-nav-unread {
  animation: bottomNavUnreadVibe 3s ease-in-out infinite;
}

@keyframes bottomNavUnreadVibe {
  0%, 16.667%, 100% {
    transform: translateX(-50%) translate(0, 0) rotate(0);
  }
  1.667% {
    transform: translateX(-50%) translate(-1px, 1px) rotate(-4deg);
  }
  3.333% {
    transform: translateX(-50%) translate(1px, -1px) rotate(4deg);
  }
  5% {
    transform: translateX(-50%) translate(-1px, -1px) rotate(-3deg);
  }
  6.667% {
    transform: translateX(-50%) translate(1px, 1px) rotate(3deg);
  }
  8.333% {
    transform: translateX(-50%) translate(-1px, 0) rotate(-4deg);
  }
  10% {
    transform: translateX(-50%) translate(1px, -1px) rotate(4deg);
  }
  11.667% {
    transform: translateX(-50%) translate(-1px, 1px) rotate(-3deg);
  }
  13.333% {
    transform: translateX(-50%) translate(1px, 0) rotate(3deg);
  }
  15% {
    transform: translateX(-50%) translate(-1px, -1px) rotate(-2deg);
  }
}

.dashboard-screen.has-page-dim-overlay .dashboard-bottom-nav,
.dashboard-screen:has(.dashboard-floater-overlay.is-page-dim:not([hidden])) .dashboard-bottom-nav {
  z-index: 2;
}

.dashboard-screen.has-page-dim-overlay .dashboard-bottom-nav-button,
.dashboard-screen:has(.dashboard-floater-overlay.is-page-dim:not([hidden])) .dashboard-bottom-nav-button {
  pointer-events: none;
}

.dashboard-screen[data-screen="dashboard"]:has(#dashboard-tasks-panel.is-merge-mode) .dashboard-bottom-nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(calc(100% + var(--safe-bottom) + var(--native-bottom-reserve) + 12px));
  transition: opacity 140ms ease, transform 170ms ease, visibility 0ms linear 170ms;
}

.dashboard-header-count {
  margin: 0;
  flex: 0 0 auto;
  color: var(--text-main);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.dashboard-header-count-value {
  color: var(--accent);
}

[data-screen="challenges"] .section-intro {
  color: rgba(111, 224, 192, 0.78);
  font-size: calc(0.86rem + 2px);
  font-weight: 400;
  line-height: 1.2;
}

.dashboard-overview,
.challenges-overview {
  position: sticky;
  top: 0;
  z-index: 6;
  box-sizing: border-box;
  height: var(--topshelf-height);
  margin:
    0
    calc(-1 * (var(--screen-padding-x) + var(--safe-right)))
    0
    calc(-1 * (var(--screen-padding-x) + var(--safe-left)));
  max-width: 100vw;
  padding:
    var(--topshelf-content-top)
    calc(var(--screen-padding-x) + var(--safe-right))
    0
    calc(var(--screen-padding-x) + var(--safe-left));
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse 110% 72% at 28% 0%, rgba(111, 224, 192, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(42, 95, 112, 0.9), var(--surface-solid) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -22px 28px rgba(4, 18, 22, 0.035);
}

.dashboard-overview::before,
.challenges-overview::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

body.is-dashboard-day-complete {
  --bottom-bar-solid-fill: var(--surface-solid);
  background:
    radial-gradient(circle at top, rgba(174, 243, 223, 0.1), transparent 34%),
    linear-gradient(180deg, #245a68, #245a68);
}

body.is-dashboard-day-complete .dashboard-screen[data-screen="dashboard"] {
  background:
    radial-gradient(ellipse 112% 24% at 50% 21%, rgba(245, 255, 251, 0.065), rgba(174, 243, 223, 0.038) 38%, transparent 72%),
    radial-gradient(ellipse 82% 34% at 50% 37%, rgba(245, 255, 251, 0.045), rgba(174, 243, 223, 0.035) 36%, rgba(174, 243, 223, 0.014) 56%, transparent 78%),
    radial-gradient(circle at 50% 0%, rgba(174, 243, 223, 0.075), transparent 42%),
    linear-gradient(
      180deg,
      #2f727e 0%,
      #2e6d79 24%,
      #286572 46%,
      #245f6c 62%,
      #215561 calc(100% - 104px),
      var(--surface-solid) 100%
    );
}

body.is-dashboard-day-complete .dashboard-screen[data-screen="dashboard"] .dashboard-overview {
  isolation: isolate;
  background: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.is-dashboard-day-complete .dashboard-screen[data-screen="dashboard"] .dashboard-overview::before {
  display: none;
}

body.is-dashboard-day-complete .dashboard-screen[data-screen="dashboard"] .dashboard-bottom-nav {
  --bottom-bar-solid-fill: var(--surface-solid);
  background:
    linear-gradient(
      180deg,
      rgba(31, 76, 91, 0) 0,
      rgba(31, 76, 91, 0) var(--bottom-nav-active-line-top),
      var(--surface-solid) var(--bottom-nav-active-line-top),
      var(--surface-solid) 100%
    );
}

body.is-dashboard-day-complete .dashboard-screen[data-screen="dashboard"] .dashboard-bottom-nav::after {
  background: var(--bottom-nav-rail-color);
}

body.is-dashboard-day-complete .dashboard-screen[data-screen="dashboard"] .dashboard-bottom-nav-button.is-active::before {
  border-color: var(--bottom-nav-rail-color);
  background:
    linear-gradient(
      180deg,
      rgba(31, 76, 91, 0) 0,
      rgba(31, 76, 91, 0.58) 46%,
      var(--surface-solid) 100%
    );
}

body.is-dashboard-day-complete .dashboard-screen[data-screen="dashboard"]:not(:has(#dashboard-tasks-panel.is-merge-mode)) .dashboard-overview::after {
  display: none;
}

body.is-dashboard-day-complete .dashboard-screen[data-screen="dashboard"] .dashboard-overview-primary,
body.is-dashboard-day-complete .dashboard-screen[data-screen="dashboard"] #dashboard-submit-note,
body.is-dashboard-day-complete .dashboard-screen[data-screen="dashboard"] .dashboard-overview-meta {
  z-index: 2;
}

body.is-dashboard-day-complete .dashboard-screen[data-screen="dashboard"] .dashboard-overview-body {
  background: transparent;
}

.dashboard-day-reward-halos {
  position: fixed;
  inset: 0;
  z-index: 5;
  overflow: visible;
  pointer-events: none;
  mix-blend-mode: screen;
}

.dashboard-day-reward-halos[hidden] {
  display: none;
}

.dashboard-day-reward-halos::before {
  display: none;
}

.dashboard-day-reward-halos::after {
  display: none;
}

.dashboard-day-reward-halo {
  position: absolute;
  left: var(--reward-halo-x, 50vw);
  top: var(--reward-halo-y, 50vh);
  width: var(--reward-halo-width, var(--reward-halo-size, 260px));
  height: var(--reward-halo-height, var(--reward-halo-size, 260px));
  border-radius: var(--reward-halo-radius, calc(var(--radius-lg) + 3px));
  background:
    radial-gradient(ellipse 112% 104% at 50% 50%, rgba(245, 255, 251, 0.13) 0%, rgba(174, 243, 223, 0.08) 48%, rgba(111, 224, 192, 0.035) 72%, transparent 100%),
    linear-gradient(145deg, rgba(245, 255, 251, 0.08), rgba(174, 243, 223, 0.035) 58%, transparent 100%);
  box-shadow:
    0 0 0 1px rgba(245, 255, 251, 0.055),
    0 0 2px rgba(174, 243, 223, 0.08);
  filter: none;
  opacity: 0.52;
  transform: translate(-50%, -50%);
}

.dashboard-screen[data-screen="dashboard"]:has(#dashboard-tasks-panel.is-merge-mode) .dashboard-overview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  background:
    linear-gradient(180deg, rgba(8, 28, 34, 0.94), rgba(8, 28, 34, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 62%);
  backdrop-filter: blur(5px) saturate(0.78);
  pointer-events: none;
}

.dashboard-overview.is-submitted {
  opacity: 1;
}

.dashboard-overview-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  column-gap: 8px;
  margin: 0;
  width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.dashboard-overview-primary,
.challenges-overview-primary {
  position: absolute;
  left: calc(var(--screen-padding-x) + var(--safe-left));
  right: calc(var(--screen-padding-x) + var(--safe-right));
  top: var(--topshelf-content-top);
  height: var(--topshelf-primary-height);
  display: grid;
  grid-template-rows: 12px var(--topshelf-info-height);
  gap: 6px;
  align-content: start;
  min-height: 0;
}

.topshelf-info {
  min-height: 0;
  height: var(--topshelf-info-height);
}

.dashboard-overview-copy,
.dashboard-overview-meta {
  margin: 0;
}

.dashboard-overview-copy,
.dashboard-overview-meta {
  color: var(--text-soft);
  font-size: calc(0.82rem + 2px);
  line-height: 1.15;
}

.dashboard-overview-copy,
.challenges-overview-title {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(174, 243, 223, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  white-space: nowrap;
}

.dashboard-overview-label {
  text-transform: uppercase;
}

.dashboard-progress-info {
  display: grid;
  grid-template-rows: max-content max-content 15px max-content;
  gap: 6px;
  align-content: start;
}

.dashboard-overview-streak {
  margin: 0;
  grid-column: 2;
  color: rgba(237, 247, 245, 0.86);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  justify-self: center;
  text-align: center;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.dashboard-overview-streak-count {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(237, 247, 245, 0.66);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(237, 247, 245, 0.94);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.dashboard-overview-count-divider {
  color: rgba(237, 247, 245, 0.52);
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
}

.dashboard-overview-meta {
  margin-top: 0;
  margin-bottom: 0;
  font-size: var(--topshelf-generic-copy-size);
  text-align: center;
  transform: none;
}

.dashboard-overview-date {
  color: rgba(174, 243, 223, 0.72);
}

.dashboard-overview-count {
  color: var(--accent);
  font-weight: 700;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.dashboard-overview-count-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 3;
  gap: 5px;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  color: rgba(237, 247, 245, 0.86);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 0;
  box-shadow: none;
  transform: translateY(0);
  justify-self: end;
}

.dashboard-overview-count-check {
  color: var(--accent);
  font-size: 1.05rem;
  line-height: 1;
  text-shadow: none;
}

.dashboard-overview-scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -1px 1px 0;
  color: rgba(174, 243, 223, 0.46);
  font-size: 0.64rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.015em;
}

.dashboard-overview-scale span:nth-child(2) {
  text-align: center;
}

.dashboard-overview-scale span:last-child {
  text-align: right;
}

.dashboard-overview.is-empty .dashboard-overview-meta {
  color: rgba(174, 243, 223, 0.82);
  position: absolute;
  left: calc(var(--screen-padding-x) + var(--safe-left));
  right: calc(var(--screen-padding-x) + var(--safe-right));
  bottom: var(--topshelf-generic-copy-bottom);
  font-size: var(--topshelf-generic-copy-size);
  line-height: 1.2;
  text-align: center;
}

.dashboard-overview.is-empty .dashboard-overview-primary {
  grid-template-rows: 12px var(--topshelf-info-height);
  align-content: start;
}

.dashboard-overview.is-empty .dashboard-overview-top {
  justify-content: space-between;
  text-align: left;
}

.dashboard-overview.is-empty .dashboard-overview-copy {
  color: rgba(174, 243, 223, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: left;
}

.dashboard-overview.is-empty #dashboard-overview-fill {
  min-width: 0;
}

.dashboard-outcome-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin: 5px auto 5px;
  max-width: 100%;
  color: rgba(225, 244, 239, 0.88);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.28;
  text-align: center;
  white-space: normal;
}

.dashboard-outcome-summary[hidden] {
  display: none;
}

.challenges-overview[hidden] {
  display: none;
}

.challenges-overview-title {
  text-transform: uppercase;
}

.dashboard-empty-topshelf-title {
  margin: 0;
  color: var(--text-main);
  font-size: calc(0.82rem + 7px);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
}

.challenges-overview.is-empty .challenges-overview-summary-shell {
  align-content: center;
}

.challenges-overview.is-empty .challenges-overview-copy {
  color: rgba(174, 243, 223, 0.82);
}

.challenges-overview-copy,
#dashboard-submit-note {
  --topshelf-copy-glow-alpha: 0.16;
  --topshelf-copy-glow-size: 9px;
  position: absolute;
  left: calc(var(--screen-padding-x) + var(--safe-left));
  right: calc(var(--screen-padding-x) + var(--safe-right));
  bottom: var(--topshelf-generic-copy-bottom);
  margin: 0;
  padding: 0;
  color: rgba(217, 255, 246, 0.84);
  font-size: var(--topshelf-generic-copy-size);
  font-weight: 400;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  text-shadow:
    0 1px 3px rgba(4, 18, 22, 0.42),
    0 0 var(--topshelf-copy-glow-size) rgba(111, 224, 192, var(--topshelf-copy-glow-alpha));
  text-overflow: ellipsis;
  white-space: nowrap;
}

.challenges-overview-copy[data-copy-length="short"],
#dashboard-submit-note[data-copy-length="short"]:not(.is-complete-note):not(.is-error) {
  --topshelf-copy-glow-alpha: 0.22;
  --topshelf-copy-glow-size: 11px;
  color: rgba(226, 255, 249, 0.88);
}

.challenges-overview-copy[data-copy-length="long"],
#dashboard-submit-note[data-copy-length="long"]:not(.is-complete-note):not(.is-error) {
  --topshelf-copy-glow-alpha: 0.12;
  --topshelf-copy-glow-size: 7px;
  color: rgba(210, 248, 239, 0.8);
}

#dashboard-submit-note.is-empty-create-copy {
  color: rgba(255, 248, 226, 0.9);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: none;
}

.challenges-overview.is-empty .challenges-overview-copy.is-empty-active-copy {
  color: rgba(255, 248, 226, 0.9);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: none;
}

.challenges-overview-summary-shell {
  display: grid;
  gap: 6px;
  margin: 0;
  align-content: stretch;
}

.challenges-overview-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  gap: 6px;
  height: 100%;
}

.dashboard-outcome-tile-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  gap: 6px;
  height: 100%;
  min-height: 0;
  min-width: 0;
}

.dashboard-outcome-tile-stack.is-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.challenges-overview-summary-grid > .dashboard-outcome-tile.is-wide,
.challenges-overview-summary-grid > .dashboard-outcome-tile-stack.is-wide {
  grid-column: 1 / -1;
}

.dashboard-outcome-tile {
  position: relative;
  display: grid;
  align-content: center;
  gap: 3px;
  height: 100%;
  min-width: 0;
  padding: 4px 2px 2px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(174, 243, 223, 0.012), rgba(7, 24, 30, 0.018));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.012);
}

.dashboard-outcome-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(174, 243, 223, 0.075), transparent 28%, transparent 72%, rgba(174, 243, 223, 0.035)),
    linear-gradient(90deg, rgba(174, 243, 223, 0.045), transparent 22%, transparent 78%, rgba(174, 243, 223, 0.03));
  filter: blur(0.7px);
  opacity: 0.7;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}

.dashboard-outcome-tile.is-placeholder {
  opacity: 0.74;
}

.dashboard-outcome-tile.is-placeholder .dashboard-outcome-tile-title,
.dashboard-outcome-tile.is-placeholder .dashboard-outcome-tile-copy {
  color: rgba(225, 244, 239, 0.68);
}

.dashboard-outcome-tile-title {
  margin: 0;
  color: var(--accent);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 8px rgba(111, 224, 192, 0.08);
}

.dashboard-outcome-tile-title.is-together {
  font-size: 1.16rem;
}

.dashboard-outcome-tile-title.is-single-player {
  font-size: 1.16rem;
}

.challenges-overview .dashboard-outcome-summary {
  display: block;
  margin: 0;
}

.dashboard-outcome-tile-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 4px;
  min-height: 18px;
  margin: 0 0 -1px;
  color: var(--text-main);
  font-size: 0.82rem;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 1px 3px rgba(4, 18, 22, 0.2);
  white-space: normal;
}

.dashboard-outcome-tile-copy .dashboard-outcome-label {
  font-weight: 700;
  white-space: nowrap;
}

.dashboard-outcome-tile-copy .dashboard-outcome-value {
  white-space: nowrap;
}

.dashboard-outcome-tile-copy .dashboard-outcome-value.is-leading {
  color: var(--accent);
}

.dashboard-outcome-tile-copy .dashboard-outcome-value.is-tied {
  color: var(--text-main);
}

.dashboard-outcome-tile-copy .dashboard-outcome-value.is-trailing {
  color: #ff8d8d;
}

.dashboard-outcome-tile-copy .dashboard-outcome-separator {
  opacity: 0.75;
}

.dashboard-reminder {
  display: grid;
  justify-items: center;
  gap: 4px;
  width: min(100%, 340px);
  margin: 10px auto 0;
}

.dashboard-reminder-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 24px;
  flex-wrap: wrap;
}

.dashboard-reminder-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.1;
}

.dashboard-reminder-toggle {
  position: relative;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(190, 216, 212, 0.2);
  border-radius: 4px;
  background: rgba(7, 24, 30, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(4, 14, 18, 0.12);
  flex: 0 0 auto;
  cursor: pointer;
}

.dashboard-reminder-check {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.dashboard-reminder-toggle.is-checked {
  border-color: rgba(75, 199, 165, 0.5);
  background-color: rgba(75, 199, 165, 0.92);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3 7.2 6 10 11.4 4' fill='none' stroke='%23f4fffb' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(75, 199, 165, 0.08);
}

.dashboard-reminder-toggle:focus-within {
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 2px rgba(75, 199, 165, 0.26);
}

.dashboard-reminder-toggle.is-disabled {
  opacity: 0.45;
  cursor: default;
}

.dashboard-reminder-time-group {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  flex: 0 0 auto;
}

.dashboard-reminder-time {
  width: 28px;
  min-height: 18px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(190, 216, 212, 0.18);
  border-radius: 0;
  background: rgba(7, 24, 30, 0.2);
  background-image: none;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  text-align-last: center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 18px;
  cursor: pointer;
  scrollbar-width: thin;
  scrollbar-color: rgba(75, 199, 165, 0.35) rgba(7, 24, 30, 0.18);
}

.dashboard-reminder-time:focus-visible {
  outline: none;
  border-bottom-color: rgba(174, 243, 223, 0.95);
}

.dashboard-reminder-time::-ms-expand {
  display: none;
}

.dashboard-reminder-time:disabled {
  opacity: 0.55;
}

.dashboard-reminder-time option {
  color: var(--text-main);
  background: #0e2128;
}

.dashboard-reminder-time::-webkit-scrollbar {
  width: 6px;
}

.dashboard-reminder-time::-webkit-scrollbar-track {
  background: rgba(7, 24, 30, 0.18);
}

.dashboard-reminder-time::-webkit-scrollbar-thumb {
  background: rgba(75, 199, 165, 0.35);
  border-radius: 999px;
}

.dashboard-reminder.is-enabled .dashboard-reminder-label {
  color: var(--accent);
}

.dashboard-reminder.is-enabled .dashboard-reminder-time {
  border-bottom-color: rgba(174, 243, 223, 0.95);
  text-shadow: 0 0 10px rgba(174, 243, 223, 0.12);
}

.dashboard-reminder-separator {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.dashboard-reminder-note {
  width: 100%;
  margin: 0;
  color: #ffb6b6;
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: center;
}

.dashboard-outcome-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 7px;
}

.dashboard-outcome-label {
  color: rgba(225, 244, 239, 0.86);
  font-weight: 600;
}

.dashboard-outcome-separator {
  color: rgba(190, 216, 212, 0.52);
}

.dashboard-outcome-together-value {
  color: rgba(225, 244, 239, 0.82);
  font-weight: 400;
}

.dashboard-outcome-value {
  display: inline-block;
  margin-left: 3px;
  font-weight: 600;
}

.dashboard-outcome-value.is-leading {
  color: #87e8a8;
}

.dashboard-outcome-value.is-tied {
  color: #ead47d;
}

.dashboard-outcome-value.is-trailing {
  color: #ee9c91;
}

.dashboard-auto-refresh-note {
  margin: 18px 0 6px;
  color: rgba(190, 216, 212, 0.72);
  font-size: 0.76rem;
  line-height: 1.3;
  text-align: center;
}

.dashboard-task-empty-copy {
  margin: 0 0 2px;
  color: #aef3df;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  grid-column: 1 / -1;
}

.dashboard-overview-progress {
  flex: 0 0 auto;
  min-width: 76px;
  margin: 0;
  grid-column: 1;
  text-align: left;
  color: var(--accent);
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 0.88;
  transform: none;
  transition:
    color 180ms ease,
    font-size 2080ms cubic-bezier(0.16, 0.9, 0.28, 1),
    text-shadow 180ms ease,
    transform 180ms ease;
  will-change: transform, opacity;
}

.dashboard-overview-progress.is-updating {
  animation: none;
}

.dashboard-overview-progress.is-settled {
  animation: dashboardProgressPercentSettle 260ms cubic-bezier(0.18, 0.9, 0.24, 1.16) both;
}

.dashboard-overview-primary .progress-track {
  position: relative;
  margin: 0;
  height: 15px;
  border: 1px solid rgba(190, 216, 212, 0.16);
  filter: drop-shadow(0 1px 1px rgba(4, 14, 18, 0.24)) drop-shadow(0 0 6px rgba(111, 224, 192, 0.11));
  box-shadow:
    inset 0 2px 3px rgba(4, 14, 18, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.055),
    inset 0 0 0 1px rgba(4, 14, 18, 0.14);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.dashboard-overview-primary .progress-track::before,
.dashboard-overview-primary .progress-track::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 2px;
  right: 2px;
  pointer-events: none;
  border-radius: 999px;
}

.dashboard-overview-primary .progress-track::before {
  top: 1px;
  height: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0.72;
}

.dashboard-overview-primary .progress-track::after {
  bottom: 1px;
  height: 3px;
  background: rgba(4, 14, 18, 0.13);
  opacity: 0.65;
}

.dashboard-overview.is-submitted .progress-track {
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-overview.is-submitted .progress-fill {
  opacity: 1;
}

#dashboard-overview-fill {
  min-width: 8px;
  transform-origin: left center;
  box-shadow:
    inset 0 2px 2px rgba(255, 255, 255, 0.19),
    inset 0 -3px 4px rgba(4, 14, 18, 0.16),
    1px 0 3px rgba(4, 14, 18, 0.18);
  transition: width 1500ms cubic-bezier(0.18, 0.88, 0.24, 1), background 180ms ease, box-shadow 180ms ease;
  will-change: width, transform;
}

#dashboard-overview-fill.is-updating {
  animation: dashboardProgressFillSettle 1500ms cubic-bezier(0.18, 0.88, 0.24, 1) both;
}

@keyframes dashboardProgressPercentSettle {
  0% {
    transform: translateY(0) scale(1);
  }
  52% {
    transform: translateY(-2px) scale(1.04);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes dashboardProgressFillSettle {
  0% {
    transform: scaleY(1);
  }
  22% {
    transform: scaleY(1.14);
  }
  54% {
    transform: scaleY(0.96);
  }
  100% {
    transform: scaleY(1);
  }
}

.dashboard-overview[data-progress-tone="tone-1"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-1"] .dashboard-overview-count {
  color: #e08989;
}

.dashboard-overview[data-progress-tone="tone-1"] .dashboard-overview-primary .progress-track {
  background: rgba(146, 58, 58, 0.2);
  box-shadow: inset 0 0 0 1px rgba(212, 102, 102, 0.1);
}

.dashboard-overview[data-progress-tone="tone-1"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #cf6d6d, #a84b4b);
}

.dashboard-overview[data-progress-tone="tone-2"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-2"] .dashboard-overview-count {
  color: #de8f7b;
}

.dashboard-overview[data-progress-tone="tone-2"] .dashboard-overview-primary .progress-track {
  background: rgba(151, 72, 56, 0.18);
  box-shadow: inset 0 0 0 1px rgba(201, 104, 82, 0.08);
}

.dashboard-overview[data-progress-tone="tone-2"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #c96f58, #a65446);
}

.dashboard-overview[data-progress-tone="tone-3"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-3"] .dashboard-overview-count {
  color: #e0955f;
}

.dashboard-overview[data-progress-tone="tone-3"] .dashboard-overview-primary .progress-track {
  background: rgba(154, 86, 47, 0.18);
  box-shadow: inset 0 0 0 1px rgba(211, 120, 74, 0.08);
}

.dashboard-overview[data-progress-tone="tone-3"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #cf7a4b, #ad603f);
}

.dashboard-overview[data-progress-tone="tone-4"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-4"] .dashboard-overview-count {
  color: #e2a952;
}

.dashboard-overview[data-progress-tone="tone-4"] .dashboard-overview-primary .progress-track {
  background: rgba(161, 93, 40, 0.18);
  box-shadow: inset 0 0 0 1px rgba(219, 132, 61, 0.08);
}

.dashboard-overview[data-progress-tone="tone-4"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #d98a45, #b85e30);
}

.dashboard-overview[data-progress-tone="tone-5"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-5"] .dashboard-overview-count {
  color: #e2b240;
}

.dashboard-overview[data-progress-tone="tone-5"] .dashboard-overview-primary .progress-track {
  background: rgba(165, 106, 33, 0.17);
  box-shadow: inset 0 0 0 1px rgba(222, 158, 67, 0.08);
}

.dashboard-overview[data-progress-tone="tone-5"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #e19838, #c16a28);
}

.dashboard-overview[data-progress-tone="tone-6"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-6"] .dashboard-overview-count {
  color: #debf40;
}

.dashboard-overview[data-progress-tone="tone-6"] .dashboard-overview-primary .progress-track {
  background: rgba(166, 114, 28, 0.16);
  box-shadow: inset 0 0 0 1px rgba(221, 179, 64, 0.08);
}

.dashboard-overview[data-progress-tone="tone-6"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #dead36, #c68d26);
}

.dashboard-overview[data-progress-tone="tone-7"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-7"] .dashboard-overview-count {
  color: #d8b942;
}

.dashboard-overview[data-progress-tone="tone-7"] .dashboard-overview-primary .progress-track {
  background: rgba(177, 121, 29, 0.16);
  box-shadow: inset 0 0 0 1px rgba(216, 185, 66, 0.08);
}

.dashboard-overview[data-progress-tone="tone-7"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #d8b33d, #c6922f);
}

.dashboard-overview[data-progress-tone="tone-8"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-8"] .dashboard-overview-count {
  color: #ddb84b;
}

.dashboard-overview[data-progress-tone="tone-8"] .dashboard-overview-primary .progress-track {
  background: rgba(184, 124, 31, 0.16);
  box-shadow: inset 0 0 0 1px rgba(221, 184, 75, 0.08);
}

.dashboard-overview[data-progress-tone="tone-8"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #ddae3b, #cc9832);
}

.dashboard-overview[data-progress-tone="tone-9"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-9"] .dashboard-overview-count {
  color: #e0bb53;
}

.dashboard-overview[data-progress-tone="tone-9"] .dashboard-overview-primary .progress-track {
  background: rgba(191, 133, 35, 0.16);
  box-shadow: inset 0 0 0 1px rgba(224, 187, 83, 0.08);
}

.dashboard-overview[data-progress-tone="tone-9"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #e1b43e, #cd9a35);
}

.dashboard-overview[data-progress-tone="tone-10"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-10"] .dashboard-overview-count {
  color: #e1bd57;
}

.dashboard-overview[data-progress-tone="tone-10"] .dashboard-overview-primary .progress-track {
  background: rgba(196, 140, 43, 0.18);
  box-shadow: inset 0 0 0 1px rgba(225, 189, 87, 0.11);
}

.dashboard-overview[data-progress-tone="tone-10"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #e2bc48, #d2a33d);
}

.dashboard-overview[data-progress-tone="tone-11"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-11"] .dashboard-overview-count {
  color: #ddc05f;
}

.dashboard-overview[data-progress-tone="tone-11"] .dashboard-overview-primary .progress-track {
  background: rgba(204, 148, 48, 0.18);
  box-shadow: inset 0 0 0 1px rgba(221, 192, 95, 0.09);
}

.dashboard-overview[data-progress-tone="tone-11"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #dfc04f, #cfad47);
}

.dashboard-overview[data-progress-tone="tone-12"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-12"] .dashboard-overview-count {
  color: #d9c66b;
}

.dashboard-overview[data-progress-tone="tone-12"] .dashboard-overview-primary .progress-track {
  background: rgba(207, 160, 59, 0.18);
  box-shadow: inset 0 0 0 1px rgba(217, 198, 107, 0.1);
}

.dashboard-overview[data-progress-tone="tone-12"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #d8c35a, #cdb14f);
}

.dashboard-overview[data-progress-tone="tone-13"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-13"] .dashboard-overview-count {
  color: #cdd878;
}

.dashboard-overview[data-progress-tone="tone-13"] .dashboard-overview-primary .progress-track {
  background: rgba(182, 171, 68, 0.18);
  box-shadow: inset 0 0 0 1px rgba(205, 216, 120, 0.1);
}

.dashboard-overview[data-progress-tone="tone-13"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #cfd86a, #bad15f);
}

.dashboard-overview[data-progress-tone="tone-14"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-14"] .dashboard-overview-count {
  color: #badb77;
}

.dashboard-overview[data-progress-tone="tone-14"] .dashboard-overview-primary .progress-track {
  background: rgba(164, 174, 70, 0.18);
  box-shadow: inset 0 0 0 1px rgba(186, 219, 119, 0.1);
}

.dashboard-overview[data-progress-tone="tone-14"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #bcdb71, #aad666);
}

.dashboard-overview[data-progress-tone="tone-15"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-15"] .dashboard-overview-count {
  color: #a8da82;
}

.dashboard-overview[data-progress-tone="tone-15"] .dashboard-overview-primary .progress-track {
  background: rgba(138, 174, 75, 0.18);
  box-shadow: inset 0 0 0 1px rgba(168, 218, 130, 0.1);
}

.dashboard-overview[data-progress-tone="tone-15"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #a7da7d, #93d26f);
}

.dashboard-overview[data-progress-tone="tone-16"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-16"] .dashboard-overview-count {
  color: #92d786;
}

.dashboard-overview[data-progress-tone="tone-16"] .dashboard-overview-primary .progress-track {
  background: rgba(108, 172, 78, 0.18);
  box-shadow: inset 0 0 0 1px rgba(146, 215, 134, 0.1);
}

.dashboard-overview[data-progress-tone="tone-16"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #8edb79, #79cf67);
}

.dashboard-overview[data-progress-tone="tone-17"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-17"] .dashboard-overview-count {
  color: #7ad985;
}

.dashboard-overview[data-progress-tone="tone-17"] .dashboard-overview-primary .progress-track {
  background: rgba(77, 169, 86, 0.18);
  box-shadow: inset 0 0 0 1px rgba(122, 217, 133, 0.1);
}

.dashboard-overview[data-progress-tone="tone-17"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #7bd97d, #65cd6b);
}

.dashboard-overview[data-progress-tone="tone-18"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-18"] .dashboard-overview-count {
  color: #63d98b;
}

.dashboard-overview[data-progress-tone="tone-18"] .dashboard-overview-primary .progress-track {
  background: rgba(46, 166, 96, 0.18);
  box-shadow: inset 0 0 0 1px rgba(99, 217, 139, 0.1);
}

.dashboard-overview[data-progress-tone="tone-18"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #67d97f, #52c86c);
}

.dashboard-overview[data-progress-tone="tone-19"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-19"] .dashboard-overview-count {
  color: #4dd48f;
}

.dashboard-overview[data-progress-tone="tone-19"] .dashboard-overview-primary .progress-track {
  background: rgba(30, 164, 105, 0.18);
  box-shadow: inset 0 0 0 1px rgba(77, 212, 143, 0.1);
}

.dashboard-overview[data-progress-tone="tone-19"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #4ed48f, #3bc67e);
}

.dashboard-overview[data-progress-tone="tone-20"] .dashboard-overview-progress,
.dashboard-overview[data-progress-tone="tone-20"] .dashboard-overview-count {
  color: #9cffb8;
}

.dashboard-overview[data-progress-tone="tone-20"] .dashboard-overview-primary .progress-track {
  background: rgba(39, 120, 62, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(69, 232, 108, 0.2);
}

.dashboard-overview[data-progress-tone="tone-20"] #dashboard-overview-fill {
  background: linear-gradient(90deg, #80f26f, #29d655 55%, #0fb846);
}

.dashboard-overview.is-perfect .dashboard-overview-progress {
  color: #9cffb8;
  font-size: calc(2.45rem * 0.85);
}

.dashboard-overview.is-perfect .dashboard-overview-count {
  color: #9cffb8;
  text-shadow: 0 0 12px rgba(40, 220, 94, 0.2);
}

.dashboard-overview.is-perfect .dashboard-overview-primary .progress-track {
  background: rgba(39, 120, 62, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 0 1px rgba(69, 232, 108, 0.2);
}

.dashboard-overview.is-perfect #dashboard-overview-fill {
  background: linear-gradient(90deg, #80f26f, #29d655 55%, #0fb846);
}

.dashboard-overview .dashboard-overview-count-copy .dashboard-overview-count {
  color: rgba(237, 247, 245, 0.9);
  text-shadow: none;
}

.challenge-link {
  margin: 0;
}

.dashboard-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(16, 43, 52, 0.52);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.dashboard-screen .dashboard-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

#dashboard-tasks-panel {
  padding-top: 0;
}

#dashboard-tasks-panel.is-floater-active {
  z-index: 900;
}

#dashboard-tasks-panel + .dashboard-panel {
  margin-top: 28px;
}

