body {
    background: #111;
    color: white;
    font-family: Arial, sans-serif;
}

#container {
    padding: 20px;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    width: 180px;
}

#event-title {
    font-size: 48px;
}

#timer {
    font-size: 60px;
    font-weight: bold;
    color: #00e676;
}

#tables {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.table-card {
    background: #222;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 32px;
    border: 2px solid #333;
}

.table-title {
    font-size: 42px;
    margin-bottom: 10px;
    color: #64b5f6;
}

.participants {
    font-size: 28px;
    line-height: 1.3em;
}
