/*
Theme Name: Bayou Board
Author: Woitzi
Description: Dunkles, gritty One-Page Theme (Hunt-Showdown-inspiriertes UI Feeling, ohne Originalassets).
Version: 1.0
Text Domain: bayou-board
*/



:root{
  --bg:#070707;
  --bg2:#0c0c0c;
  --panel:rgba(18,18,18,.78);
  --panel2:rgba(12,12,12,.55);
  --line:rgba(208,180,105,.24);
  --text:#e8e2d6;
  --muted:rgba(232,226,214,.72);
  --gold:#d0b469;
  --gold2:#a98b3a;
  --danger:#9b2d2d;
  --shadow: 0 18px 55px rgba(0,0,0,.65);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 35% 12%, rgba(208,180,105,.12), transparent 55%),
    radial-gradient(900px 500px at 80% 40%, rgba(155,45,45,.08), transparent 55%),
    linear-gradient(180deg, var(--bg), #050505 60%, #040404);
  overflow-x:hidden;
}

.grain{
  position:fixed; inset:0;
  pointer-events:none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.18;
}

.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 22px;
  background: linear-gradient(180deg, rgba(10,10,10,.92), rgba(10,10,10,.72));
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(8px);
}

.brand{display:flex; align-items:center; gap:12px; letter-spacing:.12em}
.sigil{
  width:28px; height:28px; border-radius:6px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 30% 25%, rgba(208,180,105,.55), transparent 45%),
    radial-gradient(circle at 70% 75%, rgba(208,180,105,.18), transparent 55%),
    linear-gradient(180deg, rgba(16,16,16,.8), rgba(6,6,6,.9));
  box-shadow: 0 0 0 2px rgba(0,0,0,.35) inset;
}
.brand-title{
  font-family: Cinzel, serif;
  font-weight:700;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(0,0,0,.65);
}

.nav{display:flex; gap:18px}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-family: Cinzel, serif;
  font-weight:700;
  letter-spacing:.08em;
  font-size:13px;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--text);
  border-color: var(--line);
  background: rgba(208,180,105,.06);
}

.meta{display:flex; align-items:center; gap:10px}
.pill{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(12,12,12,.55);
}
.iconbtn{
  border:1px solid var(--line);
  background: rgba(12,12,12,.55);
  color:var(--text);
  width:34px; height:34px; border-radius:10px;
  cursor:pointer;
}

.wrap{max-width:1150px; margin:0 auto; padding:26px 20px 60px}

/* HERO BEREICH ZENTRIEREN */
.hero {
  min-height: 50vh;                /* Höhe des sichtbaren Bereichs */
  display: flex;
  align-items: center;             /* vertikal zentrieren */
  justify-content: center;         /* horizontal zentrieren */
  text-align: center;
}

/* LINKER BLOCK */
.hero-left {
  max-width: 800px;
  margin: 0 auto;
}

/* ÜBERSCHRIFT GRÖSSER */
.hero-left h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
}

/* BESCHREIBUNG GRÖSSER & LUFTIGER */
.hero-left .lead {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 3rem auto 0;
}

/* BUTTONS MITTE + MEHR ABSTAND */
.hero-left .cta {
  justify-content: center;
  margin-top: 2rem;
}

.kicker{
  font-family: Cinzel, serif;
  letter-spacing:.22em;
  color: var(--gold);
  opacity:.9;
  font-weight:700;
  font-size:15px;
  margin-bottom:8px;
}

h1{
  font-family: Cinzel, serif;
  margin:0 0 10px;
  font-size:44px;
  line-height:1.05;
  text-shadow: 0 2px 0 rgba(0,0,0,.6);
}
.lead{color:var(--muted); font-size:15px; line-height:1.65; max-width:62ch}

