/* auction-card.css — Generic Auction NFU card (Showcase Slot auction)
 * Extends the dark/gold language already established in showcase-2col.css's
 * .sc-* classes, so the card reads as the same site rather than a new theme.
 */

.ac-card {
    background: #111827;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 10px;
    padding: 18px 20px;
    color: #f0e9d8;
}

.ac-empty {
    text-align: center;
    padding: 20px 10px;
}
.ac-empty h3 { color: #C9A84C; margin: 0 0 8px; }
.ac-empty p  { color: #f0e9d8; font-size: 0.9em; margin: 0; }

/* Auction-focused (auction.html): the Slot's own image/name is primary */
.ac-asset-primary { text-align: center; margin-bottom: 14px; }
.ac-thumb-lg {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(201,168,76,0.3);
    margin-bottom: 10px;
}
.ac-asset-primary h3 { color: #e8edf4; font-size: 1.2em; margin: 0 0 6px; }
.ac-desc { color: #f0e9d8; font-size: 0.88em; line-height: 1.5; }

/* Featured-focused (homepage panel): compact secondary reference to the Slot */
.ac-asset-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ac-thumb-sm { width: 40px; height: 40px; object-fit: cover; border-radius: 5px; }
.ac-secondary-label {
    font-size: 0.72em;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f0e9d8;
}

/* Auction-focused (auction.html): full standard NFU detail view, embedded */
.ac-asset-secondary-embed {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}
.ac-detail-embed {
    width: 100%;
    height: 900px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: #0c1830;
}

.ac-pitch {
    font-size: 0.84rem;
    color: #f0e9d8;
    line-height: 1.5;
    margin: 0 0 14px;
}

.ac-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.ac-stat { display: flex; flex-direction: column; }
.ac-stat-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f0e9d8;
    margin-bottom: 2px;
}
.ac-stat-val { font-size: 1.0rem; font-weight: 700; color: #fff; }
.ac-mono { font-family: monospace; font-size: 0.85em; }

.ac-bid-link {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    background: linear-gradient(135deg, #C9A84C, #e8c96a);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.15s;
}
.ac-bid-link:hover { opacity: 0.88; }

.ac-standing-bids { margin-bottom: 16px; }
.ac-standing-bids h4 {
    color: #C9A84C;
    font-size: 0.82em;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ac-standing-bids ul { list-style: none; margin: 0; padding: 0; }
.ac-standing-bids li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 0.85em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ac-muted { color: #f0e9d8; font-size: 0.85em; margin: 0; }

.ac-bid-form { display: flex; flex-direction: column; gap: 10px; }
.ac-bid-form label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.8em;
    color: #f0e9d8;
}
.ac-bid-form input, .ac-bid-form select {
    background: #0a0a1a;
    color: #eee;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 0.95em;
}
.ac-bid-submit {
    padding: 10px;
    background: linear-gradient(135deg, #C9A84C, #e8c96a);
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.15s;
}
.ac-bid-submit:hover { opacity: 0.88; }
.ac-bid-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.ac-bid-status { font-size: 0.82em; color: #f0e9d8; margin: 0; min-height: 1.2em; }

/* auction.html page chrome around the card */
.ac-page-explainer {
    background: #0d1117;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 18px 20px;
    margin-top: 20px;
    color: #f0e9d8;
    font-size: 0.88em;
    line-height: 1.7;
}
.ac-page-explainer h3 { color: #C9A84C; font-size: 1em; margin: 0 0 10px; }
.ac-page-explainer ol { margin: 0; padding-left: 20px; }
.ac-page-explainer li { margin-bottom: 6px; }
.ac-page-explainer strong { color: #f0e9d8; }
