/* BV Casino — bvcasino.com.de — bespoke, tiefblau + gold, "Sportwetten"-Layout */

:root{
  --bvc-navy-950:#060a1a;
  --bvc-navy-900:#0b1230;
  --bvc-navy-850:#0e1638;
  --bvc-navy-800:#121b42;
  --bvc-navy-700:#1c2a5e;
  --bvc-navy-line:rgba(200,161,91,.22);
  --bvc-gold-700:#8f6f34;
  --bvc-gold-500:#c8a15b;
  --bvc-gold-400:#ddbe80;
  --bvc-gold-200:#f0ddb2;
  --bvc-cream:#f3ecd9;
  --bvc-ink:#0b1230;
  --bvc-muted:#a7add0;
  --bvc-green:#3f9b6f;
  --bvc-red:#c65a4e;
  --bvc-radius:14px;
  --bvc-radius-lg:22px;
  --bvc-shadow:0 18px 48px rgba(3,6,20,.55);
  --bvc-serif:Georgia,'Times New Roman',Times,serif;
  --bvc-sans:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  --bvc-header-h:76px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bvc-navy-900);
  color:var(--bvc-cream);
  font-family:var(--bvc-sans);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height:auto}
a{color:var(--bvc-gold-400);text-decoration:none}
a:hover{color:var(--bvc-gold-200);text-decoration:underline}
a:focus-visible,button:focus-visible{outline:2px solid var(--bvc-gold-400);outline-offset:2px}
ul,ol{margin:0;padding:0}
table{border-collapse:collapse}
button{font-family:inherit}
html{overflow-x:clip}

.bvc-container{max-width:1140px;margin:0 auto;padding:0 20px}

/* ===== Header ===== */
.bvc-header{
  position:sticky;top:0;z-index:40;
  height:var(--bvc-header-h);
  display:flex;align-items:center;
  background:rgba(6,10,26,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--bvc-navy-line);
}
.bvc-header-inner{
  width:100%;max-width:1140px;margin:0 auto;padding:0 20px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.bvc-wordmark{
  font-family:var(--bvc-serif);
  font-size:1.5rem;letter-spacing:.06em;
  color:var(--bvc-gold-400);
  border:1px solid var(--bvc-gold-500);
  padding:.28em .7em;
  border-radius:4px;
  white-space:nowrap;
}
.bvc-wordmark span{color:var(--bvc-cream)}

.bvc-nav-desktop{display:flex;align-items:center;gap:28px;flex:1;justify-content:center}
.bvc-nav-desktop a{
  font-size:.92rem;color:var(--bvc-muted);letter-spacing:.02em;
}
.bvc-nav-desktop a:hover,.bvc-nav-desktop a[aria-current="page"]{color:var(--bvc-gold-400);text-decoration:none}

.bvc-header-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:linear-gradient(180deg,var(--bvc-gold-400),var(--bvc-gold-700));
  color:var(--bvc-ink);font-weight:700;font-size:.9rem;
  padding:.6em 1.2em;border-radius:999px;white-space:nowrap;
  box-shadow:0 8px 20px rgba(200,161,91,.25);
}
.bvc-header-cta:hover{color:var(--bvc-ink);text-decoration:none;filter:brightness(1.06)}

.bvc-burger{
  display:none;
  width:42px;height:42px;border-radius:10px;
  background:var(--bvc-navy-800);border:1px solid var(--bvc-navy-line);
  color:var(--bvc-gold-400);
  align-items:center;justify-content:center;
  cursor:pointer;flex-shrink:0;
}
.bvc-burger span{display:block;width:18px;height:2px;background:var(--bvc-gold-400);position:relative}
.bvc-burger span::before,.bvc-burger span::after{content:"";position:absolute;left:0;width:18px;height:2px;background:var(--bvc-gold-400)}
.bvc-burger span::before{top:-6px}
.bvc-burger span::after{top:6px}

