:root {
  color-scheme: dark;
  --display-w: 640px;
  --display-h: 480px;
  --ink: #f8fafc;
  --muted: rgba(248, 250, 252, 0.7);
  --line: rgba(255, 255, 255, 0.18);
  --green: #1ed760;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(30, 215, 96, 0.12), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(255, 191, 105, 0.16), transparent 30%),
    #090a0d;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft JhengHei", sans-serif;
}

button {
  font: inherit;
}

.display-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #050608;
}

.stage {
  width: var(--display-w);
  height: var(--display-h);
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  transform: scale(var(--stage-scale, 1));
  transform-origin: center;
}

.stage::-webkit-scrollbar {
  display: none;
}

.stack-panel {
  display: grid;
  place-items: center;
  width: var(--display-w);
  height: var(--display-h);
  padding: 18px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.smart-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(13, 15, 20, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 24px 60px rgba(0, 0, 0, 0.45);
}

.card-media,
.hero-scrim,
.weather-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.card-media {
  object-fit: cover;
  filter: saturate(0.98) contrast(1.08);
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(3, 5, 9, 0.18), rgba(3, 5, 9, 0.62)),
    linear-gradient(0deg, rgba(3, 5, 9, 0.86), transparent 54%),
    linear-gradient(90deg, rgba(3, 5, 9, 0.66), transparent 60%);
}

.album-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.96);
  transform: scale(1.04);
}

.music-scrim {
  background:
    linear-gradient(180deg, rgba(6, 12, 14, 0.16), rgba(6, 12, 14, 0.44)),
    linear-gradient(90deg, rgba(13, 32, 38, 0.58), rgba(13, 32, 38, 0.16) 58%),
    linear-gradient(0deg, rgba(6, 11, 13, 0.68), transparent 52%);
}

.card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 32px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 750;
}

.home-clock {
  position: absolute;
  z-index: 1;
  left: 32px;
  bottom: 126px;
}

.home-clock time {
  display: block;
  font-size: 92px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.home-clock p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  font-weight: 700;
}

.summary-pill {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.summary-pill span,
.section-label,
.weather-main p,
.weather-grid span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.summary-pill strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  line-height: 1.16;
}

.music-card {
  border-radius: 40px;
}

.music-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 32px 0;
}

