:root {
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.05);
    --accent-red: #ff2a2a;
    --accent-blue: #00e5ff;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.accent {
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(255, 42, 42, 0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.logo {
    font-size: 28px;
    font-family: var(--font-heading);
    font-weight: 900;
}

.logo a {
    display: block;
    line-height: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo a:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 8px rgba(255, 42, 42, 0.4));
}

.logo img, .footer-brand img {
    border-radius: 10px;
}

.logo span {
    color: var(--accent-red);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-home-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-home-link::after {
    display: none !important;
}

.nav-home-link:hover {
    color: var(--accent-red) !important;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-red);
}

.nav-links a.nav-btn {
    background-color: var(--accent-red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 42, 42, 0.4);
    display: inline-block;
}

.nav-links a.nav-btn::after {
    display: none;
}

.nav-links a.nav-btn:hover {
    background-color: #d11f1f;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 42, 42, 0.8);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 90vh;
    background-image: url('assets/images/t7r-orange-camaro.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-start;
    padding-top: 180px;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 12, 0.3) 0%,
        rgba(10, 10, 12, 0) 25%,
        rgba(10, 10, 12, 0) 75%,
        rgba(10, 10, 12, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    min-width: 0;
    padding: 0 20px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 0;
    font-style: italic;
}

.hero-logo {
    max-width: 100%;
    width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.6));
}

/* Hero Intro Section */
.hero-intro {
    padding: 80px 50px;
    background-color: var(--bg-dark);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-intro .container {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-intro p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.primary-btn {
    background-color: var(--accent-red);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.4);
}

.primary-btn:hover {
    background-color: #d11f1f;
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.8);
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.secondary-btn:hover {
    background-color: var(--accent-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 100px 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tagline {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--text-main) !important;
    margin-top: 40px;
    text-transform: uppercase;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.team-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    width: 250px;
    border-top: 3px solid var(--accent-red);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 42, 42, 0.15);
}

.team-card h3 {
    margin-bottom: 10px;
    color: #fff;
}

.team-card p {
    font-size: 1rem !important;
    color: var(--accent-red) !important;
    font-weight: 700;
}

.media-tile {
    background: var(--bg-card);
    padding: 20px 15px;
    border-radius: 10px;
    flex: 1;
    min-width: 150px;
    text-align: center;
    border-top: 3px solid var(--accent-red);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 42, 42, 0.15);
}

.media-tile h4 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Split Section */
.split-section {
    display: flex;
    align-items: center;
    padding: 0;
    min-height: 80vh;
}

.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    padding: 80px 10%;
}

.split-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.split-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.schedule-list {
    list-style: none;
}

.schedule-list li {
    margin-bottom: 15px;
}

.schedule-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-card);
    border-left: 4px solid var(--accent-blue);
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.schedule-list a:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
    border-color: var(--accent-red);
}

.schedule-list a.partner-btn {
    background: var(--accent-red);
    color: #fff;
    border-left-color: var(--accent-blue);
}

.schedule-list a.partner-btn:hover {
    background: #d11f1f;
    color: #fff;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-size: 0.8rem;
    top: 6px;
}

.benefits-list strong {
    color: #fff;
}

.split-image {
    flex: 1;
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.border-glow {
    box-shadow: inset 0 0 100px rgba(10,10,12,1);
}

/* Footer */
footer {
    background-color: #050506;
    padding: 60px 50px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-form {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-top: 2px solid var(--accent-red);
}

.footer-form h4 {
    margin-bottom: 15px;
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-form input {
    flex: 1;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-body);
}

.footer-form input:focus {
    outline: none;
    border-color: var(--accent-red);
}

.footer-form .submit-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    box-shadow: none;
}

.form-status {
    font-size: 0.9rem;
    margin-top: 5px;
    min-height: 20px;
    color: var(--accent-red);
}
.form-status.success {
    color: #4CAF50;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-bottom a:hover {
    color: #ff5555;
    text-shadow: 0 0 10px rgba(255, 42, 42, 0.5);
}

/* Video Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    padding: 0;
}

.modal.show {
    display: block;
}

.modal.lightbox-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    background: #000;
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.3);
    border-radius: 8px;
    padding: 10px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -10px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-red);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.schedule-modal-content {
    max-width: 1000px;
    padding: 30px;
    background: #0a0a0c;
    color: #fff;
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.3);
    border-radius: 8px;
}

.schedule-modal-content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
    max-height: 60vh;
    overflow-y: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    text-align: left;
    font-family: var(--font-body);
}

.schedule-table th, .schedule-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-table th {
    background: rgba(255, 42, 42, 0.1);
    color: var(--accent-red);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.schedule-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.schedule-table td:first-child::before {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.5px solid #fff;
    background-color: transparent;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 900;
    color: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    overflow: visible;
}

.schedule-table tr.past-completed td:first-child::before {
    content: '✓';
    color: #fff;
    background-color: #2e7d32;
    border-color: #2e7d32;
    box-shadow: 0 0 6px rgba(46, 125, 50, 0.8);
}


.partners-grid-container {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 15px;
}

.main-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.main-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}
.video-thumbnail, .gallery-thumbnail {
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
    border: 2px solid transparent;
}
.video-thumbnail:hover, .gallery-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(255, 42, 42, 0.4);
}
.video-thumbnail.active {
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 15px rgba(255, 42, 42, 0.8);
}

.lightbox-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

#lightboxImage {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    object-fit: contain;
}

.lightbox-nav {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    font-size: 3rem;
    padding: 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
    user-select: none;
}

.lightbox-nav:hover {
    background: rgba(255, 42, 42, 0.8);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.partner-tile {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

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

.modal-top-img {
    display: block;
    max-width: 250px;
    width: 100%;
    margin: 0 auto 20px;
    border-radius: 20px;
    object-fit: cover;
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.fade-in.appear {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 12, 0.95);
        padding: 20px 0;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        height: 60vh;
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-start;
        padding-top: 130px;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-intro {
        padding: 50px 20px;
    }

    .hero-intro p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .split-section {
        flex-direction: column !important;
    }
    
    .split-image {
        width: 100%;
        height: 350px;
        flex: none !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .split-content {
        width: 100%;
        padding: 50px 20px;
        flex: none !important;
    }
}

/* Theme Toggle Button Style */
.theme-switch-btn {
    position: relative;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.theme-switch-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 42, 42, 0.2);
    border-color: var(--accent-red);
    box-shadow: 0 0 15px rgba(255, 42, 42, 0.4);
}

