/* BANXNO Market styles — extends base.css */

/* === Hero ================================================== */
.market-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 55%, #312e81 100%);
    padding: 3rem 1rem 2.5rem;
    color: white;
    text-align: center;
}
.market-hero .hero-title {
    font-family: 'Oswald', system-ui, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    line-height: 1.1;
}
.market-hero .hero-subtitle {
    color: #a5b4fc;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* === Listing List ========================================== */
.listing-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-color: #e2e8f0;
    color: #1e293b;
    transition: background 0.12s;
}
.listing-list-item:hover {
    background: #f8fafc;
    text-decoration: none;
    color: #1e293b;
}
.listing-list-item .listing-title {
    font-weight: 500;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 1rem;
}
.listing-list-item .listing-meta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.listing-card {
    transition: box-shadow 0.2s;
}

.listing-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.currency-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.currency-badge.ban {
    background-color: #fbdd11;
    color: #333;
}

.currency-badge.xno {
    background-color: #209ce9;
    color: #fff;
}

.status-badge {
    font-size: 0.8em;
}

.rep-display {
    font-size: 0.85em;
    color: #666;
}

.secret-box {
    font-family: monospace;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 12px;
    white-space: pre-wrap;
    word-break: break-all;
}

.category-list .list-group-item {
    border-color: #e2e8f0;
    color: #1e293b;
    font-weight: 500;
    transition: background 0.12s, color 0.12s;
}
.category-list .list-group-item:hover {
    background: #eff6ff;
    color: #1d4ed8;
    text-decoration: none;
}
.category-list .list-group-item.active {
    background: #1e293b;
    border-color: #1e293b;
    color: #f1f5f9;
    font-weight: 600;
}
