/* ============================================================
   Lucky Circus Review — style.css
   Prefix: --lc-*  |  Grid: 80px sidebar + 1fr main
   Breakpoints: 1040px / 790px
   Overflow-Fix (ivybet-Schema): html clip, body hidden, tables auto
   ============================================================ */

:root{
  --lc-bg:#0d0d0f;
  --lc-surface:#16151a;
  --lc-surface-2:#1e1c24;
  --lc-border:#2a2733;
  --lc-accent:#8b5cf6;
  --lc-accent-hover:#a78bfa;
  --lc-accent-soft:rgba(139,92,246,.14);
  --lc-cta:#22c55e;
  --lc-cta-hover:#34d67a;
  --lc-text:#e7e5ee;
  --lc-text-muted:#a29fb0;
  --lc-heading:#f5f3fa;
  --lc-gold:#e8b64c;
  --lc-danger:#ef5a5a;
  --lc-radius:14px;
  --lc-radius-sm:8px;
  --lc-font-display:'Bitter',Georgia,serif;
  --lc-font-logo:'Rye',var(--lc-font-display);
  --lc-font-body:'Inter',system-ui,-apple-system,sans-serif;
  --lc-maxw:1120px;
}

/* ---------- Reset / Base ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{overflow-x:clip;scroll-behavior:smooth}
body{
  overflow-x:hidden;
  background:var(--lc-bg);
  color:var(--lc-text);
  font-family:var(--lc-font-body);
  font-size:16px;
  line-height:1.65;
  display:grid;
  grid-template-columns:80px 1fr;
  min-height:100vh;
}
main{overflow:hidden}
img{max-width:100%;height:auto;display:block}
a{color:var(--lc-accent-hover);text-decoration:none}
a:hover{text-decoration:underline}
h1,h2,h3,h4,h5{font-family:var(--lc-font-display);color:var(--lc-heading);line-height:1.25;font-weight:700}
h1{font-size:2.4rem;letter-spacing:.5px}
h2{font-size:1.7rem;margin:2.2rem 0 .9rem}
h3{font-size:1.3rem;margin:1.8rem 0 .7rem}
h4{font-size:1.1rem;margin:1.4rem 0 .6rem}
p{margin:0 0 1rem}
ul,ol{margin:0 0 1rem 1.3rem}
li{margin-bottom:.35rem}
:focus-visible{outline:2px solid var(--lc-accent);outline-offset:2px}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
  html{scroll-behavior:auto}
}

/* ---------- Sidebar (icon rail) ---------- */
.lc-sidebar{
  grid-column:1;
  background:var(--lc-surface);
  border-right:1px solid var(--lc-border);
  position:sticky;top:0;height:100vh;
  display:flex;flex-direction:column;align-items:center;
  padding:18px 0;gap:6px;z-index:40;
}
.lc-sidebar__logo{
  width:44px;height:44px;border-radius:50%;
  background:var(--lc-accent-soft);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;
}
.lc-sidebar__logo svg{width:24px;height:24px;fill:var(--lc-accent)}
.lc-sidebar a.lc-sidebar__item{
  width:48px;height:48px;border-radius:var(--lc-radius-sm);
  display:flex;align-items:center;justify-content:center;
  color:var(--lc-text-muted);
}
.lc-sidebar a.lc-sidebar__item:hover,
.lc-sidebar a.lc-sidebar__item.is-active{
  background:var(--lc-accent-soft);color:var(--lc-accent-hover);text-decoration:none;
}
.lc-sidebar a.lc-sidebar__item svg{width:22px;height:22px;fill:currentColor}

