/* Stygian Theme: Layout 146 (Cyber Console HUD & Flashing LED Status Panel) */
body { background: #08090a; font-family: "Courier New", Courier, monospace, "PingFang SC"; color: #00f0ff; margin: 0; padding: 0; min-height: 100vh; }
.stygian-layout { display: flex; flex-direction: column; min-height: 100vh; padding: 30px; box-sizing: border-box; }
.stygian-dashboard { width: 100%; max-width: 1100px; margin: 0 auto; background: #0c0d0f; border: 1px solid #1e293b; padding: 35px; box-sizing: border-box; box-shadow: 0 0 40px rgba(0, 240, 255, 0.03); }
.stygian-led-panel { display: flex; justify-content: space-between; align-items: center; background: #050607; border: 1.5px solid #1a202c; padding: 15px 25px; margin-bottom: 35px; }
.stygian-sys-status { display: flex; align-items: center; gap: 15px; }
.stygian-led { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.stygian-led-green { background: #39ff14; box-shadow: 0 0 8px #39ff14; animation: stygianBlink 1.5s infinite; }
.stygian-led-blue { background: #00f0ff; box-shadow: 0 0 8px #00f0ff; animation: stygianBlink 2.2s infinite; }
.stygian-led-red { background: #ff073a; box-shadow: 0 0 8px #ff073a; }
.stygian-logo img { max-height: 38px; display: block; filter: hue-rotate(180deg) brightness(1.2); }
.stygian-nav { display: flex; list-style: none; padding: 0; margin: 0; gap: 25px; }
.stygian-nav a { color: rgba(0, 240, 255, 0.6); text-decoration: none; font-size: 13px; font-weight: bold; padding: 6px 12px; border: 1px solid transparent; transition: all 0.25s; }
.stygian-nav a:hover, .stygian-nav .active { color: #00f0ff; border-color: #00f0ff; background: rgba(0, 240, 255, 0.05); }
.stygian-terminal-notice { background: rgba(0, 240, 255, 0.02); border-left: 3px solid #00f0ff; padding: 20px; font-size: 13.5px; line-height: 1.6; margin-bottom: 35px; }
.stygian-section-title { font-size: 15px; font-weight: bold; color: #fff; margin: 35px 0 15px 0; border-bottom: 1.5px solid #1e293b; padding-bottom: 10px; display: flex; align-items: center; letter-spacing: 0.5px; }
.stygian-section-title i { margin-right: 8px; color: #00f0ff; }
.stygian-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stygian-console-card { background: #050607; border: 1px solid #1e293b; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; min-height: 180px; transition: all 0.25s; }
.stygian-console-card:hover { border-color: #00f0ff; box-shadow: 0 0 15px rgba(0, 240, 255, 0.1); }
.stygian-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
.stygian-card-title { font-size: 14px; color: #fff; line-height: 1.5; font-weight: bold; }
.stygian-badge-auto { border: 1px solid #00f0ff; color: #00f0ff; background: rgba(0, 240, 255, 0.05); padding: 1px 6px; font-size: 10px; text-transform: uppercase; }
.stygian-badge-manual { border: 1px dashed #4a5568; color: #a0aec0; background: transparent; padding: 1px 6px; font-size: 10px; }
.stygian-card-footer { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 15px; border-top: 1px dashed #1e293b; padding-top: 15px; }
.stygian-price-box { display: flex; flex-direction: column; }
.stygian-qty-info { font-size: 11px; color: #718096; margin-bottom: 4px; }
.stygian-price { font-size: 18px; font-weight: bold; color: #ff073a; }
.stygian-btn-action { background: transparent; color: #00f0ff !important; border: 1.5px solid #00f0ff; padding: 6px 16px; font-size: 12px; font-weight: bold; cursor: pointer; transition: all 0.25s; text-decoration: none !important; display: inline-block; }
.stygian-btn-action:hover { background: #00f0ff; color: #08090a !important; }
.stygian-terminal-panel { background: #050607; border: 1px solid #1e293b; padding: 35px; }
.layui-form-label { background: #0c0d0f !important; border: 1px solid #1e293b !important; border-right: none !important; color: #00f0ff !important; border-radius: 0 !important; font-weight: bold !important; }
.layui-input { border-radius: 0 !important; border: 1px solid #1e293b !important; background: #050607 !important; color: #fff !important; }
.layui-input:focus { border-color: #00f0ff !important; box-shadow: 0 0 8px rgba(0, 240, 255, 0.15) !important; }

@keyframes stygianBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Mobile Adaptations */
@media (max-width: 768px) {
    .stygian-layout { padding: 15px; }
    .stygian-dashboard { padding: 20px 15px; }
    .stygian-led-panel { flex-direction: column; gap: 15px; align-items: flex-start; }
    .stygian-grid { grid-template-columns: 1fr; gap: 15px; }
}
