/* ── THE BLACK MARKET STYLES (v3.0.8) ── */
#black-market-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(15,15,15,0.95) 0%, #000 100%);
    backdrop-filter: blur(20px);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1.1);
}

#black-market-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.bm-container {
    width: 95vw;
    max-width: 500px;
    height: 80vh;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    box-shadow: 0 0 100px rgba(180,180,255,0.05);
    overflow-y: auto;
}

.bm-header {
    text-align: center;
    margin-bottom: 40px;
}

.bm-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #c8c8ff;
    letter-spacing: 8px;
    margin: 0;
    text-shadow: 0 0 20px rgba(200,200,255,0.3);
}

.bm-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bm-item {
    background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bm-item:active {
    background: rgba(200,200,255,0.1);
    transform: translateX(10px);
}

.bm-item-icon {
    width: 60px;
    height: 80px;
    background: #111;
    border: 1px dashed rgba(200,200,255,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #c8c8ff;
    flex-shrink: 0;
}

.bm-item-info {
    flex: 1;
}

.bm-item-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2px;
}

.bm-item-desc {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
}

.bm-item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #c8c8ff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bm-dust-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #c8c8ff;
}

.bm-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
}

/* Wildcard Selection Grid */
#bm-wildcard-selection {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 10;
    padding: 20px;
    display: none;
    flex-direction: column;
}

#bm-wildcard-selection.active {
    display: flex;
}

.bm-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    overflow-y: auto;
    flex: 1;
    margin-top: 20px;
}
