<style>
    .schedule-section {
        max-width: 1100px;
        margin: 40px auto;
        padding: 0 20px;
        font-family: Arial, Helvetica, sans-serif;
    }

    .schedule-title {
        text-align: center;
        margin-bottom: 35px;
    }

    .schedule-title h2 {
        margin: 0;
        color: #e5a91f;
        font-size: 38px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .schedule-title p {
        color: #d8c6a3;
        font-size: 16px;
        margin-top: 8px;
    }

    .schedule-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .day-card {
        background: #18120f;
        border: 1px solid #4d3928;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,.35);
    }

    .day-header {
        background: linear-gradient(135deg, #8b1e16, #5b120e);
        color: #fff;
        padding: 16px 20px;
        font-size: 24px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        border-bottom: 3px solid #e5a91f;
    }

    .show-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 14px 20px;
        border-bottom: 1px solid #34271e;
        transition: background .2s ease, padding-left .2s ease;
    }

    .show-row:last-child {
        border-bottom: none;
    }

    .show-row:hover {
        background: #241a14;
        padding-left: 25px;
    }

    .show-time {
        color: #d8c6a3;
        font-size: 14px;
        font-weight: bold;
        white-space: nowrap;
    }

    .show-name {
        color: #f6e6c8;
        font-size: 16px;
        font-weight: bold;
        text-align: right;
    }

    .special-show {
        background: rgba(229,169,31,.08);
    }

    .special-show .show-name {
        color: #e5a91f;
    }

    @media (max-width: 750px) {
        .schedule-grid {
            grid-template-columns: 1fr;
        }

        .schedule-title h2 {
            font-size: 30px;
        }
    }

    @media (max-width: 500px) {
        .show-row {
            display: block;
        }

        .show-time {
            display: block;
            margin-bottom: 5px;
        }

        .show-name {
            text-align: left;
        }
    }
</style>