body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.event-container {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.event-box {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.event-counter {
    margin-bottom: 1rem;
}

.clock {
    transform: scale(0.5);
    transform-origin: center top;
}

.seats-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.seats-label {
    font-size: 0.9rem;
    background-color: #333;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.total-seats {
    font-size: 0.8rem;
    color: #888;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .event-container {
        width: 100%;
    }
}
