body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #f5f5f5;
}

.site-header {
    text-align: center;
    padding: 35px 15px;
    background: #000;
    border-bottom: 3px solid #d71920;
}

.site-header h1 {
    margin: 0;
    font-size: 46px;
}

.site-header p {
    max-width: 650px;
    margin: 12px auto 0;
    color: #ccc;
    line-height: 1.4;
}

.site-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    padding: 14px;
    background: #1b1b1b;
    border-bottom: 1px solid #333;
}

.site-nav a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

.site-nav a:hover {
    text-decoration: underline;
}

.page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    font-size: 28px;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #333;
}

.filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    color: #ffcc00;
    font-weight: bold;
    cursor: pointer;
}

.filter-toggle input {
    transform: scale(1.2);
}

.day-section {
    margin-bottom: 35px;
}

.day-header {
    color: #fff;
    font-size: 24px;
    margin: 20px 0 10px;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-card {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 15px;
    background: #1f1f1f;
    border-left: 5px solid #d71920;
    border-radius: 8px;
    padding: 12px 14px;
}

.event-time {
    font-weight: bold;
    color: #ffcc00;
    white-space: nowrap;
}

.event-details h3 {
    margin: 0 0 3px;
    font-size: 20px;
}

.event-details p {
    margin: 0;
}

.venue {
    color: #ddd;
    font-weight: bold;
    font-size: 14px;
}

.description {
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.4;
    margin-top: 8px;
}

.event-link {
    margin-top: 8px;
}

.event-link a {
    color: #ffcc00;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.event-link a:hover {
    text-decoration: underline;
}

.category {
    display: inline-block;
    background: #333;
    color: #ffcc00;
    border: 1px solid #555;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
}

.now-line {
    display: flex;
    align-items: center;
    margin: 15px 0;
    color: #ff4444;
    font-weight: bold;
}

.now-line::before,
.now-line::after {
    content: "";
    flex: 1;
    border-top: 2px solid #ff4444;
}

.now-line span {
    padding: 0 10px;
}

.past-event {
    opacity: 0.35;
}

.event-details-expand {
    margin-top: 8px;
}

.event-details-expand summary {
    color: #ffcc00;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.event-details-expand summary:hover {
    text-decoration: underline;
}

.event-details-expand .description {
    margin-top: 8px;
}

.site-footer {
    text-align: center;
    color: #777;
    padding: 30px;
}

@media (max-width: 700px) {
    .site-header h1 {
        font-size: 34px;
    }

    .event-card {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .category {
        width: fit-content;
    }
}