/* mobile off-canvas nav */
.bvc-mobile-nav{
  position:fixed;top:0;right:0;height:100%;width:min(320px,86vw);
  background:var(--bvc-navy-950);
  border-left:1px solid var(--bvc-navy-line);
  transform:translateX(100%);
  transition:transform .28s ease;
  z-index:60;
  padding:24px 22px;
  overflow-y:auto;
}
.bvc-mobile-nav.is-open{transform:translateX(0)}
.bvc-mobile-nav-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}
.bvc-mobile-close{
  width:36px;height:36px;border-radius:8px;background:var(--bvc-navy-800);
  border:1px solid var(--bvc-navy-line);color:var(--bvc-gold-400);
  font-size:1.1rem;cursor:pointer;
}
.bvc-mobile-nav a{
  display:block;padding:.85em 0;font-size:1.05rem;color:var(--bvc-cream);
  border-bottom:1px solid var(--bvc-navy-line);
}
.bvc-mobile-nav a[aria-current="page"]{color:var(--bvc-gold-400)}
.bvc-mobile-cta{
  margin-top:20px;display:block;text-align:center;
  background:linear-gradient(180deg,var(--bvc-gold-400),var(--bvc-gold-700));
  color:var(--bvc-ink);font-weight:700;padding:.85em 1em;border-radius:999px;
}
.bvc-mobile-cta:hover{color:var(--bvc-ink);text-decoration:none}
.bvc-scrim{
  position:fixed;inset:0;background:rgba(4,6,16,.6);z-index:50;
  opacity:0;pointer-events:none;transition:opacity .25s ease;
}
.bvc-scrim.is-open{opacity:1;pointer-events:auto}
body.bvc-noscroll{overflow:hidden}

@media (max-width:860px){
  .bvc-nav-desktop,.bvc-header-cta{display:none}
  .bvc-burger{display:flex}
}

/* ===== Hero ===== */
.bvc-hero{
  position:relative;overflow:hidden;
  background:
    radial-gradient(60% 90% at 82% 8%,rgba(200,161,91,.16),transparent 60%),
    radial-gradient(70% 60% at 10% 100%,rgba(28,42,94,.55),transparent 60%),
    var(--bvc-navy-950);
  border-bottom:1px solid var(--bvc-navy-line);
  padding:64px 0 56px;
}
.bvc-hero-grid{
  display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center;
}
.bvc-eyebrow{
  font-family:var(--bvc-serif);font-style:italic;color:var(--bvc-gold-400);
  letter-spacing:.08em;font-size:.95rem;margin:0 0 .8em;
}
.bvc-hero-title{
  font-family:var(--bvc-serif);font-size:clamp(1.9rem,3.6vw,2.9rem);
  color:var(--bvc-cream);line-height:1.15;margin:0 0 .5em;letter-spacing:.01em;
}
.bvc-hero-title em{color:var(--bvc-gold-400);font-style:normal;border-bottom:1px solid var(--bvc-gold-500)}
.bvc-hero-lead{color:var(--bvc-muted);font-size:1.05rem;max-width:46ch;margin:0 0 1.6em}
.bvc-hero-actions{display:flex;flex-wrap:wrap;gap:14px}
.bvc-btn-gold{
  display:inline-flex;align-items:center;gap:8px;
  background:linear-gradient(180deg,var(--bvc-gold-400),var(--bvc-gold-700));
  color:var(--bvc-ink);font-weight:700;padding:.85em 1.5em;border-radius:999px;
  box-shadow:0 10px 26px rgba(200,161,91,.28);
}
.bvc-btn-gold:hover{color:var(--bvc-ink);text-decoration:none;filter:brightness(1.05)}
.bvc-btn-ghost{
  display:inline-flex;align-items:center;gap:8px;
  border:1px solid var(--bvc-navy-line);color:var(--bvc-cream);
  padding:.85em 1.4em;border-radius:999px;
}
.bvc-btn-ghost:hover{color:var(--bvc-gold-400);text-decoration:none;border-color:var(--bvc-gold-500)}