.device-pill {
  max-width: 184px;
  overflow: hidden;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(235, 248, 255, 0.92);
  color: rgba(12, 25, 33, 0.92);
  font-size: 17px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.device-pill.is-connected {
  background: rgba(30, 215, 96, 0.92);
  color: rgba(4, 20, 10, 0.95);
}

.music-copy {
  position: absolute;
  z-index: 1;
  left: 32px;
  bottom: 152px;
  max-width: 290px;
}

.music-copy p,
.music-copy span {
  display: block;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-copy p {
  font-size: 36px;
  font-weight: 820;
  line-height: 1.06;
}

.music-copy span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 24px;
  font-weight: 650;
}

.widget-play-button {
  position: absolute;
  right: 32px;
  bottom: 128px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border: 0;
  border-radius: 28px;
  background: rgba(235, 248, 255, 0.94);
  color: rgba(12, 25, 33, 0.95);
  cursor: pointer;
}

.pause-icon {
  width: 24px;
  height: 36px;
  border-right: 9px solid currentColor;
  border-left: 9px solid currentColor;
}

.widget-play-button.is-paused .pause-icon {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 32px solid currentColor;
  border-right: 0;
}

.spotify-widget-controls {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 1;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 42px 42px 42px;
  gap: 14px;
  align-items: center;
}

.spotify-widget-controls button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(235, 248, 255, 0.95);
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.progress-shell {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(235, 248, 255, 0.24);
}

.widget-progress {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: rgba(235, 248, 255, 0.92);
  transition: width 180ms linear;
}

.play-state {
  position: absolute;
  left: 32px;
  bottom: 102px;
  z-index: 1;
  margin: 0;
  color: rgba(235, 248, 255, 0.76);
  font-size: 13px;
  font-weight: 750;
}

.weather-card {
  border-radius: 40px;
  background: #172214;
}

.weather-photo,
.weather-page-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.weather-photo {
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
}

.weather-page-scrim {
  background:
    radial-gradient(circle at 52% 12%, rgba(255, 255, 230, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(5, 9, 5, 0.18), rgba(5, 9, 5, 0.42)),
    linear-gradient(90deg, rgba(3, 6, 3, 0.44), transparent 45%, rgba(3, 6, 3, 0.32));
}

.weather-glass {
  position: absolute;
  z-index: 1;
  top: 86px;
  left: 115px;
  width: 410px;
  height: 312px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(34, 51, 41, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 20px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.weather-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 90px;
  padding: 25px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.weather-header strong,
.weather-header span,
.weather-header time {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 360;
  line-height: 1.05;
  text-transform: uppercase;
}

.weather-header strong,
.weather-header span {
  font-size: 28px;
}

.weather-header time {
  font-size: 18px;
  text-align: right;
}

.weather-center {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  height: 170px;
  padding: 0 24px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.weather-center > strong {
  color: #fff;
  font-size: 132px;
  font-weight: 850;
  line-height: 0.86;
}

.weather-center > strong::after {
  position: absolute;
  top: 26px;
  left: 218px;
  content: "";
  width: 22px;
  height: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
}

.weather-center p {
  position: absolute;
  right: 34px;
  bottom: 25px;
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 850;
  text-transform: uppercase;
}

.weather-icon {
  position: relative;
  width: 128px;
  height: 104px;
}

.sun-core {
  position: absolute;
  top: 22px;
  left: 4px;
  width: 44px;
  height: 44px;
  border: 7px solid #fff;
  border-radius: 50%;
}

.sun-core::before,
.sun-core::after {
  position: absolute;
  content: "";
  background: #fff;
  border-radius: 999px;
}

.sun-core::before {
  top: -20px;
  left: 16px;
  width: 5px;
  height: 14px;
  box-shadow:
    0 72px 0 #fff,
    -35px 36px 0 #fff,
    35px 36px 0 #fff;
}

.sun-core::after {
  top: 16px;
  left: -21px;
  width: 14px;
  height: 5px;
  box-shadow:
    72px 0 0 #fff,
    14px -25px 0 #fff,
    55px -25px 0 #fff;
  transform: rotate(-36deg);
  transform-origin: 58px 28px;
}

.cloud {
  position: absolute;
  border: 7px solid #fff;
  background: transparent;
}

.cloud-a {
  right: 3px;
  bottom: 9px;
  width: 96px;
  height: 56px;
  border-top-left-radius: 44px;
  border-top-right-radius: 54px;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.cloud-b {
  right: 34px;
  bottom: 42px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.weather-stats {
  display: grid;
  grid-template-columns: 1fr 1.35fr 0.85fr;
  align-items: center;
  height: 52px;
  padding: 0 32px;
  color: rgba(255, 255, 255, 0.92);
}

.weather-stats div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.weather-stats strong,
.weather-stats span {
  color: #fff;
  font-size: 21px;
  font-weight: 430;
  white-space: nowrap;
}

.drop-icon {
  width: 26px;
  height: 34px;
  border: 4px solid #fff;
  border-radius: 52% 48% 58% 42% / 62% 62% 38% 38%;
  transform: rotate(45deg);
}

.wind-icon {
  width: 30px;
  height: 28px;
  border-left: 4px solid #fff;
}

.wind-icon::before {
  display: block;
  content: "";
  width: 26px;
  height: 14px;
  margin-left: 4px;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  transform: skewY(-24deg);
}

.unit-toggle {
  justify-content: flex-end;
  gap: 9px;
}

.unit-toggle strong {
  font-weight: 850;
}

.unit-toggle span {
  color: rgba(255, 255, 255, 0.48);
}

.stack-dots {
  position: absolute;
  top: 50%;
  right: 14px;
  z-index: 4;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition:
    height 180ms ease,
    background 180ms ease;
}

.dot.is-active {
  height: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.fullscreen-toggle {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 5;
  min-width: 76px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.56);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.login-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;
  display: grid;
  place-items: center;
  min-width: 58px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 10, 14, 0.56);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 750;
}

.login-body {
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: #050608;
}

.login-page {
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
}

.login-stage {
  position: relative;
  width: var(--display-w);
  height: var(--display-h);
  overflow: hidden;
  background: #172634;
  transform: scale(min(calc(100vw / 640), calc(100vh / 480)));
  transform-origin: center;
}

.login-bg,
.login-shade,
.login-stripes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.login-bg {
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.login-shade {
  background:
    linear-gradient(180deg, rgba(7, 18, 27, 0.14), rgba(7, 18, 27, 0.48)),
    linear-gradient(90deg, rgba(5, 13, 20, 0.28), transparent 45%, rgba(5, 13, 20, 0.2));
}

.login-stripes {
  background:
    linear-gradient(64deg, transparent 0 30%, rgba(255, 255, 255, 0.12) 30% 42%, transparent 42% 58%, rgba(255, 255, 255, 0.08) 58% 68%, transparent 68%),
    linear-gradient(64deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 48% 54%, transparent 54%);
  opacity: 0.72;
}

.login-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  align-items: start;
  width: 430px;
  margin: 0 auto;
  padding-top: 70px;
  color: #fff;
  text-align: center;
}

.login-form h1 {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 18px;
  text-indent: 18px;
}

.login-kicker {
  grid-column: 1 / -1;
  margin: 54px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.login-rule {
  grid-column: 1 / -1;
  width: 88px;
  height: 1px;
  margin: 12px auto 44px;
  background: rgba(255, 255, 255, 0.58);
}

.login-fields {
  display: contents;
}

.login-form label {
  min-width: 0;
}

.login-form input {
  width: 100%;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 13px;
  outline: none;
  font-size: 12px;
  font-weight: 650;
}

.login-form input:focus {
  border-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.login-form input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.forgot-link {
  grid-column: 2;
  justify-self: end;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.remember-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 650;
}

.remember-row input {
  width: 10px;
  height: 10px;
  accent-color: #ef1010;
}

.login-form button {
  grid-column: 1 / -1;
  justify-self: center;
  width: 150px;
  height: 28px;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: #f20f16;
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(110, 0, 0, 0.28);
}

.login-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.login-message {
  grid-column: 1 / -1;
  min-height: 16px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.lock-status {
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  transform: translateX(-50%);
}

.home-card {
  border-radius: 0;
}

.home-card .hero-scrim {
  background:
    linear-gradient(180deg, rgba(15, 26, 47, 0.54), rgba(15, 26, 47, 0.2) 46%, rgba(8, 12, 19, 0.72)),
    linear-gradient(90deg, rgba(5, 8, 14, 0.18), transparent 72%);
}

.home-card .home-clock {
  top: 44px;
  right: 28px;
  bottom: auto;
  left: auto;
  width: 315px;
  color: rgba(230, 236, 248, 0.34);
  text-align: center;
}

.home-card .home-clock time {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 116px;
  font-weight: 250;
  line-height: 0.84;
}

.home-card .home-clock time::before {
  align-self: center;
  content: ":";
  order: 2;
  margin: -12px 1px 0;
  color: rgba(230, 236, 248, 0.28);
  font-weight: 250;
}

.home-card .home-clock time span:first-child {
  order: 1;
}

.home-card .home-clock time span:last-child {
  order: 3;
}

.home-card .home-clock p {
  margin-top: -114px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 850;
}

.home-card .summary-pill {
  right: auto;
  bottom: 30px;
  left: 196px;
  width: 280px;
  min-height: 78px;
  border-radius: 12px;
  background: rgba(13, 24, 42, 0.62);
}

.login-form.is-signup {
  padding-top: 50px;
}

.login-form.is-signup .login-kicker {
  margin-top: 35px;
}

.login-form.is-signup .login-rule {
  margin-bottom: 28px;
}

.login-form.is-signup .forgot-link,
.login-form.is-signup .remember-row {
  display: none;
}

.login-form .ghost-button {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.login-form.is-signup .ghost-button {
  margin-top: 8px;
}

.weather-card {
  display: grid;
  justify-items: center;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.36), transparent 31%),
    linear-gradient(180deg, #7aa8c4, #d8eaf3 72%, #eff6fa);
}

.weather-card.is-sunny {
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.54), transparent 34%),
    linear-gradient(180deg, #2383c4 0%, #8dcced 48%, #eef7fb 100%);
}

.weather-card.is-cloudy {
  background:
    radial-gradient(circle at 48% 45%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(160deg, #697982, #2d3b41 55%, #151b1f);
}

.weather-card .weather-photo {
  opacity: 0.42;
  mix-blend-mode: screen;
  filter: blur(0.2px) saturate(0.72) brightness(1.16);
}

.weather-card.is-sunny .weather-photo {
  opacity: 0.5;
}

.weather-page-scrim {
  background:
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.2));
}

.weather-condition {
  position: relative;
  z-index: 2;
  margin: 55px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.weather-card .weather-glass {
  top: 122px;
  left: 216px;
  width: 208px;
  height: 235px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.68),
    inset -1px -1px 0 rgba(255, 255, 255, 0.18),
    0 18px 36px rgba(52, 78, 96, 0.18);
  backdrop-filter: blur(7px) saturate(1.08);
}

.weather-card .weather-glass::after {
  position: absolute;
  inset: 99px 0 0;
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.14)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(11px);
}

.weather-card .weather-glass::before {
  position: absolute;
  inset: 4px;
  content: "";
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.weather-mini-label {
  position: relative;
  z-index: 2;
  margin: 18px 0 0 24px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 850;
}

.weather-card .weather-icon {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 84px;
  margin: 12px auto 0;
}

.weather-card .sun-core {
  top: 7px;
  left: 23px;
  width: 72px;
  height: 72px;
  border: 0;
  background: radial-gradient(circle at 42% 38%, #ffd957, #ff9f2e 72%);
  box-shadow: 0 0 26px rgba(255, 179, 46, 0.72);
}

.weather-card .sun-core::before,
.weather-card .sun-core::after {
  display: none;
}

.weather-card.is-cloudy .sun-core {
  display: none;
}

.weather-card.is-cloudy .cloud-a,
.weather-card.is-cloudy .cloud-b {
  display: block;
}

.weather-card.is-sunny .cloud-a,
.weather-card.is-sunny .cloud-b {
  display: none;
}

.weather-card .cloud-a {
  right: 7px;
  bottom: 12px;
  width: 88px;
  height: 44px;
  border: 0;
  background: linear-gradient(180deg, #d9e3ee, #9facbc);
  border-radius: 999px;
  box-shadow:
    -32px 0 0 -4px #bcc8d5,
    -20px -18px 0 2px #d5dee8,
    23px 5px 0 -8px #c1ccd9,
    0 16px 24px rgba(0, 0, 0, 0.28);
}

.weather-card .cloud-b {
  display: none;
}

.weather-card .weather-glass > strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 74px;
  font-weight: 220;
  line-height: 0.9;
  text-align: center;
}

.weather-range {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 13px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.weather-card h2 {
  position: relative;
  z-index: 2;
  margin: 378px 0 0;
  color: rgba(36, 42, 48, 0.86);
  font-size: 24px;
  font-weight: 900;
}

.weather-caption {
  position: absolute;
  right: 54px;
  bottom: 28px;
  left: 54px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0;
  color: rgba(59, 64, 68, 0.82);
  font-size: 12px;
  font-weight: 700;
}