/* ---------- Header ---------- */
.lc-header{
  position:sticky;top:0;z-index:30;
  background:rgba(13,13,15,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--lc-border);
}
.lc-header__inner{
  max-width:var(--lc-maxw);margin:0 auto;
  display:flex;align-items:center;gap:22px;
  padding:14px 20px;
}
.lc-logo{
  font-family:var(--lc-font-logo);
  font-size:1.35rem;color:var(--lc-heading);
  white-space:nowrap;
}
.lc-logo span{color:var(--lc-accent)}
.lc-logo:hover{text-decoration:none}
.lc-nav{display:flex;gap:6px;margin-left:auto}
.lc-nav a{
  padding:8px 13px;border-radius:var(--lc-radius-sm);
  color:var(--lc-text-muted);font-weight:500;font-size:.95rem;
}
.lc-nav a:hover,.lc-nav a.is-active{
  color:var(--lc-heading);background:var(--lc-surface-2);text-decoration:none;
}
.lc-header__auth{display:flex;gap:10px}
.lc-btn{
  display:inline-block;padding:9px 18px;border-radius:var(--lc-radius-sm);
  font-weight:600;font-size:.92rem;border:1px solid transparent;
  cursor:pointer;text-align:center;
}
.lc-btn--ghost{border-color:var(--lc-border);color:var(--lc-text)}
.lc-btn--ghost:hover{border-color:var(--lc-accent);color:var(--lc-accent-hover);text-decoration:none}
.lc-btn--cta{background:var(--lc-cta);color:#08130b}
.lc-btn--cta:hover{background:var(--lc-cta-hover);text-decoration:none}
.lc-btn--accent{background:var(--lc-accent);color:#fff}
.lc-btn--accent:hover{background:var(--lc-accent-hover);text-decoration:none}

/* Burger */
.lc-burger{
  display:none;background:none;border:0;cursor:pointer;
  width:42px;height:42px;border-radius:var(--lc-radius-sm);
  align-items:center;justify-content:center;flex-direction:column;gap:5px;
}
.lc-burger span{width:22px;height:2px;background:var(--lc-text);display:block;transition:transform .2s}
.lc-burger:hover{background:var(--lc-surface-2)}

/* Mobile menu (joka-bet-Schema: translateX + visibility) */
.lc-mobilemenu{
  position:fixed;inset:0 0 0 auto;width:min(320px,86vw);
  background:var(--lc-surface);border-left:1px solid var(--lc-border);
  z-index:60;padding:24px 20px;
  transform:translateX(100%);visibility:hidden;
  transition:transform .25s ease,visibility .25s;
  display:flex;flex-direction:column;gap:8px;
}
.lc-mobilemenu.open{transform:translateX(0);visibility:visible}
.lc-mobilemenu a{
  padding:12px 14px;border-radius:var(--lc-radius-sm);
  color:var(--lc-text);font-weight:500;
}
.lc-mobilemenu a:hover{background:var(--lc-surface-2);text-decoration:none}
.lc-mobilemenu__close{
  align-self:flex-end;background:none;border:0;color:var(--lc-text-muted);
  font-size:1.6rem;cursor:pointer;line-height:1;padding:4px 8px;
}
.lc-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:50;
  opacity:0;visibility:hidden;transition:opacity .25s,visibility .25s;
}
.lc-overlay.open{opacity:1;visibility:visible}

/* ---------- Layout ---------- */
.lc-container{max-width:var(--lc-maxw);margin:0 auto;padding:0 20px}
.lc-content{padding:28px 0 60px}

/* ---------- Hero (Signature: Lichterkette-Rahmen) ---------- */
.lc-hero{margin:26px 0 8px}
.lc-hero h1{margin-bottom:.6rem}
.lc-hero__lead{font-size:1.06rem;color:var(--lc-text-muted);max-width:64ch}
.lc-heroimg{
  margin:22px 0 10px;padding:10px;border-radius:var(--lc-radius);
  background:
    radial-gradient(circle 3px at 12px 12px,var(--lc-gold) 2px,transparent 3px) 0 0/28px 28px,
    var(--lc-surface);
  border:1px solid var(--lc-border);
}
.lc-heroimg img{border-radius:var(--lc-radius-sm);width:100%}
.lc-heroimg figcaption{
  font-size:.85rem;color:var(--lc-text-muted);padding:8px 6px 0;text-align:center;
}

/* ---------- Figures ---------- */
figure.lc-figure{margin:20px 0}
figure.lc-figure img{border-radius:var(--lc-radius-sm);border:1px solid var(--lc-border);width:100%}
figure.lc-figure figcaption{font-size:.85rem;color:var(--lc-text-muted);padding-top:8px}

/* ---------- Tables ---------- */
.lc-table-wrap{overflow-x:auto;margin:16px 0;border-radius:var(--lc-radius-sm);border:1px solid var(--lc-border)}
table.lc-table{width:100%;border-collapse:collapse;font-size:.94rem;display:table;min-width:520px}
.lc-table th,.lc-table td{padding:11px 14px;text-align:left;border-bottom:1px solid var(--lc-border);vertical-align:top}
.lc-table thead th{background:var(--lc-surface-2);color:var(--lc-heading);font-family:var(--lc-font-display);font-size:.9rem}
.lc-table tbody tr:last-child td{border-bottom:0}
.lc-table tbody tr:nth-child(even){background:rgba(255,255,255,.02)}
.lc-table--facts th{width:38%;color:var(--lc-text-muted);font-weight:500;background:var(--lc-surface)}

/* ---------- Pros / Cons ---------- */
.lc-proscons{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:18px 0}
.lc-proscons__col{background:var(--lc-surface);border:1px solid var(--lc-border);border-radius:var(--lc-radius);padding:18px 20px}
.lc-proscons__col h4{margin-top:0}
.lc-proscons__col--pro h4{color:var(--lc-cta)}
.lc-proscons__col--con h4{color:var(--lc-danger)}
.lc-proscons ul{margin-left:1.1rem}

/* ---------- Erfahrungen (Review-Karten) ---------- */
.lc-reviews{display:grid;gap:18px;margin:18px 0}
.lc-reviewcard{
  background:var(--lc-surface);border:1px solid var(--lc-border);
  border-radius:var(--lc-radius);padding:18px 20px;
}
.lc-reviewcard figure{margin:0 0 12px}
.lc-reviewcard img{border-radius:var(--lc-radius-sm);border:1px solid var(--lc-border);width:100%}
.lc-reviewcard figcaption{font-size:.85rem;color:var(--lc-text-muted);padding-top:6px}
.lc-reviewcard__analysis{font-size:.96rem}
.lc-reviewcard__meta{font-size:.85rem;color:var(--lc-gold);margin-bottom:6px;font-family:var(--lc-font-display)}

/* ---------- Callouts ---------- */
.lc-note{
  background:var(--lc-accent-soft);border-left:3px solid var(--lc-accent);
  border-radius:0 var(--lc-radius-sm) var(--lc-radius-sm) 0;
  padding:14px 18px;margin:16px 0;font-size:.96rem;
}
.lc-note--warn{background:rgba(232,182,76,.1);border-left-color:var(--lc-gold)}

/* ---------- FAQ (accordion: .open + max-height) ---------- */
.lc-faq{margin:16px 0}
.lc-faq__item{border:1px solid var(--lc-border);border-radius:var(--lc-radius-sm);margin-bottom:10px;background:var(--lc-surface)}
.lc-faq__q{
  width:100%;background:none;border:0;color:var(--lc-heading);
  font-family:var(--lc-font-display);font-size:1rem;font-weight:700;
  padding:15px 44px 15px 18px;text-align:left;cursor:pointer;position:relative;
}
.lc-faq__q::after{
  content:"+";position:absolute;right:16px;top:50%;transform:translateY(-50%);
  color:var(--lc-accent);font-size:1.3rem;transition:transform .2s;
}
.lc-faq__item.open .lc-faq__q::after{transform:translateY(-50%) rotate(45deg)}
.lc-faq__a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.lc-faq__item.open .lc-faq__a{max-height:600px}
.lc-faq__a-inner{padding:0 18px 15px;color:var(--lc-text-muted);font-size:.96rem}

/* ---------- Author box ---------- */
.lc-author{
  display:flex;gap:16px;align-items:center;
  background:var(--lc-surface);border:1px solid var(--lc-border);
  border-radius:var(--lc-radius);padding:16px 20px;margin:26px 0;
}
.lc-author img{width:64px;height:64px;border-radius:50%;object-fit:cover;flex-shrink:0}
.lc-author__name{font-family:var(--lc-font-display);color:var(--lc-heading);font-weight:700}
.lc-author__role{font-size:.88rem;color:var(--lc-text-muted)}

/* ---------- Footer ---------- */
.lc-footer{background:var(--lc-surface);border-top:1px solid var(--lc-border);margin-top:40px}
.lc-footer__inner{max-width:var(--lc-maxw);margin:0 auto;padding:36px 20px 24px}
.lc-footer__cols{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-bottom:28px}
.lc-footer__title{font-family:var(--lc-font-display);color:var(--lc-heading);font-weight:700;margin:0 0 10px;font-size:.95rem}
.lc-footer__col ul{list-style:none;margin:0}
.lc-footer__col a{color:var(--lc-text-muted);font-size:.9rem}
.lc-footer__col a:hover{color:var(--lc-accent-hover)}
.lc-footer__strip{
  display:flex;flex-wrap:wrap;gap:14px;align-items:center;
  padding:16px 0;border-top:1px solid var(--lc-border);
}
.lc-footer__strip img{height:26px;width:auto;opacity:.75}
.lc-footer__legal{
  border-top:1px solid var(--lc-border);padding-top:18px;
  font-size:.83rem;color:var(--lc-text-muted);
}
.lc-badge-18{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:50%;
  border:2px solid var(--lc-danger);color:var(--lc-danger);
  font-weight:700;font-size:.85rem;margin-right:10px;flex-shrink:0;
}

/* ---------- Breadcrumbs (Innenseiten) ---------- */
.lc-breadcrumbs{font-size:.85rem;color:var(--lc-text-muted);margin:18px 0 0}
.lc-breadcrumbs a{color:var(--lc-text-muted)}
.lc-breadcrumbs a:hover{color:var(--lc-accent-hover)}

/* ============================================================
   Breakpoints: 1040 / 790
   ============================================================ */
@media (max-width:1040px){
  .lc-nav{display:none}
  .lc-burger{display:flex}
  h1{font-size:2rem}
  h2{font-size:1.45rem}
}
@media (max-width:790px){
  body{grid-template-columns:1fr}
  .lc-sidebar{display:none}
  .lc-header__auth .lc-btn--ghost{display:none}
  .lc-footer__cols{grid-template-columns:repeat(2,1fr)}
  .lc-proscons{grid-template-columns:1fr}
  h1{font-size:1.7rem}
  .lc-content{padding:20px 0 44px}
  .lc-header__inner{padding:12px 16px;gap:12px}
  .lc-container{padding:0 16px}
}
@media (max-width:400px){
  .lc-footer__cols{grid-template-columns:1fr}
  .lc-btn{padding:8px 14px;font-size:.88rem}
}

/* ---------- Narrow figure (hochformatige Screenshots, z.B. Telegram) ---------- */
figure.lc-figure--narrow{max-width:420px;margin-left:auto;margin-right:auto}
