﻿/* VIDE Crawler — Dimension 3D — style-3d.css */

/* Fond de la scene Three.js : sombre uniquement dans le canvas */
#game-canvas {
    background: #0d1117;
}

/* Message de salle : couleurs neo-brutales */
.room-type-bar {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-surface);
    border: var(--border-dark);
    box-shadow: var(--shadow-brutal-sm);
    border-radius: var(--radius-md);
    padding: 7px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    max-width: min(90vw, 420px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.room-type-bar.is-visible { opacity: 1; }
.room-type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border: 1.5px solid #111;
    border-radius: 5px;
    font-size: 0.75rem;
    flex-shrink: 0;
}
