.intro-video {
    color: #fff;
    display: grid;
    grid-template-columns: .6fr .4fr;
    align-items: center;
}

.intro-content {
    background: #FF5A00;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin: auto;
    height: -webkit-fill-available;
}

.intro-content p {
    margin: 0.5rem 0;
    width: 80%;
}

#intro-content-age {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0;
}

#intro-content-heading {
    font-weight: bolder;
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 1rem;
}

.buttonToGame {
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #FF5A00;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.buttonToGame:hover {
    background: #FF8A33;
    color: #fff;
}

.intro-vid {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin: auto;
    height: -webkit-fill-available;

}

.intro-vid video {
    width: 100%;
    height: -webkit-fill-available;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .intro-video {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .intro-content {
        text-align: center;
        align-items: center;
    }

    .intro-content p {
        width: 100%;
    }

    .intro-vid {
        width: 100%;
        height: 200px; /* Adjust as needed */
        background: #FF5A00;
        border-radius: 0;
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    #intro-content-heading {
        font-size: 2em;
    }

    .buttonToGame {
        padding: 0.5rem 1rem;
    }

    .intro-vid {
        height: 150px; /* Adjust as needed */
    }
}


.faq h2, .faq p{
    color: #fff ;
}