/* Core Tarkov Container */
.tarkov-container {
    background-color: #0d0d0d;
    background-image: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%), 
                      repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px);
    color: #cfd2d6;
    font-family: 'Consolas', 'Courier New', monospace; /* Monospace for tactical feel */
    padding: 30px;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid #2a2a2a;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}

/* Header & HUD Elements */
.tarkov-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #3e4623;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.hud-title {
    font-size: 24px;
    font-weight: bold;
    color: #e0e0e0;
    letter-spacing: 2px;
}

.hud-glitch {
    color: #6b7a33; /* Olive Drab Accent */
}

.hud-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #8b9b4f;
}

.tarkov-dropdown {
    background: rgba(20, 20, 20, 0.8);
    color: #e0e0e0;
    border: 1px solid #4a542b;
    padding: 8px 15px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    text-transform: uppercase;
}

.tarkov-dropdown:focus {
    border-color: #8b9b4f;
}

/* Inventory Grid */
.tarkov-inventory {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.inv-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.center-col {
    align-items: center;
}

/* Individual Gear Slots */
.inv-slot {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid #2c3325;
    padding: 20px 15px;
    position: relative;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.2s ease;
}

.inv-slot:hover {
    background: rgba(45, 52, 36, 0.6);
    border-color: #6b7a33;
}

/* Tactical UI Corners */
.inv-slot::before, .inv-slot::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1px solid transparent;
}
.inv-slot::before { top: -1px; left: -1px; border-top-color: #8b9b4f; border-left-color: #8b9b4f; }
.inv-slot::after { bottom: -1px; right: -1px; border-bottom-color: #8b9b4f; border-right-color: #8b9b4f; }

.inv-slot::before {
    content: attr(data-label);
    position: absolute;
    top: 4px;
    left: 6px;
    font-size: 10px;
    color: #6b7a33;
    border: none;
    width: auto;
    height: auto;
}

.slot-val {
    font-size: 14px;
    color: #d1d5db;
    margin-top: 10px;
    text-transform: uppercase;
    text-align: center;
}

.mt-2 { margin-top: 5px; }

.large-slot {
    width: 100%;
    min-height: 80px;
}

/* Wireframe Graphics */
.tarkov-wireframe {
    height: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
}

.tarkov-wireframe svg {
    height: 100%;
    filter: drop-shadow(0 0 5px rgba(107, 122, 51, 0.4));
}

/* Weapons Bottom Section */
.tarkov-weapons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.weapon-container {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #3e4623;
    padding: 20px;
    position: relative;
}

.weapon-header {
    font-size: 11px;
    color: #8b9b4f;
    margin-bottom: 10px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 5px;
}

.weapon-name {
    font-size: 20px;
    font-weight: bold;
    color: #f3f4f6;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.weapon-mods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mod-item {
    background: rgba(0, 0, 0, 0.5);
    border-left: 2px solid #5d6932;
    padding: 8px;
    font-size: 12px;
}

.mod-label {
    color: #737373;
    display: block;
    margin-bottom: 3px;
    font-size: 10px;
}

.mod-val {
    color: #b0b0b0;
}

/* Misc Box (Camo & Accessories) */
.misc-container {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    margin-top: 10px;
}

.camo-box, .acc-box {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #2a2a2a;
    padding: 15px;
}

.camo-label, .acc-label {
    font-size: 11px;
    color: #6b7a33;
    margin-bottom: 10px;
}

.camo-display {
    width: 100%;
    height: 60px;
    border: 1px solid #3e4623;
    margin-bottom: 10px;
}

.camo-text {
    font-size: 13px;
    text-align: center;
    color: #e0e0e0;
}

.tarkov-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tarkov-list li {
    background: rgba(45, 52, 36, 0.3);
    border: 1px solid #4a542b;
    padding: 5px 10px;
    font-size: 12px;
    color: #cfd2d6;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .tarkov-inventory {
        grid-template-columns: 1fr;
    }
    .tarkov-wireframe {
        display: none; /* Hide wireframe on small screens to save space */
    }
    .tarkov-weapons-grid {
        grid-template-columns: 1fr;
    }
    .misc-container {
        grid-template-columns: 1fr;
    }
}