.stats{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.stat{
  background: rgba(10,10,10,.55);
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px 12px;
  box-shadow: var(--shadow);
}
.label{font-size:12px; color:var(--muted)}
.value{
  margin-top:6px;
  font-family: Cinzel, serif;
  font-weight:700;
  letter-spacing:.08em;
  font-size:18px;
  color:var(--text);
}

.cta{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  border:1px solid var(--line);
  font-family: Cinzel, serif;
  letter-spacing:.12em;
  font-weight:700;
  font-size:13px;
  cursor:pointer;
}
.btn-primary{
  background: linear-gradient(180deg, rgba(208,180,105,.22), rgba(208,180,105,.06));
  color:var(--text);
}
.btn-primary:hover{background: linear-gradient(180deg, rgba(208,180,105,.32), rgba(208,180,105,.09))}
.btn-ghost{
  background: rgba(12,12,12,.55);
  color:var(--muted);
}
.btn-ghost:hover{color:var(--text); background: rgba(208,180,105,.06)}

.panel{
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Kopf */
.panel-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(208,180,105,.18);
  background: rgba(8,8,8,.35);
}

.panel-title{
  font-family: Cinzel, serif;
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 13px;
  color: var(--gold);
}

/* Badge */
.badge{
  font-size: 11px;
  letter-spacing: .12em;
  border: 1px solid rgba(208,180,105,.35);
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(208,180,105,.08);
}

/* Panel Body */
.panel-body{
  padding: 16px;
}

/* Links im Panel */
.panel-body a{
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

/* Texte im Panel */
.panel-body p{
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}


.link-underline{
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}

.contract{margin-top:12px}
.contract-card{
  display:flex; gap:12px; align-items:center;
  border:1px solid rgba(208,180,105,.22);
  border-radius:16px;
  padding:12px;
  background: rgba(8,8,8,.35);
}
.dice{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  border:1px solid rgba(208,180,105,.35);
  color:var(--gold);
  font-size:20px;
  background: rgba(208,180,105,.06);
}
.contract-title{font-family:Cinzel,serif; font-weight:700; letter-spacing:.08em}
.contract-sub{color:var(--muted); font-size:12px; margin-top:2px}

.contract-actions{display:flex; gap:8px; margin-top:10px}
.smallbtn{
  border:1px solid rgba(208,180,105,.28);
  background: rgba(12,12,12,.55);
  color:var(--text);
  padding:9px 10px;
  border-radius:14px;
  cursor:pointer;
  font-family: Cinzel, serif;
  letter-spacing:.10em;
  font-size:12px;
}
.smallbtn:hover{background: rgba(208,180,105,.06)}
.smallbtn.danger{
  border-color: rgba(155,45,45,.45);
  background: rgba(155,45,45,.12);
}

.divider{
  height:1px;
  background: rgba(208,180,105,.18);
  margin:14px 0;
}
.hint{color:var(--muted); font-size:13px; line-height:1.6}

.grid{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.list{margin:0; padding:0; list-style:none; display:grid; gap:10px}
.dot{
  display:inline-block; width:8px; height:8px; border-radius:999px;
  background: rgba(208,180,105,.55);
  box-shadow: 0 0 0 3px rgba(208,180,105,.10);
  margin-right:10px;
}
.muted{color:var(--muted)}
.chips{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.chip{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(208,180,105,.22);
  background: rgba(208,180,105,.06);
  color:var(--muted);
}

.footer{
  margin-top:26px;
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  color:var(--muted);
  border-top:1px solid rgba(208,180,105,.18);
  padding-top:16px;
  font-size:12px;
}

.authors-bar{
  margin-top: 18px;
  padding-top: 14px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* ⬅ HORIZONTAL zentrieren */
  align-items: stretch;

  gap: 10px 12px;
  border-top: 1px solid rgba(208,180,105,.18);
}

.authors-label{
  width: 100%;
  text-align: center;
  margin-bottom: 6px;
}


.authors-items{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}



@media (max-width: 980px){
  .hero{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr}
  h1{font-size:38px}
  .nav{display:none}
}