.bg-video-section {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1; 
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 2; 
    color: white;
    text-align: center;
    padding: 20px;
}

.content p {
    font-size: 1.2em;
}

.bg-video-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.welcome {
    text-align: center;
    padding: 10px 0;
    max-width: 100%;
    border-bottom: 2px solid #684883;
    border-top: 2px solid #684883;
}

.welcome h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: #684883;
    font-style: italic;
}

.content {
    display: flex;
    flex-direction: column; 
    justify-content: left;
    align-items: left;
    position: relative;
    width: 100%; 
    max-width: 100%; 
    color: white;
    padding: 20px 30px;
    z-index: 2; 
    text-align: left;
}

iframe {
    flex: 0 0 40%; 
    max-width: 100%; 
    border: none;
}

table {
    width: 65%; 
    border-collapse: collapse;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
    margin-left: 50px;
}

table th,
table td {
    padding: 10px 15px;
    text-align: left;
}

table th {
    color: white;
    font-weight: bold;
    font-size: 1.4em;
    text-transform: uppercase;
}

table td {
    background-color: transparent;
    font-size: 1.3em;
}

table tr:hover {
    background-color: rgba(104, 72, 131, 0.5);
}

.lyricslink {
    color: #ab77d8;
}

.lyricslink:hover {
    color: white;
}

iframe {
    display: flex;
    justify-content: right;
}

/* Media Queries */
@media (max-width: 1024px) {
    .bg-video {
        height: 70vh; 
    }

    .welcome h1 {
        font-size: 2em; 
    }

    table {
        width: 90%; 
        margin-left: auto;
        margin-right: auto; 
    }

    .content {
        padding: 20px; 
    }
}

@media (max-width: 767px) {
    .bg-video {
        height: 60vh; 
    }

    .welcome h1 {
        font-size: 1.5em; 
        height: fit-content;
        padding-top: 50px;
    }

    table {
        width: 95%; 
    }

    .content {
        padding: 15px; 
    }

    table th,
    table td {
        font-size: 1.2em; 
    }
}

@media (max-width: 480px) {
    .bg-video {
        height: 50vh; 
    }

    .welcome h1 {
        font-size: 1.2em;
        height: fit-content;
        padding-top: 50px;
    }

    table {
        width: 100%; 
    }

    .content {
        padding: 10px; 
        text-align: center; 
    }

    table th,
    table td {
        font-size: 1em; 
        padding: 8px; 
    }
}
