body {
    margin: 0;
    background: #000;
}

body div.landing-page-html {
    color: #fff;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

body div.landing-page-html {
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}




.container-landing {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    perspective: 1000px;
}

.container-landing::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(62, 184, 255, 0.1), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 62, 184, 0.1), transparent 40%);
    pointer-events: none;
}

.scroll-element {
    border-radius: 20px !important;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 44px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow:
        0 0 10px rgba(62, 184, 255, 0.3),
        0 0 20px rgba(62, 184, 255, 0.2),
        0 0 30px rgba(62, 184, 255, 0.1);

    animation-name: tech-animation;
    animation-duration: 1s;
    animation-timeline: scroll();
    animation-fill-mode: both;
}

.scroll-element:hover {
    filter: brightness(140%);
    background: rgba(30, 30, 30, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow:
        0 0 10px rgba(62, 184, 255, 0.35),
        0 0 20px rgba(62, 184, 255, 0.25),
        0 0 30px rgba(62, 184, 255, 0.15);
    cursor: pointer;
}

.hologram {
    position: absolute;
    inset: 5px;
    border-radius: 2px;
    background:
        linear-gradient(135deg, transparent 0%, rgba(62, 184, 255, 0.1) 100%),
        repeating-linear-gradient(rgba(62, 184, 255, 0.1) 0px,
            rgba(62, 184, 255, 0.1) 1px,
            transparent 1px,
            transparent 2px);
    opacity: 0.5;
    animation: hologram-scan 2s linear infinite;
}

@keyframes hologram-scan {
    0% {
        background-position: 0 0;
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        background-position: 0 200px;
        opacity: 0.3;
    }
}

.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #3eb8ff;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

@keyframes particle-float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

.scroll-element::before,
.scroll-element::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 2px;
    padding: 1px;
    background: linear-gradient(45deg,
            #3eb8ff,
            #ff3eb8,
            #3eb8ff);
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.25;
    border-radius: 20px !important;
    /* animation: border-pulse 2s linear infinite; */
}

/* .scroll-element::after {
    animation: border-pulse 2s linear infinite reverse;
} */

.cyber-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: monospace;
    font-size: 14px;
    color: #3eb8ff;
    text-shadow: 0 0 5px #3eb8ff;
    white-space: nowrap;
    overflow: hidden;
    width: 200px;
    /* width: 0; */
    /* animation: type 2s steps(20) infinite; */
}

@keyframes type {
    0% {
        width: 0;
    }

    50% {
        width: 7.5em;
    }

    100% {
        width: 0;
    }
}

@keyframes border-pulse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes tech-animation {
    0% {
        transform: translateY(-50%) rotateX(0deg) rotateY(0deg) scale(1);
        box-shadow:
            0 0 10px rgba(62, 184, 255, 0.3),
            0 0 20px rgba(62, 184, 255, 0.2),
            0 0 30px rgba(62, 184, 255, 0.1);
    }

    50% {
        transform: translateY(-50%) rotateX(180deg) rotateY(180deg) scale(1.25);
        box-shadow:
            0 0 15px rgba(255, 62, 184, 0.3),
            0 0 25px rgba(255, 62, 184, 0.2),
            0 0 35px rgba(255, 62, 184, 0.1);
    }

    100% {
        transform: translateY(-50%) rotateX(360deg) rotateY(360deg) scale(1.5);
        box-shadow:
            0 0 20px rgba(98, 255, 184, 0.3),
            0 0 30px rgba(98, 255, 184, 0.2),
            0 0 40px rgba(98, 255, 184, 0.1);
    }
}

.grid {
    position: fixed;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(62, 184, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62, 184, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    transform-origin: center;
    animation: grid-rotate 1s linear;
    animation-timeline: scroll();
    opacity: 0.3;
}

.parallax-layer {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.layer-1 {
    transform: translateZ(-100px) scale(1.5);
}

.layer-2 {
    transform: translateZ(-200px) scale(2);
}

.layer-3 {
    transform: translateZ(-300px) scale(2.5);
}

@keyframes grid-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(-15deg) scale(1.2);
    }
}

.instruction {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #3eb8ff;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    letter-spacing: 1px;
    border: 1px solid rgba(62, 184, 255, 0.3);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(62, 184, 255, 0.2);
}


@keyframes fadeInOutAnimation {
    0% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.22;
    }

    100% {
        opacity: 0.1;
    }
}




.data-stream {
    position: fixed;
    font-family: monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    white-space: nowrap;
    /* animation: data-flow 5s linear infinite; */
    animation: fadeInOutAnimation infinite ease-in-out 3s;
    opacity: 0.2;
}



.socials-login-button-option-disabled {
    pointer-events: none !important;
    cursor: none !important;
    opacity: 0.15;
    animation-name: none !important;
    /* box-shadow: none !important; */
    filter: blur(2px) brightness(50%);
}

.socials-login-button-option-disabled:hover {
    pointer-events: none !important;
    cursor: none !important;
}
