/* DEEP_HACK_PROTOCOL: HEX-CORE DECRYPTION */
#hex-game-box {
    border: 1px solid #8fbc8f;
    padding: 10px;
    margin: 10px 0;
    background: rgba(0, 10, 0, 0.8);
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
    box-sizing: border-box;
}

#hex-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #8fbc8f;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #8fbc8f;
}

#hex-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 5px 10px;
    text-align: center;
    line-height: 1.5;
}

.hex-noise {
    color: #557055;
}

.hex-word {
    /* Mismo color que el ruido para obligar a buscar, pero sin separación */
    color: #557055;
    transition: color 0.2s;
}

/* Efecto al pasar el ratón para ayudar un poco si el jugador usa ratón */
.hex-word:hover {
    color: #8fbc8f;
    cursor: crosshair;
}
