 
    #video-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 3;
        background: rgba(0, 0, 0, 0.45);
    }

    .logo-top {
        width: 100px;
    }

    .language-switcher select {
        background: black;
        border-radius: 8px;
        padding: 8px;
        font-size: 1rem;
        color: #d4af37;
    }

    .language-switcher select option {
        color: #d4af37;
    }

    .centered-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
        text-align: center;
        z-index: 2;
        margin-top: 60px;
    }

    .content-overlay {
        max-width: 90%;
        padding: 20px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-title {
        color: #fff;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .button-container .btn-custom {
        margin: 10px;
        width: 150px;
        font-size: 1.1rem;
        padding: 10px;
        transition: transform 0.2s ease;
    }

    .btn-custom:active {
        transform: scale(0.95);
    }

    body {
        overflow-y: hidden;
    }
    .bigver{
        display: flex;
    }
    .smolver{
        display: none;
    }
    @media (max-width: 768px) {
        .logo-top {
            width: 80px;
        }

        .page-title {
            font-size: 1.5rem;
        }

        .button-container .btn-custom {
            width: 90%;
            font-size: 1rem;
        }

        .centered-container {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translate(0, -50%);
        }

        .content-overlay {
            width: 90%;
        }
        .bigver{
            display: none;
        }
        .smolver{
                display: flex;
        }
    } 
    .today-race-titles ul {
        list-style: none;
        padding: 0;
    }

    .today-race-titles .race-title {
        color: white;
        font-size: 1.72rem;
        margin: 5px 0;
    } 