/* GameVoid UI Style - Warframe Aesthetic */
.GameVoid {
    background: rgba(10, 15, 20, 0.85);
    border-left: 4px solid #c49a5c; /* Золото Орокин */
    border-right: 1px solid rgba(196, 154, 92, 0.3);
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.GameVoid::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, #c49a5c, transparent);
}

.gv-header {
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c49a5c;
    border-bottom: 1px solid rgba(196, 154, 92, 0.3);
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.gv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gv-stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gv-label {
    font-size: 0.75em;
    color: #9ca3af;
    text-transform: uppercase;
}

.gv-value {
    font-size: 1.1em;
    font-weight: bold;
    color: #3b82f6; /* Энергия Бездны */
}

.gv-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 5px;
    border-radius: 3px;
}

.gv-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease-in-out;
}

/* Цвета индикаторов */
.bg-infection { background: #10b981; box-shadow: 0 0 10px #10b981; }
.bg-whisper { background: #8b5cf6; box-shadow: 0 0 10px #8b5cf6; }
.bg-trust { background: #c49a5c; }

.gv-transformation {
    margin-top: 15px;
    padding: 10px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px dashed #8b5cf6;
    text-align: center;
    font-style: italic;
}