body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #FFD3A5, #FD6585);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333;
}

.weather-card {
    background: #fffbea;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 340px;
    border: 2px solid #ffcd94;
}

.subtitle {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 15px;
}

.input-box {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 0.95em;
}

button {
    padding: 10px 15px;
    border: none;
    background: #ff9a76;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease;
}

button:hover {
    transform: scale(1.05);
    background: #ff7b54;
}

#result {
    margin-top: 15px;
    padding: 15px;
    background: #fff4e3;
    border-radius: 10px;
    border: 1px solid #ffcd94;
    text-align: center;
}

.weather-icon {
    width: 64px;
    height: 64px;
}

.fade-in {
    animation: fade 0.5s ease-in-out;
}

@keyframes fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
