#opening-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
}

#black-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

#pink-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f491ae 0%, #2A87C8 50%, #FAB375 100%);
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
}

#opening-text {
    color: white;
    font-family: 'PingFangSC-Ultralight', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1.001em;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    z-index: 9999;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
} 