:root {
    --tc-bg: #0a0b0d;
    --tc-surface: #14161a;
    --tc-border: #24292f;
    --tc-accent: #a3e635;
    --tc-accent-dim: rgba(163, 230, 53, 0.15);
    --tc-text-main: #f3f4f6;
    --tc-text-sub: #6b7280;
    --tc-price: #f43f5e;
    --tc-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    --tc-radius: 4px;
}
body { margin: 0; background-color: var(--tc-bg); color: var(--tc-text-main); font-family: "JetBrains Mono", Consolas, -apple-system, BlinkMacSystemFont, sans-serif; -webkit-font-smoothing: antialiased; }
.tc-header { background-color: var(--tc-surface); border-bottom: 2px solid var(--tc-accent); padding: 18px 0; }
.tc-nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; box-sizing: border-box; }
.tc-logo img { height: 26px; filter: invert(1) drop-shadow(0 0 4px var(--tc-accent)); }
.tc-menu { display: flex; gap: 35px; }
.tc-menu a { text-decoration: none; color: var(--tc-text-sub); font-weight: 700; font-size: 14px; transition: 0.3s; }
.tc-menu a:hover { color: var(--tc-accent); }
.tc-container { max-width: 1400px; margin: 40px auto; padding: 0 24px; box-sizing: border-box; }
.tc-notice { background: var(--tc-surface); border-radius: var(--tc-radius); border: 1px solid var(--tc-border); padding: 18px 24px; box-shadow: var(--tc-shadow); font-size: 13px; color: var(--tc-text-main); line-height: 1.6; display: flex; align-items: center; gap: 12px; position: relative; }
.tc-notice::before { content: "[TACTICAL_BROADCAST]"; position: absolute; top: -10px; left: 15px; background: var(--tc-accent); color: #000; font-size: 9px; padding: 1px 6px; font-weight: bold; }
.tc-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.tc-card { background-color: var(--tc-surface); border: 1px solid var(--tc-border); border-radius: var(--tc-radius); padding: 16px; text-decoration: none; transition: all 0.25s ease-in-out; box-shadow: var(--tc-shadow); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.tc-card:hover { transform: translateY(-3px); border-color: var(--tc-accent); box-shadow: 0 10px 25px rgba(163, 230, 53, 0.15); }
.tc-img-box { width: 100%; aspect-ratio: 1; background: #07080a; border-radius: 2px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; border: 1px solid #1a1c22; }
.tc-img-box img { width: 60%; height: 60%; object-fit: contain; opacity: 0.85; transition: 0.3s; }
.tc-card:hover .tc-img-box img { opacity: 1; transform: scale(1.04); }
.tc-name { font-size: 13px; font-weight: 700; color: var(--tc-text-main); height: 38px; line-height: 1.4; overflow: hidden; margin-bottom: 12px; }
.tc-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; border-top: 1px solid #24292f; padding-top: 10px; }
.tc-price { color: var(--tc-accent); font-weight: 800; font-size: 16px; }
.tc-sell { font-size: 11px; color: var(--tc-text-sub); }
.tc-tag { position: absolute; top: 12px; left: 12px; background: var(--tc-accent); color: #000; font-size: 10px; padding: 2px 6px; border-radius: 2px; font-weight: bold; }
.tc-detail-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
.tc-box { background: var(--tc-surface); border-radius: var(--tc-radius); padding: 35px; border: 1px solid var(--tc-border); box-shadow: var(--tc-shadow); }
.tc-h1 { font-size: 24px; font-weight: 800; margin: 0 0 20px 0; color: var(--tc-text-main); border-bottom: 1px solid var(--tc-border); padding-bottom: 12px; }
.tc-input { width: 100%; height: 46px; background: #07080a; border: 1px solid var(--tc-border); border-radius: 4px; padding: 0 15px; font-size: 14px; box-sizing: border-box; outline: none; transition: 0.3s; margin-top: 8px; color: var(--tc-text-main); }
.tc-input:focus { border-color: var(--tc-accent); background: var(--tc-surface); }
.tc-label { display: block; font-size: 12px; font-weight: 700; color: var(--tc-text-sub); }
.tc-btn { width: 100%; height: 50px; background: var(--tc-accent); color: #000; border: none; border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer; transition: 0.3s; margin-top: 20px; }
.tc-btn:hover { background: #fff; box-shadow: 0 0 15px var(--tc-accent); }
.tc-footer { background: var(--tc-surface); border-top: 2px solid var(--tc-accent); padding: 50px 0; margin-top: 80px; text-align: center; }
@media (max-width: 1400px) { .tc-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 1000px) { .tc-grid { grid-template-columns: repeat(3, 1fr); } .tc-detail-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .tc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }