@font-face {
    font-family: 'PlanetKosmos';
    src: url('PlanetKosmos.ttf') format('truetype'); /* Ensure this path is correct */
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: black;
    font-family: 'Times New Roman', serif;
}

#bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.logo {
    width: 150px; /* Adjust size as needed */
    margin-bottom: 30px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.social-button {
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    position: relative;
    border-radius: 10px;
    font-size: 24px;
    color: white;
    font-family: 'PlanetKosmos', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .social-button::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 12px;
        z-index: -1;
    }

@keyframes borderAndGlow {
    0% {
        border-color: transparent;
        box-shadow: none;
    }

    100% {
        border-color: transparent;
        box-shadow: none;
    }
}

.social-button:hover::before {
    border-color: white;
    box-shadow: 0 0 15px white;
}

.social-button:hover {
    transform: scale(1.1);
}

.social-button span {
    position: relative;
    z-index: 1;
    animation: textShadowAnimation 5s infinite alternate;
    text-shadow: 1px 1px 0 black, 1px 1px 0 black, 2px 2px 0 black, -1px -1px 0 black, -1px -1px 0 black;
}

@keyframes textShadowAnimation {
    0% {
        text-shadow: 0 0 10px #fc05c3, 0 0 20px #fc05c3, 0 0 30px #fc05c3; /* Pink */
    }

    33% {
        text-shadow: 0 0 10px #05f4fc, 0 0 20px #05f4fc, 0 0 30px #05f4fc; /* Light Blue */
    }

    66% {
        text-shadow: 0 0 10px #9105fc, 0 0 20px #9105fc, 0 0 30px #9105fc; /* Purple */
    }

    100% {
        text-shadow: 0 0 10px #fc05c3, 0 0 20px #fc05c3, 0 0 30px #fc05c3; /* Back to Pink */
    }
}

.social-button:hover span {
    animation: none;
    text-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white;
    color: white;
}

.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #fc03db, #03fcf4);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translate(-50%, 50%);
    z-index: 10;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
}

    .notification.show {
        opacity: 1;
        transform: translate(-50%, 0);
    }

.globe-container {
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
