/* sparkos.html specific styles */

body { font-family: var(--mono); font-size: 13px; line-height: 1.6; color: #c0c0c0; }

.terminal-wrapper { min-height: 100vh; padding: 4rem; display: flex; flex-direction: column; }
header.terminal-header { border-bottom: 1px solid #1a1a1a; padding-bottom: 2rem; margin-bottom: 3rem; }
.logo-spark { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--orange); text-decoration: none; font-style: italic; }

.nav-spark { margin-top: 1rem; }
.nav-spark a { color: #555; text-decoration: none; margin-right: 2rem; transition: 0.3s; font-size: 11px; text-transform: uppercase; }
.nav-spark a:hover { color: var(--orange); }

.output-line { margin-bottom: 0.5rem; opacity: 0.8; text-align: left; }
.output-line.cmd { color: #fff; font-weight: 500; }
.output-line.cmd::before { content: '➜ '; color: var(--orange); }

.highlight { color: var(--orange); font-weight: 600; }
.dim { color: #444; }

.sys-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 4rem; }
.info-box { border: 1px solid #111; padding: 2rem; background: #080808; text-align: left; }
.info-box h3 { color: var(--orange); margin-bottom: 1rem; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; }

.status-tag { display: inline-block; padding: 2px 8px; border: 1px solid var(--orange); color: var(--orange); font-size: 10px; margin-top: 1rem; }

@keyframes scanline { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }
.scanline { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, transparent, rgba(255, 111, 0, 0.02), transparent); pointer-events: none; z-index: 1000; animation: scanline 8s linear infinite; }

@media (max-width: 992px) {
  .terminal-wrapper { padding: 2rem; }
  .sys-info { grid-template-columns: 1fr; }
}
