:root {
  --bg: #0a0f1c;
  --surface: #121a2e;
  --surface2: #1a2340;
  --accent: #00d4aa;
  --accent2: #0099ff;
  --text: #e8eaf0;
  --text-muted: #8a94a8;
  --border: #1e2a45;
  --warning: #ff9f43;
  --danger: #ff4757;
  --success: #2ed573;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
.container { max-width: 800px; margin: 0 auto; padding: 0 20px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
header { background: linear-gradient(135deg, #0d1528 0%, #162040 100%); border-bottom: 2px solid var(--accent); padding: 40px 0; text-align: center; }
header h1 { font-size: 2.2rem; margin-bottom: 10px; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
header .subtitle { color: var(--text-muted); font-size: 1.1rem; }
.badge { display: inline-block; background: var(--accent); color: var(--bg); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 15px; }
.badge.live { background: var(--danger); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }
nav { background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 0; }
nav .container { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
nav a { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; padding: 4px 10px; border-radius: 4px; transition: all 0.2s; }
nav a:hover, nav a.active { color: var(--accent); background: var(--surface2); text-decoration: none; }
section { margin: 40px 0; }
h2 { font-size: 1.5rem; margin-bottom: 20px; color: var(--accent); border-bottom: 1px solid var(--border); padding-bottom: 10px; }
h3 { margin-bottom: 10px; }
p { margin-bottom: 12px; color: var(--text-muted); }
.info-box { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 20px; margin: 20px 0; }
.info-box.warning { border-color: var(--warning); background: rgba(255,159,67,0.05); }
.info-box.danger { border-color: var(--danger); background: rgba(255,71,87,0.05); }
.info-box.success { border-color: var(--success); background: rgba(46,213,115,0.05); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin: 20px 0; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 20px; text-align: center; }
.stat-card .number { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-card .label { color: var(--text-muted); font-size: 0.85rem; margin-top: 5px; }
table { width: 100%; border-collapse: collapse; margin: 20px 0; }
th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid var(--border); }
th { background: var(--surface2); color: var(--accent); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
td { font-size: 0.9rem; }
.timeline { margin: 40px 0; }
.timeline-item { display: flex; gap: 20px; margin-bottom: 30px; }
.timeline-date { min-width: 120px; text-align: right; color: var(--accent); font-weight: 700; font-size: 0.9rem; padding-top: 4px; }
.timeline-content { background: var(--surface); border-left: 3px solid var(--accent); padding: 15px 20px; border-radius: 0 8px 8px 0; flex: 1; }
.timeline-content h3 { font-size: 1rem; margin-bottom: 5px; }
.timeline-content p { color: var(--text-muted); font-size: 0.9rem; }
.timeline-item.active .timeline-content { border-left-color: var(--danger); }
.timeline-item.active .timeline-date { color: var(--danger); }
.faq { margin: 30px 0; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 15px 20px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--accent); }
.faq-q.open::after { content: '−'; }
.faq-a { padding: 0 20px 15px; color: var(--text-muted); display: none; }
.faq-a.open { display: block; }
.cta-box { background: linear-gradient(135deg, #0d2818, #162040); border: 1px solid var(--accent); border-radius: 12px; padding: 30px; text-align: center; margin: 40px 0; }
.cta-box h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--text); }
.cta-box p { color: var(--text-muted); margin-bottom: 15px; }
.btn { display: inline-block; background: var(--accent); color: var(--bg); padding: 12px 30px; border-radius: 6px; text-decoration: none; font-weight: 700; transition: opacity 0.2s; }
.btn:hover { opacity: 0.85; text-decoration: none; }
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 30px 0; text-align: center; color: var(--text-muted); font-size: 0.8rem; margin-top: 60px; }
ul, ol { margin: 10px 0 10px 20px; }
li { margin-bottom: 8px; color: var(--text-muted); }
.operator-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 20px; margin: 15px 0; }
.operator-card h3 { color: var(--text); font-size: 1.1rem; }
.operator-card .tag { display: inline-block; background: var(--surface2); color: var(--accent); padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; margin-right: 5px; margin-top: 8px; }
.breadcrumb { color: var(--text-muted); font-size: 0.8rem; margin: 20px 0 0; }
.breadcrumb a { color: var(--text-muted); }
@media (max-width: 600px) {
  header h1 { font-size: 1.5rem; }
  .timeline-item { flex-direction: column; gap: 5px; }
  .timeline-date { text-align: left; min-width: auto; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  nav .container { gap: 8px; }
  nav a { font-size: 0.75rem; padding: 4px 6px; }
}