.theme-switch-btn svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    position: absolute;
}

/* Icons toggle based on checkbox */
.theme-switch-btn .sun-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0);
    color: #ffaa00;
}

.theme-switch-btn .moon-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
    color: var(--accent-blue);
}

/* When light mode is active */
body:has(#theme-toggle:checked) .theme-switch-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body:has(#theme-toggle:checked) .theme-switch-btn .sun-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

body:has(#theme-toggle:checked) .theme-switch-btn .moon-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0);
}

/* Light Theme Variables and Overrides */
body:has(#theme-toggle:checked) {
    --bg-dark: #f5f5f7;
    --bg-card: rgba(0, 0, 0, 0.04);
    --text-main: #1d1d1f;
    --text-muted: #6e6e73;
}

/* Select overrides for light mode */
body:has(#theme-toggle:checked) .navbar {
    background: rgba(245, 245, 247, 0.85);
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

body:has(#theme-toggle:checked) .navbar .nav-links a {
    color: #1d1d1f;
}

body:has(#theme-toggle:checked) .navbar .nav-links a:hover {
    color: var(--accent-red);
}

body:has(#theme-toggle:checked) .navbar .hamburger span {
    background-color: #1d1d1f;
}

body:has(#theme-toggle:checked) .schedule-list a {
    color: #1d1d1f;
    background: rgba(0, 0, 0, 0.04);
}

body:has(#theme-toggle:checked) .schedule-list a:hover {
    background: rgba(0, 0, 0, 0.08);
}

body:has(#theme-toggle:checked) .team-card h3,
body:has(#theme-toggle:checked) .media-tile h4 {
    color: #1d1d1f;
}

body:has(#theme-toggle:checked) .modal-content,
body:has(#theme-toggle:checked) .schedule-modal-content {
    background: #f5f5f7;
    color: #1d1d1f;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.15);
}

body:has(#theme-toggle:checked) .schedule-table th {
    background: rgba(255, 42, 42, 0.08);
}

body:has(#theme-toggle:checked) .schedule-table td,
body:has(#theme-toggle:checked) .schedule-table th {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body:has(#theme-toggle:checked) .schedule-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

body:has(#theme-toggle:checked) .schedule-table td {
    color: #333;
}

body:has(#theme-toggle:checked) .schedule-table td:first-child::before {
    border-color: #333;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

body:has(#theme-toggle:checked) .close-modal {
    color: #6e6e73;
}

body:has(#theme-toggle:checked) .close-modal:hover {
    color: var(--accent-red);
}

body:has(#theme-toggle:checked) footer {
    background-color: #eaeaea;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body:has(#theme-toggle:checked) footer hr {
    border-top-color: var(--accent-red) !important;
}

body:has(#theme-toggle:checked) .footer-news h4 {
    color: #1d1d1f !important;
}

body:has(#theme-toggle:checked) .footer-news li {
    color: #555 !important;
}

body:has(#theme-toggle:checked) .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #777;
}

body:has(#theme-toggle:checked) .hero-intro p {
    color: #1d1d1f;
}

body:has(#theme-toggle:checked) .benefits-list li {
    color: #555;
}

body:has(#theme-toggle:checked) .benefits-list strong {
    color: #1d1d1f;
}

body:has(#theme-toggle:checked) .split-content p {
    color: #555;
}

body:has(#theme-toggle:checked) .schedule-list a {
    border-left-color: var(--accent-red);
}

body:has(#theme-toggle:checked) .schedule-list a:hover {
    border-left-color: var(--accent-blue);
}

body:has(#theme-toggle:checked) .schedule-list a.partner-btn {
    color: #fff;
    background: var(--accent-red);
    border-left-color: var(--accent-blue);
}

body:has(#theme-toggle:checked) .schedule-list a.partner-btn:hover {
    background: #d11f1f;
    color: #fff;
    border-left-color: var(--accent-blue);
}
