@font-face {
    font-family: 'EtherealFont';
    src: url('ethereal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #000000;
    margin: 0;
    text-align: center;
    overflow-x: hidden;
    font-family: 'EtherealFont', sans-serif;
}

.liquid-void {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    filter: blur(45px) contrast(150);
    z-index: -20;
    overflow: hidden;
}

.orb {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 2s ease, height 2s ease;
    will-change: transform, width, height;
}

.orb-1 {
    width: 15vw;
    height: 15vw;
}

.orb-2 {
    width: 25vw;
    height: 25vw;
}

.orb-3 {
    width: 12vw;
    height: 12vw;
}

.orb-4 {
    width: 30vw;
    height: 30vw;
}

.orb-5 {
    width: 18vw;
    height: 18vw;
}

.orb-6 {
    width: 14vw;
    height: 14vw;
}

.orb-7 {
    width: 22vw;
    height: 22vw;
}

.orb-8 {
    width: 10vw;
    height: 10vw;
}

.orb-9 {
    width: 16vw;
    height: 16vw;
}

.orb-10 {
    width: 28vw;
    height: 28vw;
}

.orb-11 {
    width: 11vw;
    height: 11vw;
}

.orb-12 {
    width: 19vw;
    height: 19vw;
}

.orb-13 {
    width: 24vw;
    height: 24vw;
}

.orb-14 {
    width: 13vw;
    height: 13vw;
}

.orb-15 {
    width: 17vw;
    height: 17vw;
}

.scroll-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

h1,
p {
    font-weight: 100;
    font-size: 3rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    max-width: 900px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #ffffff;
    transform: scaleY(1.3);
    transform-origin: center;
    mix-blend-mode: difference;
    z-index: 10;
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 100%;
    z-index: 10;
}

button {
    width: 380px;
    padding: 22px 0;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: 'EtherealFont', sans-serif;
    background: #ffffff;
    color: #000000;
    mix-blend-mode: difference;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.btn-refuse {
    opacity: 0.4;
}

.btn-refuse:hover {
    opacity: 1;
}

.clinical-input {
    width: 90%;
    max-width: 700px;
    min-height: 180px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    color: #ffffff;
    font-family: 'EtherealFont', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    padding: 30px;
    margin-bottom: 20px;
    resize: none;
    outline: none;
    mix-blend-mode: difference;
    transition: all 0.4s ease;
    z-index: 10;
}

.clinical-input:focus {
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.clinical-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.clinical-input.single-line {
    min-height: 80px;
    text-align: center;
    font-size: 1.5rem;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }

    100% {
        opacity: 0.4;
    }
}

#lala-land {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 9999;
}

.face-mask {
    position: relative;
    width: 90vmin;
    height: 90vmin;
    max-width: 500px;
    max-height: 500px;
    opacity: 0;
    transition: opacity 1s ease 1.5s;
}

.show-face .face-mask {
    opacity: 1;
}

.eye {
    position: absolute;
    background: #000000;
    width: 18%;
    aspect-ratio: 1 / 1;
    top: 15%;
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}

.left-eye {
    left: 20%;
}

.right-eye {
    right: 20%;
}

.mouth {
    position: absolute;
    background: #000000;
    width: 75%;
    height: 35%;
    top: 45%;
    left: 12.5%;
    border-radius: 0 0 150px 150px;
}

.lala-text {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ffffff !important;
    mix-blend-mode: normal !important;
    font-size: 7vmin;
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .liquid-void {
        filter: blur(20px) contrast(80);
    }

    h1,
    p {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 40px;
        transform: scaleY(1.15);
        padding: 0 10px;
    }

    .choices {
        width: 90%;
        margin-top: 30px;
    }

    button {
        width: 100%;
        max-width: 340px;
        padding: 18px 0;
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }

    .lala-text {
        font-size: 7.5vmin;
        top: 105%;
    }
}