@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    font-family: 'Press Start 2P', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

.container {
    background: linear-gradient(135deg, #ff00cc, #3333ff);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px #ff00cc, 0 0 40px #3333ff;
    width: 500px;
    text-align: center;
    color: white;
}

h1 {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 2px 2px #000;
}

select {
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 2px solid #fff;
    background-color: #222;
    color: #0ff;
    font-size: 14px;
    box-shadow: 0 0 10px #0ff;
    transition: all 0.2s ease;
}

select:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px #0ff;
}

#routes-container {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: none;
    color: white;
}

.route {
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 0 10px #00f2ff;
}

.route h3 {
    margin: 0;
    font-size: 16px;
    color: #ffcc00;
}

.route p {
    margin: 5px 0;
    color: #eee;
}
