:root {
    --ha-bg: #171717;
    --ha-surface: #262626;
    --ha-border: #000000;
    --ha-accent: #eab308;
    --ha-text-main: #f5f5f5;
    --ha-text-sub: #a3a3a3;
    --ha-price: #ef4444;
    --ha-radius: 0px;
}
body { margin: 0; background-color: var(--ha-bg); color: var(--ha-text-main); font-family: "Impact", "Arial Black", -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; }
.ha-header { background-color: var(--ha-surface); border-bottom: 3px solid var(--ha-accent); padding: 18px 0; }
.ha-nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; box-sizing: border-box; }
.ha-logo img { height: 26px; filter: grayscale(1) invert(1) brightness(1.5); }
.ha-menu { display: flex; gap: 35px; }
.ha-menu a { text-decoration: none; color: var(--ha-text-sub); font-weight: 900; font-size: 14px; text-transform: uppercase; transition: 0.3s; }
.ha-menu a:hover { color: var(--ha-accent); }
.ha-container { max-width: 1400px; margin: 40px auto; padding: 0 24px; box-sizing: border-box; }
.ha-notice { background: var(--ha-surface); border: 2px solid var(--ha-border); padding: 18px 24px; font-size: 13px; color: var(--ha-text-main); line-height: 1.6; display: flex; align-items: center; gap: 12px; position: relative; }
.ha-notice::after { content: "HAZARD_SYSTEM_ALERT"; position: absolute; top: -10px; left: 15px; background: var(--ha-accent); color: #000; font-size: 9px; padding: 1px 6px; font-weight: bold; border: 1px solid #000; }
.ha-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.ha-card { background-color: var(--ha-surface); border: 2px solid var(--ha-border); border-radius: var(--ha-radius); padding: 16px; text-decoration: none; transition: all 0.25s ease-in-out; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.ha-card:hover { transform: translateY(-3px); border-color: var(--ha-accent); box-shadow: 0 10px 25px rgba(234, 179, 8, 0.15); }
.ha-img-box { width: 100%; aspect-ratio: 1; background: #0c0c0c; border-radius: 0px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; border: 1px solid #1a1a1a; }
.ha-img-box img { width: 60%; height: 60%; object-fit: contain; opacity: 0.85; transition: 0.3s; }
.ha-card:hover .ha-img-box img { opacity: 1; transform: scale(1.04); }
.ha-name { font-size: 13px; font-weight: 700; color: var(--ha-text-main); height: 38px; line-height: 1.4; overflow: hidden; margin-bottom: 12px; }
.ha-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; border-top: 1px solid #1a1a1a; padding-top: 10px; }
.ha-price { color: var(--ha-accent); font-weight: 800; font-size: 16px; }
.ha-sell { font-size: 11px; color: var(--ha-text-sub); }
.ha-tag { position: absolute; top: 12px; left: 12px; background: var(--ha-accent); color: #000; font-size: 10px; padding: 2px 6px; border-radius: 0px; font-weight: bold; }
.ha-detail-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
.ha-box { background: var(--ha-surface); border-radius: var(--ha-radius); padding: 35px; border: 2px solid var(--ha-border); }
.ha-h1 { font-size: 24px; font-weight: 800; margin: 0 0 20px 0; color: var(--ha-text-main); border-bottom: 1px solid #1a1a1a; padding-bottom: 12px; }
.ha-input { width: 100%; height: 46px; background: #0c0c0c; border: 1px solid var(--ha-border); border-radius: 0px; padding: 0 15px; font-size: 14px; box-sizing: border-box; outline: none; transition: 0.3s; margin-top: 8px; color: var(--ha-text-main); }
.ha-input:focus { border-color: var(--ha-accent); background: var(--ha-surface); }
.ha-label { display: block; font-size: 12px; font-weight: 700; color: var(--ha-text-sub); }
.ha-btn { width: 100%; height: 50px; background: var(--ha-accent); color: #000; border: none; border-radius: 0px; font-size: 15px; font-weight: 700; cursor: pointer; transition: 0.3s; margin-top: 20px; }
.ha-btn:hover { background: #fff; box-shadow: 0 0 15px var(--ha-accent); }
.ha-footer { background: var(--ha-surface); border-top: 3px solid var(--ha-accent); padding: 50px 0; margin-top: 80px; text-align: center; }
@media (max-width: 1400px) { .ha-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 1000px) { .ha-grid { grid-template-columns: repeat(3, 1fr); } .ha-detail-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .ha-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }