body { background-color: #111114; color: #9ca3af; font-family: "SF Pro Display", -apple-system, "PingFang SC", sans-serif; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
* { box-sizing: border-box; }

.amb-wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* 悬浮暗黑顶栏 */
.amb-header { background: rgba(17, 17, 20, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid #22222a; position: sticky; top: 0; z-index: 100; height: 70px; display: flex; align-items: center; }
.amb-nav-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.amb-logo img { height: 24px; filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4)); }

.amb-menu { list-style: none; display: flex; gap: 40px; margin: 0; padding: 0; }
.amb-menu a { font-size: 14px; color: #9ca3af; font-weight: 600; transition: 0.3s; padding: 24px 0; border-bottom: 2px solid transparent; }
.amb-menu a:hover, .amb-active { color: #f59e0b !important; border-bottom: 2px solid #f59e0b; }

.amb-user-btn { font-size: 13px; color: #111114; background: #f59e0b; padding: 8px 24px; border-radius: 6px; font-weight: 700; transition: 0.3s; }
.amb-user-btn:hover { background: #fbbf24; box-shadow: 0 0 15px rgba(245, 158, 11, 0.4); }

/* 系统通知条 */
.amb-notice { background: #18181e; border: 1px solid #22222a; border-left: 4px solid #f59e0b; padding: 18px 25px; margin: 30px 0; border-radius: 8px; display: flex; align-items: center; gap: 15px; }
.amb-notice-dot { width: 8px; height: 8px; background: #f59e0b; border-radius: 50%; box-shadow: 0 0 8px #f59e0b; flex-shrink: 0; }
.amb-notice-txt { font-size: 14px; color: #d1d5db; line-height: 1.6; }

/* 列表标题 */
.amb-sec-title { font-size: 18px; font-weight: 700; color: #f9fafb; margin: 45px 0 20px; display: flex; align-items: center; gap: 10px; }
.amb-sec-title::before { content: ""; width: 4px; height: 16px; background: #f59e0b; border-radius: 2px; }

/* 曜黑列表流 */
.amb-list-box { display: flex; flex-direction: column; gap: 12px; margin-bottom: 60px; }
.amb-list-row { background: #18181e; border: 1px solid #22222a; padding: 20px 24px; display: flex; align-items: center; transition: 0.3s; border-radius: 8px; }
.amb-list-row:hover { border-color: #f59e0b; background: #1f1f26; box-shadow: 0 0 15px rgba(245, 158, 11, 0.18); transform: translateY(-1px); }

.amb-item-img { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; margin-right: 25px; border: 1px solid #22222a; background: #111114; padding: 4px; }
.amb-item-img img { width: 100%; height: 100%; object-fit: contain; }

.amb-item-body { flex-grow: 1; display: flex; flex-direction: column; gap: 8px; }
.amb-item-name { font-size: 16px; font-weight: 700; color: #f9fafb; }
.amb-item-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; font-weight: 600; color: #6b7280; }
.amb-badge-auto { color: #f59e0b; background: rgba(245, 158, 11, 0.1); padding: 2px 8px; border-radius: 4px; border: 1px solid rgba(245, 158, 11, 0.2); }
.amb-badge-hand { color: #9ca3af; background: #22222a; padding: 2px 8px; border-radius: 4px; border: 1px solid #2d2d38; }
.amb-item-stock { color: #4b5563; }

.amb-item-action { display: flex; align-items: center; gap: 35px; margin-left: 20px; }
.amb-item-price { font-size: 20px; font-weight: 700; color: #f9fafb; font-family: monospace; }
.amb-btn-buy { background: #22222a; color: #cbd5e1; padding: 8px 24px; font-size: 13px; font-weight: 600; border-radius: 6px; border: 1px solid #2d2d38; cursor: pointer; transition: 0.2s; }
.amb-list-row:hover .amb-btn-buy { background: #f59e0b; color: #111114; border-color: #f59e0b; }

/* 详情页面 */
.amb-detail-split { display: flex; gap: 40px; margin-top: 30px; align-items: flex-start; }
.amb-detail-visual { width: 45%; background: #18181e; border: 1px solid #22222a; padding: 24px; border-radius: 12px; display: flex; justify-content: center; align-items: center; }
.amb-detail-visual img { width: 100%; border-radius: 8px; border: 1px solid #22222a; }
.amb-detail-right { flex-grow: 1; background: #18181e; padding: 40px; border: 1px solid #22222a; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.amb-detail-h1 { font-size: 22px; font-weight: 700; color: #f9fafb; margin-bottom: 25px; line-height: 1.4; }
.amb-price-ribbon { background: #111114; padding: 20px 25px; border-radius: 8px; margin-bottom: 30px; display: flex; align-items: baseline; gap: 15px; border-left: 4px solid #f59e0b; border-top: 1px solid #22222a; border-bottom: 1px solid #22222a; }
.amb-detail-price { font-size: 34px; font-weight: 700; color: #f59e0b; font-family: monospace; }
.amb-detail-stock-txt { margin-left: auto; color: #6b7280; font-size: 13px; font-weight: 600; }

.amb-f-row { margin-bottom: 22px; }
.amb-f-label { display: block; font-size: 12px; font-weight: 700; color: #6b7280; margin-bottom: 10px; text-transform: uppercase; }
.amb-f-input { width: 100%; padding: 14px 16px; border: 1px solid #22222a; background: #111114; font-size: 14px; color: #fff; border-radius: 6px; transition: 0.2s; outline: none; }
.amb-f-input:focus { border-color: #f59e0b; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1); }
.amb-btn-submit { width: 100%; background: #f59e0b; color: #111114; padding: 16px; font-size: 16px; font-weight: 700; border: none; border-radius: 6px; cursor: pointer; transition: 0.2s; margin-top: 10px; }
.amb-btn-submit:hover { background: #fbbf24; box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
.amb-btn-submit:disabled { background: #22222a; color: #4b5563; cursor: not-allowed; box-shadow: none; }

.amb-desc-container { background: #18181e; padding: 40px; border: 1px solid #22222a; margin-top: 40px; border-radius: 12px; }
.amb-desc-title { font-size: 18px; font-weight: 700; color: #f9fafb; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #22222a; display: flex; align-items: center; gap: 10px; }
.amb-desc-title::before { content: ""; width: 8px; height: 8px; background: #f59e0b; border-radius: 50%; display: inline-block; }
.amb-desc-html { line-height: 1.8; font-size: 14px; color: #cbd5e1; }

.amb-footer { text-align: center; padding: 40px 0; margin-top: 60px; color: #4b5563; font-size: 13px; border-top: 1px solid #22222a; background: #18181e; }

@media (max-width: 900px) {
    .amb-detail-split { flex-direction: column; }
    .amb-detail-visual, .amb-detail-right { width: 100%; }
}
@media (max-width: 768px) {
    header ul { display: none !important; }
    tr img, div img { max-width: 100%; }
    .amb-list-row { flex-direction: column; align-items: flex-start; padding: 20px; }
    .amb-item-img { margin-bottom: 15px; margin-right: 0; }
    .amb-item-action { margin-left: 0; margin-top: 20px; width: 100%; justify-content: space-between; border-top: 1px solid #22222a; padding-top: 15px; }
}\n