/* zahlungcasino.de — custom-handcrafted CSS */
/* Palette: #16213E (deep navy) + #0ACF83 (fintech emerald) */
/* Fonts: Epilogue (head) + Domine (body) — self-hosted woff2 */
/* Archetype: comparison-hub | Class prefix: zc- */

/* ── Self-hosted fonts ── */
@font-face {
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/epilogue-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Epilogue';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/epilogue-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Domine';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/domine-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Domine';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/domine-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --zc-navy:        #16213E;
  --zc-navy-mid:    #1E3055;
  --zc-emerald:     #0ACF83;
  --zc-emerald-dk:  #089E64;
  --zc-emerald-lt:  #E8FFF6;
  --zc-bg:          #F7F9FC;
  --zc-white:       #FFFFFF;
  --zc-text:        #1A202C;
  --zc-muted:       #4A5568;
  --zc-border:      #E2E8F0;
  --zc-radius:      8px;
  --zc-max-w:       1160px;
  --zc-font-h:      'Epilogue', system-ui, sans-serif;
  --zc-font-b:      'Domine', Georgia, serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--zc-font-b); color: var(--zc-text); background: var(--zc-bg); line-height: 1.75; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--zc-emerald-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--zc-font-h); font-weight: 700; line-height: 1.25; color: var(--zc-navy); }
h1 { font-size: clamp(1.75rem, 4vw, 2.625rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.3rem, 2.8vw, 1.875rem); margin-bottom: 0.75rem; margin-top: 2.5rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); margin-bottom: 0.5rem; margin-top: 1.75rem; }
p  { margin-bottom: 1.2rem; }
ul,ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
li { margin-bottom: 0.35rem; }
strong { font-weight: 700; }

/* ── Container ── */
.zc-wrap { max-width: var(--zc-max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.zc-header {
  background: var(--zc-navy);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 14px rgba(0,0,0,.2);
}
.zc-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.zc-logo {
  display: flex; align-items: center; gap: .5rem;
  text-decoration: none;
}
.zc-logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.zc-logo-name {
  font-family: var(--zc-font-h); font-weight: 700; font-size: 1.15rem;
  color: var(--zc-white); letter-spacing: -.01em;
}
.zc-logo-name em { color: var(--zc-emerald); font-style: normal; }

.zc-nav { display: flex; align-items: center; gap: .15rem; }
.zc-nav a {
  font-family: var(--zc-font-h); font-size: .88rem; font-weight: 500;
  color: rgba(255,255,255,.8); padding: .375rem .7rem; border-radius: 6px;
  transition: color .15s, background .15s; text-decoration: none;
}
.zc-nav a:hover { color: #fff; background: rgba(10,207,131,.15); }
.zc-nav .zc-nav-cta {
  background: var(--zc-emerald); color: var(--zc-navy) !important;
  font-weight: 700; margin-left: .5rem;
}
.zc-nav .zc-nav-cta:hover { background: var(--zc-emerald-dk); }

.zc-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: #fff; padding: .25rem;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.zc-hero {
  background: var(--zc-navy);
  background-image: linear-gradient(135deg, #0d1829 0%, var(--zc-navy) 60%, #1a2f4a 100%);
  color: #fff; padding: 4rem 0 3.5rem;
}
.zc-hero h1 { color: #fff; }
.zc-hero h1 em { color: var(--zc-emerald); font-style: normal; }
.zc-hero-lead {
  font-size: 1.1rem; color: rgba(255,255,255,.78); max-width: 640px;
  margin-bottom: 2rem; line-height: 1.75;
}
.zc-hero-chips {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem;
}
.zc-chip {
  background: rgba(10,207,131,.15); color: var(--zc-emerald);
  border: 1px solid rgba(10,207,131,.3);
  font-family: var(--zc-font-h); font-size: .78rem; font-weight: 600;
  padding: .25rem .65rem; border-radius: 20px; letter-spacing: .02em;
}
.zc-hero-meta {
  font-family: var(--zc-font-h); font-size: .78rem;
  color: rgba(255,255,255,.45); margin-top: 1.5rem;
  display: flex; align-items: center; gap: .5rem;
}

/* ══════════════════════════════════════
   SECTION LABEL / TITLE
══════════════════════════════════════ */
.zc-eyebrow {
  font-family: var(--zc-font-h); font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em; color: var(--zc-emerald-dk);
  margin-bottom: .375rem;
}
.zc-section-title { margin-top: 0; }
.zc-section-intro { color: var(--zc-muted); max-width: 600px; margin-bottom: 2rem; }

/* ══════════════════════════════════════
   METHOD CARDS (Homepage grid)
══════════════════════════════════════ */
.zc-methods { padding: 3.5rem 0; }
.zc-cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.125rem;
}
.zc-card {
  background: var(--zc-white); border: 1.5px solid var(--zc-border);
  border-radius: var(--zc-radius); padding: 1.375rem;
  display: flex; flex-direction: column; gap: .625rem;
  text-decoration: none; transition: border-color .18s, box-shadow .18s, transform .15s;
}
.zc-card:hover {
  border-color: var(--zc-emerald); text-decoration: none;
  box-shadow: 0 6px 22px rgba(10,207,131,.1); transform: translateY(-2px);
}
.zc-card-ico {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--zc-emerald-lt); display: flex; align-items: center; justify-content: center;
  color: var(--zc-emerald-dk); flex-shrink: 0;
}
.zc-card-ico svg { width: 24px; height: 24px; }
.zc-card-title {
  font-family: var(--zc-font-h); font-weight: 700; font-size: 1rem; color: var(--zc-navy);
}
.zc-card-desc { font-size: .88rem; color: var(--zc-muted); line-height: 1.6; flex: 1; margin: 0; }
.zc-card-more {
  font-family: var(--zc-font-h); font-size: .82rem; font-weight: 600;
  color: var(--zc-emerald-dk); display: flex; align-items: center; gap: .25rem;
}
.zc-card-more svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════ */
.zc-table-section { padding: 3rem 0; background: var(--zc-white); }
.zc-table-wrap { overflow-x: auto; border-radius: var(--zc-radius); border: 1.5px solid var(--zc-border); }
.zc-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.zc-table thead { background: var(--zc-navy); }
.zc-table th {
  padding: .875rem 1rem; text-align: left; color: var(--zc-white);
  font-family: var(--zc-font-h); font-weight: 600; font-size: .82rem; white-space: nowrap;
}
.zc-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--zc-border); vertical-align: middle; }
.zc-table tbody tr:last-child td { border-bottom: none; }
.zc-table tbody tr:hover { background: var(--zc-emerald-lt); }
.zc-table td:first-child { font-family: var(--zc-font-h); font-weight: 600; color: var(--zc-navy); }

