body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    color: #fff;
    background-image: url('bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: top left;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 350px;
    width: 100%;
}
h1 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.links {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.link {
    display: flex;
    justify-content: space-between;
    background: #333;
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.link:hover {
    background: #fff;
    color: #222;
}
.highlight {
    background-color: palegoldenrod;
    color: #131313;
    box-shadow: 0 0 10px 10px palegoldenrod;
    font-weight: 700;
    margin-bottom: 2em;
}
.highlight:hover {
    box-shadow: 0 0 10px 10px white;
}
.tickets::before,
.tickets::after {
    content: '🎟️';
}
.icon,
.placeholder {
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    margin-right: 0.5em;
    display: inline-block;
}
@media (max-width: 500px) {
    .container {
        padding: 1.2rem 0.5rem;
        max-width: 95vw;
    }
    h1 {
        font-size: 1.4rem;
    }
}
