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

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #0f2027, #203a43, #2c5364);
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 60px;
}

.container {
    text-align: center;
    width: 360px;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Button */
.btn-gradient {
    padding: 14px 30px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.4);
}

/* Weather Card */
.card {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 35px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.card p {
    font-size: 20px;
    margin: 18px 0;
}

.card span {
    font-weight: 700;
    font-size: 22px;
}

/* Hover effect for card */
.card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Optional: make condition text flexible for icon */
#condition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
