body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
    background-color: #f8f9fa;
}
.container {
    max-width: 900px;
    margin: auto;
}
.ticket-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.ticket-card {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.ticket-card h2 {
    margin: 0;
    color: #333;
}
.ticket-card p {
    margin: 10px 0;
    color: #555;
}
.buy-button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
}
.buy-button:hover {
    background-color: #0056b3;
}
@media (max-width: 900px) {
    .ticket-container {
        justify-content: center;
    }
    .ticket-card {
        width: calc(33.333% - 20px);
    }
}
@media (max-width: 600px) {
    .ticket-container {
        flex-direction: column;
        align-items: center;
    }
    .ticket-card {
        width: 100%;
        max-width: 300px;
    }
}
.highlight {
    font-size: 1.2em;
    font-weight: bold;
    color: #007bff;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 2em;
    margin-bottom: 1em;
}
.nav-container {
    display: flex;
    justify-content: space-between;
}
.nav-container-right {
    text-align: right;
}
.nav-container-left {
    text-align: left;
}
.rules {
    margin-bottom: 1em;
}

