* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Main card */
.container {
    width: 360px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.container h1 {
    margin-bottom: 20px;
    font-size: 2rem;
}

/* Search box */
.search {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search input {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.search button {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    background-color: #00c6ff;
    color: black;
    font-weight: bold;
    transition: background 0.3s ease;
}

.search button:hover {
    background-color: #00a3cc;
}

/* Weather info */
.weather-card {
    margin-top: 15px;
}

.weather-card h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.weather-card p {
    margin: 6px 0;
    font-size: 1.05rem;
    opacity: 0.9;
}