body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    background: no-repeat;
    background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black background with 50% opacity */
    z-index: 0;
}

.discord-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.discord-button img {
    width: 60px;
    height: 70px;
}

.popup {
    display: none; /* Hidden by default */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8); /* Translucent black background */
    padding: 20px; /* Adjusted padding to make the box smaller */
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 200px; /* Set a maximum width for the box */
}

.popup p {
    margin: 0;
    color: white; /* Text color */
    font-size: 16px; /* Adjust font size */
}

.popup .close {
    position: absolute;
    top: 6px;
    right: 7px;
    font-size: 24px;
    color: #fff; /* X color */
    cursor: pointer;
}

.popup .close:hover {
    color: #ccc; /* Hover color */
}