.zc-tag {
  display: inline-block; padding: .18rem .5rem; border-radius: 4px;
  font-family: var(--zc-font-h); font-size: .74rem; font-weight: 700;
}
.zc-tag-g { background: var(--zc-emerald-lt); color: #065f46; }
.zc-tag-y { background: #FFFBEB; color: #92400E; }
.zc-tag-r { background: #FEF2F2; color: #991B1B; }

/* ══════════════════════════════════════
   ARTICLE LAYOUT
══════════════════════════════════════ */
.zc-article-outer { padding: 2.5rem 0 4rem; }
.zc-article-layout {
  display: grid; grid-template-columns: 1fr 288px; gap: 3rem; align-items: start;
}
.zc-article-body h2 { margin-top: 2.25rem; }
.zc-article-body h3 { margin-top: 1.75rem; }
.zc-article-body ul, .zc-article-body ol { margin-bottom: 1.2rem; }
.zc-article-body a { color: var(--zc-emerald-dk); text-decoration: underline; text-underline-offset: 2px; }

/* Sidebar */
.zc-sidebar { position: sticky; top: 78px; }
.zc-sidebar-box {
  background: var(--zc-white); border: 1.5px solid var(--zc-border);
  border-radius: var(--zc-radius); padding: 1.25rem; margin-bottom: 1.125rem;
}
.zc-sidebar-hd {
  font-family: var(--zc-font-h); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .07em; color: var(--zc-navy);
  margin-bottom: .875rem;
}
.zc-sidebar-list { list-style: none; padding: 0; }
.zc-sidebar-list li { border-bottom: 1px solid var(--zc-border); }
.zc-sidebar-list li:last-child { border-bottom: none; }
.zc-sidebar-list a {
  display: block; padding: .45rem 0; font-family: var(--zc-font-h);
  font-size: .87rem; font-weight: 500; color: var(--zc-text); text-decoration: none;
}
.zc-sidebar-list a:hover { color: var(--zc-emerald-dk); }

/* Regulatory notice box */
.zc-callout {
  border: 1.5px solid var(--zc-emerald);
  border-radius: var(--zc-radius);
  padding: .875rem 1.125rem .875rem 3rem;
  margin: 1.75rem 0; font-size: .94rem;
  position: relative; background: transparent;
}
.zc-callout::before {
  content: '';
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%230ACF83' stroke-width='1.5'/%3E%3Cpath d='M10 9v5' stroke='%230ACF83' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='10' cy='6.5' r='1' fill='%230ACF83'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
}

/* Thumbnail */
.zc-thumb {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--zc-radius); margin-bottom: 2rem;
}
.zc-section-visual { padding: 1rem 0 0; }

/* ══════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════ */
.zc-breadcrumb {
  padding: .875rem 0; font-family: var(--zc-font-h); font-size: .8rem; color: var(--zc-muted);
  border-bottom: 1px solid var(--zc-border); margin-bottom: 0;
}
.zc-breadcrumb a { color: var(--zc-muted); text-decoration: none; }
.zc-breadcrumb a:hover { color: var(--zc-emerald-dk); }
.zc-breadcrumb .sep { margin: 0 .375rem; }

/* ══════════════════════════════════════
   ARTICLE META
══════════════════════════════════════ */
.zc-article-header { padding: 2rem 0 1.5rem; }
.zc-article-meta {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  font-family: var(--zc-font-h); font-size: .8rem; color: var(--zc-muted); margin-top: .875rem;
}
.zc-meta-item { display: flex; align-items: center; gap: .3rem; }
.zc-meta-item svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.zc-faq-section { padding: 3rem 0; background: var(--zc-white); }
.zc-faq-list { max-width: 760px; margin: 0 auto; }
.zc-faq-item { border-bottom: 1.5px solid var(--zc-border); }
.zc-faq-item:last-child { border-bottom: none; }
.zc-faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.1rem 0; text-align: left; display: flex;
  justify-content: space-between; align-items: flex-start; gap: 1rem;
  font-family: var(--zc-font-h); font-weight: 600; font-size: .97rem; color: var(--zc-navy);
}
.zc-faq-btn svg {
  width: 18px; height: 18px; flex-shrink: 0;
  stroke: var(--zc-emerald-dk); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; margin-top: .1rem;
}
.zc-faq-item[open] .zc-faq-btn svg { transform: rotate(180deg); }
.zc-faq-ans { padding: 0 0 1.1rem; color: var(--zc-muted); font-size: .93rem; line-height: 1.75; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.zc-footer {
  background: var(--zc-navy); color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem; margin-top: 3.5rem;
}
.zc-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem;
}
.zc-footer-brand { display: flex; flex-direction: column; gap: .75rem; }
.zc-footer-desc { font-size: .85rem; line-height: 1.65; max-width: 300px; color: rgba(255,255,255,.6); }
.zc-footer-nav-hd {
  font-family: var(--zc-font-h); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .07em; color: #fff; margin-bottom: .875rem;
}
.zc-footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .35rem; }
.zc-footer-col a { color: rgba(255,255,255,.62); font-size: .87rem; text-decoration: none; transition: color .15s; }
.zc-footer-col a:hover { color: var(--zc-emerald); }
.zc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem; font-family: var(--zc-font-h); font-size: .78rem; color: rgba(255,255,255,.45);
}
.zc-footer-legal a { color: rgba(255,255,255,.55); text-decoration: none; }
.zc-footer-legal a:hover { color: var(--zc-emerald); }
.zc-footer-legal span { margin: 0 .5rem; }
.zc-disclaimer {
  font-size: .76rem; color: rgba(255,255,255,.38); max-width: 620px; line-height: 1.55; margin-top: 1rem;
}