/* decorative "odds ticket" card — pure CSS, no images */
.bvc-ticket{
  background:linear-gradient(180deg,var(--bvc-navy-800),var(--bvc-navy-850));
  border:1px solid var(--bvc-navy-line);border-radius:var(--bvc-radius-lg);
  box-shadow:var(--bvc-shadow);padding:22px 22px 18px;
  min-height:280px;
}
.bvc-ticket-head{
  display:flex;align-items:center;justify-content:space-between;
  padding-bottom:12px;margin-bottom:14px;border-bottom:1px dashed var(--bvc-navy-line);
}
.bvc-ticket-label{font-size:.78rem;letter-spacing:.08em;color:var(--bvc-muted);text-transform:uppercase}
.bvc-ticket-live{
  display:inline-flex;align-items:center;gap:6px;font-size:.75rem;color:var(--bvc-gold-400);
}
.bvc-ticket-live::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--bvc-green);box-shadow:0 0 0 3px rgba(63,155,111,.25)}
.bvc-fixture{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:11px 0;border-bottom:1px solid rgba(200,161,91,.12)}
.bvc-fixture:last-child{border-bottom:none}
.bvc-fixture-teams{font-size:.92rem;color:var(--bvc-cream);min-width:0}
.bvc-fixture-teams small{display:block;color:var(--bvc-muted);font-size:.72rem;margin-top:2px}
.bvc-odds{display:flex;gap:8px;flex-shrink:0}
.bvc-odds span{
  font-variant-numeric:tabular-nums;font-feature-settings:"tnum" 1;
  min-width:2.6em;text-align:center;
  background:var(--bvc-navy-700);border:1px solid var(--bvc-navy-line);
  border-radius:7px;padding:.3em .35em;font-size:.85rem;color:var(--bvc-gold-200);
}
.bvc-ticket-note{margin:14px 0 0;font-size:.72rem;color:var(--bvc-muted)}

/* ===== Trust strip ===== */
.bvc-trust{padding:34px 0;border-bottom:1px solid var(--bvc-navy-line)}
.bvc-trust-row{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.bvc-trust-item{
  display:flex;align-items:center;gap:12px;
  background:var(--bvc-navy-800);border:1px solid var(--bvc-navy-line);
  border-radius:var(--bvc-radius);padding:14px 16px;
}
.bvc-trust-icon{
  width:38px;height:38px;border-radius:10px;flex-shrink:0;
  background:radial-gradient(circle at 30% 30%,var(--bvc-gold-400),var(--bvc-gold-700));
  position:relative;
}
.bvc-trust-icon::after{content:"";position:absolute;inset:9px;border:1.5px solid var(--bvc-navy-950);border-radius:50%}
.bvc-trust-text{min-width:0;display:flex;flex-direction:column;gap:2px}
.bvc-trust-title{margin:0;font-size:.92rem;color:var(--bvc-cream);font-weight:600;display:block}
.bvc-trust-sub{margin:0;font-size:.78rem;color:var(--bvc-muted);display:block}

/* ===== Section blocks (homepage teasers) ===== */
.bvc-section{padding:56px 0}
.bvc-section-alt{background:var(--bvc-navy-850)}
.bvc-section-head{max-width:62ch;margin:0 0 26px}
.bvc-section-eyebrow{font-family:var(--bvc-serif);font-style:italic;color:var(--bvc-gold-400);font-size:.9rem;letter-spacing:.06em;margin:0 0 .5em}
.bvc-section-title{font-family:var(--bvc-serif);font-size:1.6rem;color:var(--bvc-cream);margin:0 0 .4em}
.bvc-section-sub{color:var(--bvc-muted);margin:0;font-size:.98rem}

.bvc-chip-row{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 22px}
.bvc-chip{
  font-size:.82rem;color:var(--bvc-gold-200);
  border:1px solid var(--bvc-gold-500);border-radius:999px;
  padding:.45em 1em;background:rgba(200,161,91,.08);
}

.bvc-card-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.bvc-card{
  background:var(--bvc-navy-800);border:1px solid var(--bvc-navy-line);
  border-radius:var(--bvc-radius-lg);padding:22px;
  display:flex;flex-direction:column;gap:10px;
}
.bvc-card-title{font-family:var(--bvc-serif);font-size:1.15rem;color:var(--bvc-gold-400);margin:0}
.bvc-card-text{color:var(--bvc-muted);font-size:.92rem;margin:0 0 6px;flex:1}
.bvc-card-link{font-size:.88rem;font-weight:600;color:var(--bvc-gold-400)}
.bvc-card-link::after{content:" →";}

.bvc-teaser-plain{
  background:var(--bvc-navy-800);border:1px solid var(--bvc-navy-line);
  border-radius:var(--bvc-radius-lg);padding:24px 26px;color:var(--bvc-muted);
}
.bvc-teaser-plain p{margin:0}

/* ===== Breadcrumbs ===== */
.bvc-breadcrumb{padding:18px 0 0}
.bvc-breadcrumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:6px;font-size:.82rem;color:var(--bvc-muted)}
.bvc-breadcrumb li+li::before{content:"/";margin-right:6px;color:var(--bvc-gold-500)}
.bvc-breadcrumb a{color:var(--bvc-muted)}
.bvc-breadcrumb a:hover{color:var(--bvc-gold-400)}
.bvc-breadcrumb [aria-current="page"]{color:var(--bvc-gold-400)}

