/* Gemeinsames Styling für die Ratgeber-/SEO-Landingpages von xmrhub. */
:root {
  --ink: #edeeec;
  --ink-dim: #9a9da3;
  --ink-faint: #64676d;
  --void: #121316;
  --surface: #1b1d21;
  --surface-raised: #212327;
  --line: #2a2d33;
  --orange: #ff6600;
  --green: #6fbf8b;
  --red: #c4645a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

header.bar {
  border-bottom: 1px solid var(--line);
  background: rgba(18, 19, 22, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.bar-in {
  max-width: 820px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; color: var(--ink); }
.bar-nav { display: flex; align-items: center; gap: 12px; }
.lang { font-size: 13px; font-weight: 600; color: var(--ink-dim); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; }
.lang:hover { color: var(--ink); border-color: rgba(255, 102, 0, 0.5); text-decoration: none; }
.cta-sm {
  font-size: 14px; font-weight: 600; padding: 8px 18px; border-radius: 999px;
  background: var(--orange); color: var(--void);
  box-shadow: 0 0 16px rgba(255, 102, 0, 0.35);
}
.cta-sm:hover { text-decoration: none; box-shadow: 0 0 26px rgba(255, 102, 0, 0.6); }

main { max-width: 820px; margin: 0 auto; padding: 48px 24px 80px; }
.crumbs { font-size: 13px; color: var(--ink-faint); margin-bottom: 16px; }
h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 6vw, 3rem); font-weight: 600; line-height: 1.08; margin: 0 0 12px; }
h1 .o { color: var(--orange); }
.lede { font-size: 1.15rem; color: var(--ink-dim); margin: 0 0 8px; }
h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 600; margin: 44px 0 12px; }
h3 { font-size: 1.1rem; font-weight: 600; margin: 28px 0 8px; color: var(--ink); }
p, li { color: var(--ink-dim); }
strong { color: var(--ink); }
ul, ol { padding-left: 22px; }
li { margin: 6px 0; }

.callout {
  border: 1px solid var(--orange); border-color: rgba(255, 102, 0, 0.3);
  background: rgba(255, 102, 0, 0.08);
  border-radius: 16px; padding: 20px 24px; margin: 28px 0;
}
.card {
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 16px; padding: 20px 24px; margin: 16px 0;
}
.cta-box {
  border: 1px solid rgba(255,102,0,0.3); border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,102,0,0.12), transparent);
  padding: 28px; margin: 40px 0; text-align: center;
}
.cta-box a.btn {
  display: inline-block; margin-top: 14px; padding: 14px 28px; border-radius: 14px;
  background: var(--orange); color: var(--void); font-weight: 600; font-size: 1.05rem;
  box-shadow: 0 0 24px rgba(255, 102, 0, 0.3);
}
.cta-box a.btn:hover { text-decoration: none; box-shadow: 0 0 40px rgba(255, 102, 0, 0.55); }

table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.95rem; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
th { color: var(--ink); font-weight: 600; }
td { color: var(--ink-dim); }
.tbl-wrap { overflow-x: auto; }

.related { display: grid; gap: 12px; margin-top: 16px; }
@media (min-width: 640px) { .related { grid-template-columns: 1fr 1fr; } }
.related a {
  display: block; border: 1px solid var(--line); background: var(--surface);
  border-radius: 14px; padding: 16px 18px;
}
.related a:hover { border-color: rgba(255, 102, 0, 0.4); text-decoration: none; }
.related a b { color: var(--ink); display: block; }
.related a span { color: var(--ink-faint); font-size: 0.9rem; }

.disclaimer { margin-top: 40px; font-size: 0.85rem; color: var(--ink-faint); }
footer.foot { border-top: 1px solid var(--line); }
.foot-in { max-width: 820px; margin: 0 auto; padding: 24px; color: var(--ink-faint); font-size: 0.85rem; display: flex; gap: 20px; flex-wrap: wrap; }
