:root{
  --bg:#0b1220;
  --panel:#0f172a;
  --panel-2:#0c1426;
  --border:#1f2937;
  --text:#e6edf3;
  --muted:#9aa9c2;
  --accent:#58a6ff;
  --radius:14px;
  --shadow:0 10px 24px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--text);
  font:15px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
}

.guide-wrap{
  max-width:1000px;
  margin:0 auto;
  padding:28px 16px 56px;
}

.guide-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--panel);
  box-shadow:var(--shadow);
  padding:10px 14px;
}

.guide-brand{font-weight:700}

.guide-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:10px;
  text-decoration:none;
  color:var(--text);
  background:var(--panel-2);
  font-weight:600;
}

.guide-btn:hover,.guide-link:hover{border-color:var(--accent);color:var(--accent)}

.guide-hero{
  margin-top:14px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--panel);
  box-shadow:var(--shadow);
  padding:20px;
}

.guide-kicker{
  margin:0 0 6px;
  color:var(--muted);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
}

h1{margin:0 0 8px;font-size:38px;line-height:1.1}
h2{margin:0 0 10px;font-size:20px;line-height:1.25}
p{margin:0 0 10px}

.guide-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.guide-card{
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--panel-2);
  padding:14px;
}

.guide-card ul,.guide-card ol{
  margin:0;
  padding-left:18px;
}

.guide-card li{margin:4px 0}

.guide-field{
  margin-top:8px;
  display:flex;
  gap:8px;
}

.guide-input{
  width:100%;
  min-height:40px;
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--panel);
  color:var(--text);
  padding:8px 12px;
  font:inherit;
}

.guide-input::placeholder{color:var(--muted)}

.guide-input:focus{
  outline:none;
  border-color:var(--accent);
}

.guide-result{
  margin-top:10px;
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--panel);
  padding:10px 12px;
}

.guide-result p{margin:0}

.guide-muted{color:var(--muted)}

.guide-links{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}

.guide-link{
  display:flex;
  width:100%;
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 12px;
  text-decoration:none;
  color:var(--text);
  background:var(--panel-2);
  font-size:13px;
  justify-content:center;
}

@media (max-width: 820px){
  h1{font-size:30px}
  .guide-grid{grid-template-columns:1fr}
  .guide-links{grid-template-columns:1fr}
}