/* Reset and font */
body {
    background: linear-gradient(135deg, #fce3ec, #f9fbe7);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #444;
}

h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #6c63ff;
    font-weight: 600;
}

h2 {
    margin: 0 0 5px;
    font-size: 26px;
    color: #6a1b9a;
}

select {
    display: block;
    width: 100%;
    font-size: 18px;
    border-radius: 12px;
    padding: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    color: #4a4a4a;
    transition: all 0.3s ease;
}

select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.container {
    max-width: 600px;
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.4);
    padding: 40px 30px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.city {
    display: flex;
    margin: 20px 0;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.city:hover {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 30px 15px;
}

.city:last-child {
    border: none;
}

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

.time {
    font-size: 46px;
    font-weight: 700;
    color: #444;
}

.time small {
    font-size: 22px;
    vertical-align: middle;
    line-height: 1;
    color: #888;
    margin-left: 4px;
}

footer {
    text-align: center;
    font-size: 16px;
    padding: 20px;
    margin-top: 40px;
    color: #666;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer a {
    color: #6c63ff;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}


@media (max-width: 600px) {
    .time {
        font-size: 36px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 22px;
    }

    .container {
        padding: 25px 20px;
    }
}