body {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(58, 123, 213, 0.25), transparent 25%),
        radial-gradient(circle at bottom right, rgba(234, 76, 137, 0.18), transparent 20%),
        linear-gradient(135deg, #0b1320 0%, #1f2a44 100%);
    color: #f8f9fa;
}

.weather-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.weather-card .form-control,
.weather-card .btn {
    border-radius: 1rem;
}

.weather-icon-wrap {
    width: 108px;
    height: 108px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.weather-icon-wrap img {
    width: 72px;
    height: 72px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1rem;
}

.stat-card small {
    letter-spacing: 0.1em;
}

.location-title {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: rgba(248, 249, 250, 0.65);
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    margin: 1.75rem 0;
}