/* ===== Article (SEO body — the only place with real headings) ===== */
.bvc-article-wrap{padding:38px 0 60px}
.bvc-article{max-width:76ch;margin:0 auto}
.bvc-article h1{
  font-family:var(--bvc-serif);font-size:clamp(1.7rem,3.2vw,2.3rem);
  color:var(--bvc-cream);line-height:1.22;margin:.2em 0 .6em;
}
.bvc-article h2{
  font-family:var(--bvc-serif);font-size:1.35rem;color:var(--bvc-gold-400);
  margin:1.6em 0 .55em;padding-top:.2em;border-top:1px solid var(--bvc-navy-line);
}
.bvc-article h2:first-of-type{border-top:none;padding-top:0}
.bvc-article h3{font-family:var(--bvc-serif);font-size:1.08rem;color:var(--bvc-cream);margin:1.3em 0 .4em}
.bvc-article p{color:#dfe3f2;margin:0 0 1.05em}
.bvc-article ul{margin:0 0 1.1em;padding-left:1.3em}
.bvc-article li{color:#dfe3f2;margin-bottom:.5em}
.bvc-article a{border-bottom:1px solid rgba(221,190,128,.4)}
.bvc-article table{
  width:100%;table-layout:fixed;margin:1em 0 1.4em;
  border:1px solid var(--bvc-navy-line);border-radius:10px;overflow:hidden;
}
.bvc-article td{
  padding:.7em .9em;border-bottom:1px solid var(--bvc-navy-line);
  font-size:.94rem;color:#dfe3f2;overflow-wrap:anywhere;vertical-align:top;
}
.bvc-article tr:last-child td{border-bottom:none}
.bvc-article td:first-child{color:var(--bvc-gold-400);font-weight:600;width:38%}
@media (max-width:560px){
  .bvc-article table{font-size:.85rem}
  .bvc-article td{padding:.55em .6em}
}

.bvc-responsible{
  margin-top:18px;padding:16px 18px;border:1px solid var(--bvc-navy-line);
  border-radius:12px;background:var(--bvc-navy-800);font-size:.85rem;color:var(--bvc-muted);
}

/* ===== Footer ===== */
.bvc-footer{border-top:1px solid var(--bvc-navy-line);background:var(--bvc-navy-950);padding:44px 0 30px}
.bvc-footer-top{display:flex;flex-wrap:wrap;gap:36px;justify-content:space-between;margin-bottom:26px}
.bvc-footer-brand .bvc-wordmark{margin-bottom:12px;display:inline-block}
.bvc-footer-tag{color:var(--bvc-muted);font-size:.85rem;max-width:34ch;margin:0}
.bvc-footer-cols{display:flex;gap:48px;flex-wrap:wrap}
.bvc-footer-col-title{font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;color:var(--bvc-gold-400);margin:0 0 .9em}
.bvc-footer-col a{display:block;color:var(--bvc-muted);font-size:.9rem;margin-bottom:.6em}
.bvc-footer-col a:hover{color:var(--bvc-gold-400);text-decoration:none}
.bvc-footer-static{display:block;color:var(--bvc-muted);font-size:.9rem;margin-bottom:.6em}
.bvc-footer-legal{border-top:1px solid var(--bvc-navy-line);padding-top:20px;font-size:.78rem;color:var(--bvc-muted);line-height:1.8}
.bvc-footer-legal p{margin:0 0 .4em}
.bvc-badge18{
  display:inline-flex;align-items:center;justify-content:center;
  width:26px;height:26px;border:1px solid var(--bvc-gold-500);border-radius:6px;
  color:var(--bvc-gold-400);font-size:.72rem;font-weight:700;margin-right:8px;vertical-align:middle;
}

@media (max-width:760px){
  .bvc-hero-grid{grid-template-columns:1fr}
  .bvc-trust-row{grid-template-columns:1fr}
  .bvc-card-grid{grid-template-columns:1fr}
  .bvc-footer-top{flex-direction:column;gap:24px}
}
