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