body {
    background: linear-gradient(135deg, #f0f4ff, #fff0f8);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 700px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 25px;
    color: #4a4a8c;
}

select {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 30px;
}

#cities {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.city:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.city:nth-child(1) { background: linear-gradient(135deg, #ff6f61, #ff9a8b); }
.city:nth-child(2) { background: linear-gradient(135deg, #6a11cb, #2575fc); }
.city:nth-child(3) { background: linear-gradient(135deg, #43cea2, #185a9d); }

.info h2 {
    margin: 0 0 5px;
    font-size: 28px;
}

.date {
    font-size: 16px;
    opacity: 0.8;
}

.time {
    font-size: 48px;
}

.time small {
    font-size: 24px;
    vertical-align: middle;
}

footer {
    text-align: center;
    font-size: 16px;
    color: rgba(0,0,0,0.7);
    margin: 40px 0 20px;
}

a {
    color: #4a4a8c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (min-width: 600px) {
    #cities { flex-direction: row; flex-wrap: wrap; }
    .city { flex: 1 1 calc(50% - 20px); }
}