/* Mystic Echoes Entrance Styles */
/* Suffix: 1dd4c77a */

.mystic-cave-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: #030508;
    overflow: hidden;
    font-family: 'Cinzel', 'Georgia', serif;
}

/* Adjust for Admin Bar */
body.admin-bar .mystic-cave-container {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
}
@media screen and (max-width: 782px) {
    body.admin-bar .mystic-cave-container {
        top: 46px;
        height: calc(100vh - 46px);
    }
}

#mystic-webgl-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.mystic-ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    z-index: 10;
}

.mystic-logo-subtle {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    color: rgba(134, 239, 172, 0.4); /* subtle magical green/teal */
    text-shadow: 0 0 10px rgba(134, 239, 172, 0.2);
    font-weight: 300;
    transition: opacity 1s ease;
}

.mystic-prompt {
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    animation: mysticPulse 3s infinite ease-in-out;
    pointer-events: auto;
    cursor: pointer;
    background: rgba(3, 5, 8, 0.8);
    padding: 12px 24px;
    border: 1px solid rgba(134, 239, 172, 0.2);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(134, 239, 172, 0.1);
    transition: all 0.5s ease;
}

.mystic-prompt:hover {
    color: #fff;
    border-color: rgba(134, 239, 172, 0.6);
    box-shadow: 0 0 30px rgba(134, 239, 172, 0.3);
}

.mystic-prompt.fade-out {
    opacity: 0;
    pointer-events: none;
}

@keyframes mysticPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}
