/* Game-specific styles extending template.css */

.TEMPLATE-4weird-game-frame {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #06050b;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.25);
    border: 2px solid rgba(139, 92, 246, 0.35);
}

#TEMPLATE-4weird-gameCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Custom interactive Labels during play */
.universe-hud {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    pointer-events: none;
    z-index: 5;
}

.hud-item {
    background: rgba(20, 10, 40, 0.7);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(4px);
}
.map-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(6, 5, 11, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.5);
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    color: #a78bfa;
    pointer-events: none;
    z-index: 5;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
