:root{
  --bg:#0b0f17;
  --ink:#e8ecf6;
  --muted:#97a0b8;
  --card:#111827;
  --edge:#1f2937;
  --ring:#5b8cff;
  --accent:#ff7a59;
  --r:20px;
  --gap:28px;
  --max:1280px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Manrope,system-ui,-apple-system,Segoe UI,Roboto,Arial,Helvetica,sans-serif;
  color:var(--ink);background:
  radial-gradient(800px 320px at 10% -10%, rgba(91,140,255,.25), transparent 60%),
  radial-gradient(900px 420px at 110% 10%, rgba(255,122,89,.20), transparent 60%),
  linear-gradient(180deg,#0b0f17 0,#0c1220 60%,#0f1423 100%);
  line-height:1.8
}
a{color:#a8c4ff;text-decoration:none}
a:hover{text-decoration:underline}

.md-shell{max-width:var(--max);margin:0 auto;padding:22px 18px 56px}
.md-header{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:12px 14px;border-radius:14px;background:linear-gradient(180deg,#101826,#0c1220);
  border:1px solid var(--edge);box-shadow:0 24px 64px rgba(0,0,0,.35)
}
.md-brand{font-weight:800;font-size:20px;letter-spacing:.3px;color:#fff}
.md-nav{display:flex;gap:10px;flex-wrap:wrap}
.md-nav a{padding:9px 12px;border:1px solid var(--edge);border-radius:12px;background:#0f1626;color:#e8ecf6}
.md-soc{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:10px;border:1px solid var(--edge);font-weight:800;color:#fff}
.md-soc.x{background:linear-gradient(135deg,#0a0a0a,#3a3a3a)}
.md-soc.fb{background:linear-gradient(135deg,#0a5cff,#0838a8)}

.md-hero{
  display:grid;grid-template-columns:1.3fr .7fr;gap:var(--gap);margin:18px 0
}
.md-hero-col{background:var(--card);border:1px solid var(--edge);border-radius:var(--r);padding:14px;box-shadow:0 18px 56px rgba(0,0,0,.35)}
.md-hero-title{font-weight:800;margin:2px 0 10px;color:#cfe0ff}
.md-map{width:100%;height:260px;border:0;border-radius:14px}
.md-hero-info{display:grid;grid-template-columns:1fr;gap:12px}
.md-kpi{background:linear-gradient(180deg,#101a2e,#0f172a);border:1px solid var(--edge);border-radius:16px;padding:14px}
.md-kpi-val{font-weight:800}
.md-kpi-cap{color:var(--muted);font-size:13px}

.md-grid{display:grid;grid-template-columns:1.7fr .9fr;gap:var(--gap);align-items:start;margin-top:var(--gap)}
.md-article{
  background:linear-gradient(180deg,#101826,#0c1220);border:1px solid var(--edge);border-radius:var(--r);padding:26px;
  box-shadow:0 24px 64px rgba(0,0,0,.35)
}
h1{font-size:clamp(28px,4vw,44px);margin:2px 0 12px;font-weight:800}
h2{font-size:clamp(20px,2.6vw,28px);margin:26px 0 12px;font-weight:800;color:#dbe8ff}
h3{font-size:clamp(18px,2.2vw,22px);margin:20px 0 8px;font-weight:700;color:#cfdcff}
h4{font-size:16px;margin:18px 0 8px;font-weight:700;color:#cfdcff}
p{margin:0 0 14px;color:var(--ink)}
.movie{
  width:100%;aspect-ratio:16/9;border:0;display:block;border-radius:16px;margin:10px 0 16px;
  box-shadow:0 16px 42px rgba(0,0,0,.45)
}
.md-article img{max-width:100%;height:auto;border-radius:16px;border:1px solid var(--edge);display:block}

table{
  width:100%;border-collapse:separate;border-spacing:0;margin:16px 0 20px;background:#0f1626;
  border:1px solid var(--edge);border-radius:14px;overflow:hidden;box-shadow:inset 0 1px 0 rgba(255,255,255,.03)
}
th,td{padding:14px 16px;text-align:left;border-bottom:1px solid var(--edge)}
th{font-weight:800;color:#dbe8ff;background:linear-gradient(180deg,rgba(255,122,89,.18),rgba(91,140,255,.12))}
tr:last-child td{border-bottom:0}
ul,ol{margin:10px 0 18px;padding-left:18px}
ul li,ol li{margin:8px 0}

.md-side{display:flex;flex-direction:column;gap:var(--gap)}
.md-card{background:linear-gradient(180deg,#101826,#0c1220);border:1px solid var(--edge);border-radius:16px;padding:16px;box-shadow:0 18px 56px rgba(0,0,0,.35)}
.md-card-title{font-weight:800;margin:0 0 10px;color:#cfe0ff}
.md-follow{display:flex;gap:10px;flex-wrap:wrap}

.md-footer{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  border-top:1px solid var(--edge);margin-top:28px;padding-top:16px;color:var(--muted)
}
.md-foot-links a{color:#a8c4ff}

@media (max-width:1080px){
  .md-grid{grid-template-columns:1fr}
}
@media (max-width:760px){
  .md-hero{grid-template-columns:1fr}
  .md-map{height:220px}
  .md-shell{padding:18px 14px 40px}
  .md-article{padding:20px}
}
