/* Reset some basic styles */
body, h1, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: none; /* Remove background gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
    overflow: hidden;
    background-color: black;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Make the iframe non-interactive */
    -webkit-filter: blur(0.1rem);
    filter: blur(0.1rem);
}

.container {
    text-align: center;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    z-index: 1; /* Ensure content is above the video */
}

.box {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    overflow: hidden;
    -webkit-backdrop-filter: blur(0.4rem);
    backdrop-filter: blur(0.4rem);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.8),
                0 0 20px 15px rgba(0, 0, 0, 0.6),
                0 0 30px 25px rgba(0, 0, 0, 0.4),
                0 0 40px 35px rgba(0, 0, 0, 0.2),
                0 0 50px 45px rgba(0, 0, 0, 0.1),
                0 0 60px 55px rgba(0, 0, 0, 0.05);
}

.box-banner {
    margin: 35% 20%;
    width: 100%;
    object-fit: contain;
    background-image: url("assets/media/logo.webp");
}

.name {
    margin: 20px;
    color: white;
    font-size: 150%;
    padding: 5px 10px;
    border-radius: 5px;
}

.description {
    margin: 20px 0;
    color: white;
}

.socials-buttons {
    margin: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    text-align: center;
    transition: transform 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.btn i {
    font-size: 200%;
}

.btn-discord {
    color: #5865F2;
}

.btn-youtube {
    color: #FF0000;
}

.btn-twitch {
    color: #9146FF;
}

.btn-x-twitter {
    color: #1DA1F2;
}

.btn:hover {
    transform: scale(1.5);
    text-shadow: 0px 0px 10px white;
}