/* ══════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════ */
.zc-legal-body { padding: 2.5rem 0 4rem; max-width: 760px; }
.zc-legal-body h2 { margin-top: 2rem; font-size: 1.25rem; }
.zc-legal-body h3 { margin-top: 1.5rem; font-size: 1.05rem; }
.zc-legal-body p, .zc-legal-body li { font-size: .95rem; }

/* ══════════════════════════════════════
   404
══════════════════════════════════════ */
.zc-404 {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 4rem 1.5rem;
}
.zc-404 h1 { font-size: 5rem; color: var(--zc-emerald); margin-bottom: .5rem; }
.zc-404 p { color: var(--zc-muted); max-width: 400px; margin-bottom: 1.5rem; }
.zc-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--zc-emerald); color: var(--zc-navy) !important;
  font-family: var(--zc-font-h); font-weight: 700; font-size: .9rem;
  padding: .6rem 1.25rem; border-radius: var(--zc-radius); text-decoration: none !important;
  transition: background .15s;
}
.zc-btn:hover { background: var(--zc-emerald-dk); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .zc-article-layout { grid-template-columns: 1fr; }
  .zc-sidebar { position: static; order: -1; }
  .zc-footer-grid { grid-template-columns: 1fr 1fr; }
  .zc-footer-brand { grid-column: 1/-1; }
}
@media (max-width: 640px) {
  .zc-nav { display: none; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: var(--zc-navy); padding: 1rem 1.5rem 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
  .zc-nav.open { display: flex; }
  .zc-hamburger { display: block; }
  .zc-hero { padding: 2.5rem 0 2rem; }
  .zc-cards-grid { grid-template-columns: 1fr; }
  .zc-footer-grid { grid-template-columns: 1fr; }
  .zc-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════
   PRINT
══════════════════════════════════════ */
@media print {
  .zc-header, .zc-sidebar, .zc-footer { display: none; }
  .zc-article-layout { grid-template-columns: 1fr; }
}
