body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f7fb;
}

.app {
  width: min(430px, calc(100vw - 28px));
  margin: 18px auto;
}

.hero {
  border-radius: 32px;
  padding: 28px 22px;
  color: white;
  text-align: center;
  background: linear-gradient(160deg, #62c8ff 0%, #2f80ed 60%, #1769c2 100%);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}

.weather-icon {
  font-size: 58px;
  line-height: 1;
}

.temp {
  font-size: clamp(72px, 20vw, 96px);
  font-weight: 800;
  letter-spacing: -4px;
  line-height: .95;
  margin-top: 12px;
}

.feels {
  font-size: 21px;
  opacity: .92;
  margin-top: 12px;
}

.place {
  font-size: 18px;
  opacity: .88;
  margin-top: 12px;
}

.chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.chip {
  background: rgba(255,255,255,.20);
  border-radius: 999px;
  padding: 12px;
  font-size: 16px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.updated {
  margin-top: 18px;
  font-size: 13px;
  opacity: .72;
}

.card {
  margin-top: 18px;
  border-radius: 28px;
  padding: 24px 22px;
  color: white;
  background: linear-gradient(160deg, #0d4f86 0%, #08345f 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-icon {
  font-size: 38px;
  line-height: 1;
}

.section-title h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
}

.section-title p {
  margin: 7px 0 0;
  font-size: 15px;
  opacity: .72;
}

.temp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 26px;
}

.stat {
  text-align: center;
}

.stat-label {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .4px;
}

.stat-label.max {
  color: #ffd54f;
}

.stat-label.min {
  color: #6ee7ff;
}

.stat-value {
  margin-top: 6px;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
}