html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #050A12;
  overflow: hidden;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.meter {
  width: 100%;
  max-width: 390px;
  height: 315px;
  box-sizing: border-box;
  padding: 14px;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 239, 255, .14), transparent 30%),
    radial-gradient(circle at 10% 85%, rgba(45, 109, 255, .16), transparent 35%),
    #050A12;
  color: #fff;
  border: 1px solid rgba(0, 239, 255, .16);
}

.top {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label,
.tileLabel,
.chipLabel {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.7px;
  color: rgba(145, 230, 255, .78);
}

.scoreRow {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

#score {
  font-size: 64px;
  font-weight: 950;
  line-height: .95;
  letter-spacing: -4px;
  color: #fff;
  text-shadow:
    0 0 8px rgba(0, 239, 255, .7),
    0 0 18px rgba(0, 175, 255, .55);
}

#grade {
  font-size: 18px;
  font-weight: 950;
  color: #00EFFF;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 239, 255, .75);
}

.ring {
  width: 92px;
  height: 92px;
  overflow: visible;
}

.ringTrack {
  fill: none;
  stroke: rgba(105, 150, 205, .18);
  stroke-width: 10;
}

.ringProgress {
  fill: none;
  stroke: url(#blue);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transform: rotate(-90deg);
  transform-origin: 46px 46px;
  filter:
    drop-shadow(0 0 4px rgba(0, 239, 255, .85))
    drop-shadow(0 0 10px rgba(0, 175, 255, .55));
  transition: stroke-dashoffset .9s cubic-bezier(.2,.85,.2,1);
}

.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.tile {
  min-height: 61px;
  box-sizing: border-box;
  padding: 10px 11px;
  border-radius: 13px;
  background: rgba(8, 20, 42, .92);
  border: 1px solid rgba(0, 239, 255, .14);
  box-shadow: inset 0 0 14px rgba(0, 175, 255, .06);
}

.tileValue {
  margin-top: 4px;
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
  color: #ffffff;
}

.tileValue.small {
  font-size: 20px;
  color: #00EFFF;
}

.issueChip {
  margin-top: 10px;
  min-height: 62px;
  box-sizing: border-box;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 15px;
  background: rgba(52, 13, 18, .82);
  border: 1px solid rgba(255, 76, 76, .23);
}

.chipIcon {
  color: #ffcc4d;
  font-size: 22px;
}

.chipValue {
  margin-top: 3px;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 900;
  color: #ffb0a8;
}

@media (max-width: 340px) {
  .meter {
    height: 300px;
    padding: 12px;
  }

  #score {
    font-size: 56px;
  }

  .ring {
    width: 82px;
    height: 82px;
  }

  .tileValue {
    font-size: 22px;
  }
}
