/* Home */

.fresh-water-counter {
  --digit-size: 36px;
  --digit-row-height: 1em;
  --partial-visible: 0.10em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 8px;
  font-size: var(--digit-size);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(14, 31, 48, 0.98) 0%, rgba(5, 14, 25, 0.98) 48%, rgba(3, 10, 18, 1) 100%);
  border: 1px solid rgba(64, 179, 225, 0.72);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -10px 20px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(34, 137, 182, 0.15), 0 12px 28px rgba(0, 0, 0, 0.34);
  font-variant-numeric: tabular-nums;
  font-feature-settings: inherit;
  vertical-align: middle;
}

.fresh-water-counter,
.fresh-water-counter * {
  box-sizing: border-box;
}

.fresh-water-counter .roller-digit {
  position: relative;
  display: block;
  width: 0.78em;
  height: 1.9em;
  overflow: hidden;
  flex: 0 0 0.78em;
  background: linear-gradient(180deg, #101820 0%, #05090e 18%, #020508 48%, #060a0f 82%, #111820 100%);
  border: 1px solid rgba(255, 255, 255, 0.025);
  border-radius: 5px;
  font: inherit;
  line-height: 1;
  box-shadow: inset 0 8px 10px rgba(255, 255, 255, 0.035), inset 0 -10px 14px rgba(0, 0, 0, 0.72), inset 2px 0 4px rgba(255, 255, 255, 0.025), inset -2px 0 4px rgba(0, 0, 0, 0.45);
}

.fresh-water-counter .roller-digit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42%;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.035) 38%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 100%);
  background-size: 100% 100%, 100% 2px;
  background-repeat: no-repeat;
  background-position: 0 0, 0 58%;
  filter: blur(0.8px);
}

.fresh-water-counter .roller-digit::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.fresh-water-counter .roller-track {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  font: inherit;
  line-height: 1;
  will-change: transform;
  transform: translateY(0);
}

.fresh-water-counter .roller-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1em;
  flex: 0 0 1em;
  font: inherit;
  line-height: 1;
  color: transparent;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 40%, #d9d9d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35), 0 0 6px rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.fresh-water-counter .roller-row.is-neighbor {
  opacity: 0.48;
}

.fresh-water-counter .roller-digit-accent .roller-row {
  color: transparent;
  background: linear-gradient(180deg, #62dcff 0%, #1fc1f3 42%, #1197c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 6px rgba(33, 190, 255, 0.25);
}

.fresh-water-counter .roller-preview,
.fresh-water-counter .roller-preview-window,
.fresh-water-counter .roller-preview-glyph {
  display: none;
}

.fresh-water-counter .roller-divider {
  display: none;
}

.fresh-water-counter .roller-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.22em;
  height: 1.9em;
  font: inherit;
  font-size: 0.78em;
  font-weight: 700;
  line-height: 1;
  color: #f4f6f8;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35), 0 0 6px rgba(255, 255, 255, 0.18);
}

.insight-stats {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 54px;
}

.insight-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.insight-stat-value {
  height: 62px;
  min-height: 62px;
  display: flex;
  align-items: center;
  width: 100%;
}

.insight-stat-label {
  display: block;
}

@media (max-width: 767px) {
  .insight-stats {
    gap: 24px;
    margin-top: 36px;
  }

  .insight-stat {
    width: 100%;
  }

  .insight-stat-value {
    height: 62px;
    min-height: 62px;
  }
}
