* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  max-width: 420px;
  width: 100%;
}

h1 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.8rem;
  color: #7dd3fc;
}

.weather-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.temperature {
  font-size: 5rem;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 8px;
}

.description {
  font-size: 1.3rem;
  color: #cbd5e1;
  margin-bottom: 24px;
  text-transform: capitalize;
}

.details {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-item .label {
  font-size: 0.85rem;
  color: #94a3b8;
}

.detail-item .value {
  font-size: 1.1rem;
  font-weight: 600;
}

.note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #64748b;
}
