* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(270deg, #ff6ec4, #7873f5, #4facfe, #00f2fe);
    background-size: 800% 800%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.weather-card {
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
}

.weather-card h2 {
    margin-bottom: 15px;
    color: #333;
}

#search {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #aaa;
    margin-bottom: 10px;
}

#searchBtn {
    margin-bottom: 15px;
    padding: 8px 15px;
    border: none;
    border-radius: 8px;
    background: #4facfe;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

#suggestions {
    background: #f8f8f8;
    border: 1px solid #ddd;
    max-height: 120px;
    overflow-y: auto;
    text-align: left;
    border-radius: 6px;
    margin-bottom: 10px;
}

#suggestions div {
    padding: 8px;
    cursor: pointer;
}

#suggestions div:hover {
    background: #eee;
}

#weather p {
    margin: 10px 0;
    font-size: 18px;
    color: #444;
}

footer {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}