:root { --bg:#0a0a0c; --card:#1a1a24; --border:rgba(255,255,255,0.07); --border2:rgba(255,255,255,0.12); --accent:#ff4500; --accent2:#ff6b35; --text:#f0ede8; --muted:#8a8694; --glow:rgba(255,69,0,0.25); }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.75; }
.wrap { width: min(920px, 92%); margin: 0 auto; }
header { border-bottom: 1px solid var(--border); background: rgba(10,10,12,0.92); }
.bar { display:flex; justify-content:space-between; align-items:center; padding:16px 0; gap:12px; flex-wrap:wrap; }
.logo { text-decoration:none; color:var(--text); font-family:'Bebas Neue', sans-serif; letter-spacing:1.3px; font-size:30px; }
.logo span { color: var(--accent); }
.btn { text-decoration:none; color:#fff; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius:6px; padding:10px 16px; font-size:13px; font-weight:700; box-shadow: 0 4px 20px var(--glow); }
.subbtn { text-decoration:none; color:var(--text); border:1px solid var(--border2); border-radius:6px; padding:10px 16px; font-size:13px; font-weight:600; }
.subbtn:hover { border-color:var(--accent); color:var(--accent); }
main { padding: 36px 0 70px; }
article { background: var(--card); border:1px solid var(--border); border-radius:14px; padding: 30px; }
h1 { font-family:'Bebas Neue', sans-serif; letter-spacing:1.2px; font-size: clamp(34px, 8vw, 56px); line-height: 1; margin-bottom: 12px; }
h2 { margin: 26px 0 10px; font-size: 24px; }
h3 { margin: 22px 0 8px; font-size: 20px; color: var(--text); }
p, li, td, th { color: var(--muted); font-size: 16px; }
p { margin-bottom: 14px; }
ul { margin: 0 0 14px 20px; }
table { width: 100%; border-collapse: collapse; margin: 10px 0 18px; overflow: hidden; border-radius: 10px; }
th, td { border: 1px solid var(--border); padding: 12px 10px; text-align: left; }
th { color: var(--text); background: rgba(255,255,255,0.03); }
.step { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.actions { margin-top: 24px; display:flex; gap:10px; flex-wrap:wrap; }
.inline-label, .guide-label, .step-title, .faq-question { color: var(--text); font-weight: 700; }
.accent-link { color:#ff6b35; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}
.article-author,
.article-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.article-author::before,
.article-date::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,69,0,0.16);
}
.article-date::before {
  background: rgba(255,255,255,0.45);
  box-shadow: none;
}
.seo-inline-links {
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
}
.related-articles {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.related-articles h2 {
  margin-top: 0;
}
.related-articles-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.related-article-card {
  display: block;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.related-article-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,107,53,0.35);
  background: rgba(255,107,53,0.06);
}
.related-article-card strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 8px;
}
.related-article-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 640px) {
  article { padding: 24px; }
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
