body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    cursor: url('custom-cursor.png'), auto;
}

.container {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

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

header {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.logo {
    width: 800px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

.logo.glow {
    animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
    0%, 100% {
        filter: drop-shadow(0 0 5px #0141f4) drop-shadow(0 0 10px #0141f4) drop-shadow(0 0 20px #0141f4) drop-shadow(0 0 40px #0141f4) drop-shadow(0 0 80px #0141f4) drop-shadow(0 0 90px #0141f4) drop-shadow(0 0 100px #0141f4) drop-shadow(0 0 150px #0141f4);
    }
    50% {
        filter: drop-shadow(0 0 5px #0141f4) drop-shadow(0 0 10px #0141f4) drop-shadow(0 0 15px #0141f4) drop-shadow(0 0 20px #0141f4) drop-shadow(0 0 30px #0141f4) drop-shadow(0 0 35px #0141f4) drop-shadow(0 0 40px #0141f4) drop-shadow(0 0 50px #0141f4);
    }
}

.logo.dissolve-logo {
    animation: dissolve-logo 2s forwards;
}

@keyframes dissolve-logo {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

.dissolve-text {
    animation: dissolve-text 1.5s forwards;
}

@keyframes dissolve-text {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

.instruction-text {
    position: absolute;
    bottom: 20px;
    font-size: 1.2em;
    color: #0141f4;
    width: 100%;
    text-align: center;
}

.video-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 20px; /* Add some space between the logo and the video */
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent, black);
    pointer-events: none;
    border-radius: 40px; /* Optional: to round the corners */
}

.background-video {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 20px auto;
    border-radius: 40px; /* Match this with the border-radius in .video-wrapper::before if used */
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.custom-cursor {
    cursor: url('custom-cursor.png'), auto;
}
