@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Heebo&family=Inter&family=Montserrat&family=Noto+Sans+Meroitic&family=Poppins:wght@400;500&family=Rubik:wght@400;700&display=swap');


* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000;
    overflow: hidden;
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;

    opacity: 0;
    /* Start with 0 opacity */
    transition: opacity 1s ease-in-out;
    /* Apply a fade-in transition */
}

.overlay-message:hover {
    -webkit-animation: glowing-text 1s ease-in-out infinite alternate;
    -moz-animation: glowing-text 1s ease-in-out infinite alternate;
    animation: glowing-text 1s ease-in-out infinite alternate;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #000000, 0 0 40px #000000, 0 0 50px #0f0f0f, 0 0 60px #000000, 0 0 70px #131213;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.986);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    /* Ensure the overlay is above the video */
}

.overlay-message {
    transition: ease-in-out 0.4s;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

@media only screen and (max-width: 600px) {
    .flexbox-item-1 {
        width: 48px;
        margin-right: 2%;
    }

    #background-video {
        display: none;
    }

    body {
        background-image: url('/img/cta.png');

    }

    .status-container {
        margin-right: 70%;
    }


}

.flexbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}


.pfp {
    object-fit: cover;
    border-radius: 50%;
    width: 128px;
    display: block;
    margin: 0 auto;
    opacity: 0;
    /* Shorter way to center horizontally */
}


.flexbox-item {
    background-color: #03030338;

    border-radius: 2vh;
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
    padding-bottom: 1%;
}

.flexbox-item-1 {
    padding: 80px;
    box-shadow: rgba(0, 0, 0, 0.089) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.068) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    width: 800px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    min-height: 300px;
}

.header-container {

    padding-bottom: 1%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.name {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 44px;
    text-align: center;
    margin-right: 10px;
    /* Add some spacing between the name and badges */
    z-index: 1;
    /* Set a lower z-index to place it behind the text */
}

.badge2 {
    padding-left: 1%;
}

.svg-icons {
    display: flex;
    align-items: center;
    justify-content: center;

}

.discord,
.youtube,
.github,
.steam {
    filter: drop-shadow(0 0 0.2rem white);
    fill: #fff;
}

.status {
    margin-left: 23%;

}

.github,
.discord,
.youtube,
.steam {
    transition: all .2s ease-in-out;
}

.github:hover {
    transform: scale(1.3);
    transition: all .2s ease-in-out;
}

.youtube:hover {
    transform: scale(1.3);
    transition: all .2s ease-in-out;
}

.discord:hover {
    transform: scale(1.3);
    transition: all .2s ease-in-out;
}

.steam:hover {
    transform: scale(1.3);
    transition: all .2s ease-in-out;
}




#button-container {
    position: fixed;
    bottom: 20px;
    /* Adjust as needed */
    right: 8px;
    /* Adjust as needed */
}
#button2-container {
    position: fixed;
    bottom: 20px;
    /* Adjust as needed */
    left: 8px;
    /* Adjust as needed */
}
#button3-container {
    position: absolute; /* Position the container absolutely */
    top: 10px; /* Adjust the top position */
    right: 10px; /* Adjust the right position */
    z-index: 1000; /* Ensure it's above other content */
  }
#my-button {
    background: none;
    color: #fff;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    border: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#my-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

#my-button:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    /* Add a glowing effect */
}

#my-button:hover::before {
    height: 100%;
    opacity: 0.2;
    /* Adjust the opacity for the glow */
}

#disabled-button {
    background: none;
    color: #fff;
    padding: 8px 16px;
    cursor: default;
    font-size: 12px;
    text-transform: uppercase;
    border: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
  }

#hidden-button {
    background: none;
    color: #fff;
    padding: 8px 16px;
    cursor: default;
    font-size: 12px;
    text-transform: uppercase;
    border: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
    display: none !important;
}


.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.3s;
}

.popup {
    background: rgb(85, 84, 84);
    border-radius: 10px;
    padding: 40px; /* Increase padding for a larger box */
    text-align: center;
    font-size: 18px; /* Increase font size */
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s, opacity 0.3s;
}


.popup.active {
    opacity: 1;
    transform: scale(1);
}

.popup-link {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: bold; /* Add this line to make the link bold */
    text-decoration: underline;
    color: #0077FF;
    margin: 10px 0;
    display: block;
}

.popup-buttons {
    margin-top: 15px;
}

button {
    margin: 0 10px;
    padding: 10px 20px;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s; /* Add a 0.2s transition for the transform property */
}

button:hover {
    transform: scale(1.05); /* Scale the button up by 5% on hover */
}

#confirm-button {
    background: #4CAF50; /* Green color for "Yes" button */
}

#confirm-button:hover {
    background: #45a049; /* Lighter green for hover on "Yes" button */
}

#cancel-button {
    background: #FF0000; /* Red color for "No" button */
}

#cancel-button:hover {
    background: #D70000; /* Darker red for hover on "No" button */
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0; /* Adjust padding as needed */
    background-color: transparent; /* Set the background to transparent */
}

/* Styles for the disclaimer in the footer */
.disclaimer {
    font-size: 14px;
    color: red;
    text-align: center; /* Center the text within the footer */
    /* Optional: Add a text shadow for better readability */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.sound-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
  }
  
  /* Add the appropriate styling for the icon */
  #soundIcon {
    font-size: 24px; /* Adjust the size as needed */
    transition: transform 0.3s ease-in-out; /* Transition property for the animation */
    color: white;
  }
  .hidden {
    display: none;
  }
