/* GHOST ENGINE CSS */
.gp-ghost-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.gp-ghost-board {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 40px;
    min-height: 200px;
    background: rgba(10, 15, 25, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    justify-content: center;
    align-content: center;
    text-transform: uppercase;
    transition: opacity 1.5s ease-out, filter 1.5s ease-out;
}

.gp-ghost-board.hidden {
    opacity: 0;
    filter: blur(10px);
}

.gp-ghost-board.error-flash {
    transition: none; /* Instant snap to visible */
    opacity: 1;
    filter: blur(0);
    box-shadow: inset 0 0 50px rgba(255, 0, 85, 0.3);
}

.gp-ghost-board:focus {
    outline: none;
    border-color: rgba(0, 255, 255, 0.3);
}

.gp-ghost-status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    letter-spacing: 10px;
}
