/* ==========================================================================
   Vibes.Entertainment — Stylesheet
   Farben und Formen stammen aus den Druckdaten in Grafik/ (Illustrator/InDesign).
   Die Seite bildet die Veredelung der Visitenkarte nach: mattschwarzer Karton,
   König in Glanzlack, Schrift und Akzente in Goldfolie.
   ========================================================================== */

/* --- Schrift: selbst gehostet (kein Google-CDN → DSGVO-konform) ---------- */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/jost-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/jost-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/jost-latin-600-normal.woff2') format('woff2');
}

/* --- Design-Tokens ------------------------------------------------------- */
:root {
  /* Die Karte wird auf mattschwarzem Karton gedruckt, der König in Glanzlack
     veredelt, Schrift und Akzente in Goldfolie. Diese drei Ebenen bildet die
     Palette nach: matte Grundfläche, minimal abgesetzte Flächen, Gold obenauf. */
  --bg:          #0b0b0a;   /* Mattschwarz, Grundfläche */
  --bg-alt:      #121211;   /* abgesetzter Abschnitt */
  --surface:     #171715;   /* Karte */
  --surface-2:   #232320;   /* Glanzlack-Ton der Figur */
  --line:        #2c2c27;
  --gold:        #9a7538;   /* dunkles, sattes Altgold – Hauptton */
  --gold-deep:   #725423;   /* sehr dunkel, fast bronze */
  --gold-soft:   #b8924a;   /* der alte Hauptton wird zum hellen Akzent */
  --text:        #e9e7e1;
  --muted:       #9d9a92;

  --font: 'Jost', 'Century Gothic', 'Futura', system-ui, -apple-system, sans-serif;
  --wrap: 1120px;
  --radius: 4px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Kartenfarben als Gold-Glyphen (aus assets/suits.svg) */
  --suit-pik: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239a7538' d='M12 2.2c-.5 1.6-2.4 3.5-4.3 5.2C5.4 9.6 3.6 11.4 3.6 13.7c0 2.3 1.7 3.9 3.7 3.9 1.2 0 2.2-.5 2.9-1.4-.2 2.2-1.1 4-2.5 5.2h8.6c-1.4-1.2-2.3-3-2.5-5.2.7.9 1.7 1.4 2.9 1.4 2 0 3.7-1.6 3.7-3.9 0-2.3-1.8-4.1-4.1-6.3C14.4 5.7 12.5 3.8 12 2.2z'/%3E%3C/svg%3E");
  --suit-herz: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239a7538' d='M12 21.4c-.6-.6-8.6-6.6-8.6-11.9 0-3 2.2-5.1 4.9-5.1 1.7 0 3.1.9 3.7 2.3.6-1.4 2-2.3 3.7-2.3 2.7 0 4.9 2.1 4.9 5.1 0 5.3-8 11.3-8.6 11.9z'/%3E%3C/svg%3E");
  --suit-karo: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239a7538' d='M12 2.2c1.8 3.8 4 6.9 6.6 9.8-2.6 2.9-4.8 6-6.6 9.8-1.8-3.8-4-6.9-6.6-9.8 2.6-2.9 4.8-6 6.6-9.8z'/%3E%3C/svg%3E");
  --suit-kreuz: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%239a7538' d='M12 2.2a3.9 3.9 0 0 0-3.1 6.3 3.9 3.9 0 1 0-1.2 7.4c1.2 0 2.3-.6 3-1.5-.2 2.2-1.1 4-2.4 5.2h7.4c-1.3-1.2-2.2-3-2.4-5.2.7.9 1.8 1.5 3 1.5a3.9 3.9 0 1 0-1.2-7.4A3.9 3.9 0 0 0 12 2.2z'/%3E%3C/svg%3E");
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--gold-soft); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--gold); }

:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; border-radius: 2px; }

/* --- Typografie ---------------------------------------------------------- */
h1, h2, h3 { font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.1rem, 1.4rem + 3.1vw, 3.9rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 1.25rem + 1.5vw, 2.4rem); letter-spacing: -.015em; }
h3 { font-size: 1.2rem; font-weight: 500; letter-spacing: -.005em; }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.lead { font-size: clamp(1.08rem, 1rem + .45vw, 1.32rem); color: #cfccc4; }
.muted { color: var(--muted); }

/* --- Layout -------------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--gold); color: #14140f;
  padding: .6rem 1rem; z-index: 100; font-weight: 500;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* --- Kopfzeile ----------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 10, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 74px;
}

.brand { display: block; color: var(--gold); line-height: 0; }
.brand svg, .brand img { width: clamp(190px, 24vw, 250px); height: auto; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--text); padding: .45rem .7rem; border-radius: var(--radius);
  font: inherit; font-size: .9rem; cursor: pointer;
}

.site-nav ul {
  display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.1rem);
  list-style: none; padding: 0;
}
.site-nav a {
  color: var(--text); text-decoration: none;
  font-size: .95rem; letter-spacing: .04em;
  padding-block: .35rem; position: relative;
}
.site-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--gold-soft); }

.header-cta {
  display: none;
  align-items: center; gap: .5rem;
  color: var(--gold-soft); text-decoration: none;
  font-size: .88rem; font-weight: 500; letter-spacing: .03em;
  padding: .45rem .9rem; border: 1px solid var(--gold-deep);
  border-radius: var(--radius); white-space: nowrap;
  transition: border-color .22s var(--ease), background .22s var(--ease);
}
.header-cta:hover { border-color: var(--gold); background: rgba(176,138,42,.1); color: var(--gold); }
.header-cta svg { width: 14px; height: 14px; flex: 0 0 auto; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.6rem; border-radius: var(--radius);
  font: inherit; font-size: .98rem; font-weight: 500; letter-spacing: .03em;
  text-decoration: none; cursor: pointer;
  border: 1px solid var(--gold);
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.btn-primary { background: var(--gold); color: #17170f; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: #17170f; }
.btn-ghost { background: transparent; color: var(--gold-soft); }
.btn-ghost:hover { background: rgba(176, 138, 42, .12); color: var(--gold-soft); }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(4.5rem, 11vw, 9rem);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 80% 50%, rgba(184,146,74,.06), transparent 60%),
    linear-gradient(180deg, #131312 0%, var(--bg) 100%);
}
/* Koenigsfigur aus Grafik/elemente/koenig_veredelung.ai.
    Neu als sauberes SVG mit Gold-Verlauf, wie Goldfolie auf mattem Karton. */
.hero-art {
  position: absolute; right: 2%; top: 48%; translate: 0 -50%;
  height: 115%; width: auto; max-width: none;
  opacity: .5; pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(184,146,74,.05));
  animation: art-glow 5s ease-in-out infinite;
}
@keyframes art-glow {
  0%, 100% {
    opacity: .5;
    filter: drop-shadow(0 0 10px rgba(184,146,74,.08)) drop-shadow(0 0 3px rgba(184,146,74,.04));
  }
  50% {
    opacity: .95;
    filter: drop-shadow(0 0 60px rgba(184,146,74,.5)) drop-shadow(0 0 20px rgba(184,146,74,.22)) drop-shadow(0 0 6px rgba(184,146,74,.1));
  }
}
.hero .wrap { position: relative; }
.hero-copy { max-width: 42ch; }
.hero h1 { margin-block: 1rem .9rem; }
.hero h1 .accent { color: var(--gold); }

.hero-sm { padding-block: clamp(3.5rem, 7vw, 6rem); }

.hero-scroll {
  display: flex; justify-content: center; margin-top: 2.2rem;
}
.hero-scroll-icon {
  width: 32px; height: 32px; opacity: .45;
  animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50% { transform: translateY(6px); opacity: .7; }
}
@media (max-width: 820px) {
  .hero-art { height: 115%; right: -15%; opacity: .5; filter: drop-shadow(0 0 10px rgba(184,146,74,.06)); }
}

/* --- Karten-Raster ------------------------------------------------------- */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition: border-color .28s var(--ease), transform .28s var(--ease);
}
.card:hover { border-color: rgba(176, 138, 42, .55); transform: translateY(-2px); }
.card h3 { margin-bottom: .55rem; color: var(--gold-soft); }
.card p { color: var(--muted); font-size: .97rem; }
.card p + .checklist { margin-top: .3rem; }
.card > p:first-of-type { margin-bottom: 1.1rem; }

/* Schrittnummer mit vorangestellter Kartenfarbe */
.card .num {
  font-size: .78rem; letter-spacing: .2em; color: var(--gold-deep);
  display: flex; align-items: center; gap: .55rem; margin-bottom: .9rem;
}
.card .num::before {
  content: ''; width: 15px; height: 15px; flex: 0 0 auto;
  background-image: var(--suit-pik);
  background-repeat: no-repeat; background-size: contain; background-position: center;
}
.grid > .card:nth-child(4n + 2) .num::before { background-image: var(--suit-herz); }
.grid > .card:nth-child(4n + 3) .num::before { background-image: var(--suit-karo); }
.grid > .card:nth-child(4n + 4) .num::before { background-image: var(--suit-kreuz); }

.section-head { max-width: 58ch; margin-bottom: 2.6rem; }
.section-head h2 { margin-block: .7rem .8rem; }

/* --- Merkmalliste -------------------------------------------------------- */
/* Aufzaehlungszeichen sind die vier Kartenfarben, die sich abwechseln. */
.checklist { list-style: none; padding: 0; display: grid; gap: .8rem; }
.checklist li { position: relative; padding-left: 1.9rem; color: #cfccc4; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: .38em;
  width: 14px; height: 14px;
  background-image: var(--suit-karo);
  background-repeat: no-repeat; background-size: contain; background-position: center;
  opacity: .9;
}
.checklist li:nth-child(4n + 1)::before { background-image: var(--suit-pik); }
.checklist li:nth-child(4n + 2)::before { background-image: var(--suit-herz); }
.checklist li:nth-child(4n + 3)::before { background-image: var(--suit-karo); }
.checklist li:nth-child(4n + 4)::before { background-image: var(--suit-kreuz); }

/* --- Ornament: schmale Goldlinie mit vier Kartenfarben in der Mitte ------- */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: .85rem; padding-block: .4rem;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1 1 0; max-width: 190px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line));
}
.ornament::after { background: linear-gradient(90deg, var(--line), transparent); }
.ornament span {
  width: 13px; height: 13px; flex: 0 0 auto;
  background-repeat: no-repeat; background-size: contain; background-position: center;
  opacity: .75;
}
.ornament .s-pik   { background-image: var(--suit-pik); }
.ornament .s-herz  { background-image: var(--suit-herz); }
.ornament .s-karo  { background-image: var(--suit-karo); }
.ornament .s-kreuz { background-image: var(--suit-kreuz); }

/* --- Split-Bereich ------------------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1.05fr .95fr; } }
.split .muted { margin-top: 1rem; }

/* --- CTA-Band ------------------------------------------------------------ */
.cta-band {
  background: linear-gradient(120deg, #1c1710 0%, var(--surface) 62%);
  border-block: 1px solid rgba(176, 138, 42, .3);
  text-align: center;
}
.cta-band .btn-row { justify-content: center; }
.cta-band .ornament { margin-bottom: 1.6rem; }
.cta-band .lead { margin-top: .9rem; }

/* --- Kontakt ------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.15fr; } }

.contact-list { list-style: none; padding: 0; display: grid; gap: 1.5rem; }
.contact-list dt, .contact-list .label {
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .2rem;
}
.contact-list a { color: var(--text); text-decoration: none; font-size: 1.1rem; }
.contact-list a:hover { color: var(--gold-soft); }
.contact-dd { font-size: 1rem; }

/* --- Formular ------------------------------------------------------------ */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .85rem; letter-spacing: .06em; color: var(--muted); }
.field .req { color: var(--gold); }
.form-grid-2 { gap: 1.1rem; }
.form .req-note { font-size: .82rem; }

input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  font: inherit; color: var(--text);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .75rem .9rem;
  width: 100%;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold); background: #0d0d0c; outline: none;
}
textarea { resize: vertical; min-height: 150px; }
::placeholder { color: #78766e; }

/* Honeypot – für Menschen unsichtbar, für Bots verlockend */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.consent input { margin-top: .3rem; accent-color: var(--gold); flex: 0 0 auto; }

.form-status { font-size: .95rem; padding: .85rem 1rem; border-radius: var(--radius); display: none; }
.form-status[data-state="ok"]   { display: block; background: rgba(176,138,42,.13); border: 1px solid var(--gold); color: var(--gold-soft); }
.form-status[data-state="err"]  { display: block; background: rgba(190,70,60,.12); border: 1px solid #a8574c; color: #e0a49c; }
.form-status[data-state="busy"] { display: block; background: var(--surface); border: 1px solid var(--line); color: var(--muted); }

/* --- Fließtextseiten (Impressum, Datenschutz) ---------------------------- */
.legal-h1 { font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.7rem); margin-block: .8rem 1.6rem; }
.legal-notice { font-size: .9rem; border-left: 2px solid var(--gold); padding-left: 1rem; }
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.45rem; margin-top: 2.6rem; margin-bottom: .7rem; color: var(--gold-soft); }
.prose h3 { margin-top: 1.7rem; margin-bottom: .4rem; }
.prose p, .prose ul { margin-bottom: 1rem; color: #cbc8c1; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .35rem; }

/* Platzhalter, die vor dem Livegang gefüllt werden müssen */
.todo {
  background: rgba(176, 138, 42, .16);
  border-bottom: 1px dashed var(--gold);
  color: var(--gold-soft);
  padding: 0 .28em; border-radius: 2px;
  font-size: .95em; white-space: nowrap;
}

/* --- Fußzeile ------------------------------------------------------------ */
.site-footer {
  margin-top: auto;
  background: #080808;
  border-top: 1px solid var(--line);
  padding-block: 2.8rem 2rem;
  font-size: .92rem;
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .brand svg { width: 210px; }
.brand-gold { color: var(--gold); }
.footer-blurb { margin-top: 1rem; font-size: .9rem; max-width: 34ch; }
.site-footer h4 {
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: .8rem;
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .45rem; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer .ornament { margin-top: 2.4rem; }
.footer-bottom {
  margin-top: 1.4rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  color: #78766e; font-size: .85rem;
}
.footer-bottom-compact { margin-top: 0; border-top: none; padding-top: 0; }

/* --- Social Proof --------------------------------------------------------- */
.social-proof { background: var(--bg-alt); border-block: 1px solid var(--line); }
.social-proof .wrap { text-align: center; max-width: 58ch; }
.social-proof blockquote {
  margin: 0; padding: 0; border: none;
}
.social-proof blockquote p {
  font-size: clamp(1.15rem, 1rem + .8vw, 1.45rem);
  font-style: italic; color: var(--text);
  line-height: 1.5;
}
.social-proof blockquote p::before { content: '\201E'; }
.social-proof blockquote p::after { content: '\201C'; }
.social-proof .attribution {
  margin-top: 1rem;
  font-size: .9rem; color: var(--muted);
}
.social-proof .attribution strong { color: var(--gold-soft); font-weight: 500; }

/* --- Mobile Navigation --------------------------------------------------- */
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; inset-inline: 0; top: 100%;
    background: var(--bg-alt); border-bottom: 1px solid var(--line);
    display: none;
  }
  .site-nav[data-open="true"] { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1.25rem 1.25rem; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav li:last-child { border-bottom: none; }
  .site-nav a { display: block; padding: .95rem .25rem; }
  .site-nav a::after { display: none; }
}

/* --- Slot-Bot: Mini-Slot-Maschine unten rechts ---------------------------- */
.slot-bot {
  position: fixed; bottom: 1.5rem; right: 2.25rem; z-index: 40;
  background: linear-gradient(175deg, #1a1a17 0%, var(--surface) 30%, #11110e 100%);
  border: 1px solid var(--gold-deep);
  border-radius: 6px;
  padding: 0;
  width: 168px;
  cursor: pointer;
  opacity: 0; transform: translateY(1rem) scale(.95);
  transition: opacity .45s var(--ease), transform .45s var(--ease),
              box-shadow .3s var(--ease), border-color .3s var(--ease);
  pointer-events: none;
  user-select: none;
  box-shadow:
    0 4px 20px rgba(0,0,0,.4),
    0 0 0 3px rgba(114,84,35,.15),
    inset 0 1px 0 rgba(255,255,255,.02);
}
.slot-bot:hover { border-color: var(--gold); }
.slot-bot--visible {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* --- Top trim — goldene Zierleiste ---------------------------------------- */
.slot-bot-trim {
  height: 6px;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 40%, var(--gold-deep) 100%);
  position: relative;
  border-radius: 6px 6px 0 0;
}
.slot-bot-trim::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: .6;
}

/* --- Viewing window — Messingrahmen mit versenkten Walzen ------------------ */
.slot-bot-window {
  position: relative;
  margin: .6rem .7rem .45rem;
  padding: .45rem;
  background: #0a0a08;
  border: 2px solid #3a3526;
  border-radius: 3px;
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,.6),
    0 0 0 1px rgba(114,84,35,.2);
}
.slot-bot-window::before {
  content: '';
  position: absolute; inset: 2px;
  border: 1px solid rgba(184,146,74,.08);
  border-radius: 1px;
  pointer-events: none; z-index: 2;
}

.slot-bot-reels {
  display: flex; justify-content: center; gap: .25rem;
  position: relative; z-index: 1;
}
.slot-bot-reel-well {
  display: flex; align-items: center; justify-content: center;
  width: 1.9rem; height: 2.1rem;
  background: #0c0c0a;
  border: 1px solid #1e1d18;
  border-radius: 2px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,.5);
  overflow: hidden;
}
.slot-bot-reel {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-size: 1.2rem; line-height: 1;
  color: var(--gold-soft);
  text-shadow: 0 0 6px rgba(184,146,74,.2);
  transition: color .2s, text-shadow .2s;
}
.slot-bot-reel.spinning {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(184,146,74,.35);
}
.slot-bot-reel.stop { animation: reel-land .35s var(--ease) both; }
@keyframes reel-land {
  0%   { transform: translateY(-.5rem); filter: brightness(1.8); }
  50%  { transform: translateY(.08rem); filter: brightness(.9); }
  75%  { transform: translateY(-.15rem); filter: brightness(1.15); }
  100% { transform: translateY(0); filter: brightness(1); }
}

/* Glass overlay on window */
.slot-bot-glass {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(255,255,255,.025) 0%,
    transparent 40%,
    rgba(0,0,0,.1) 100%
  );
  border-radius: inherit;
}

/* --- Info panel below window ---------------------------------------------- */
.slot-bot-panel {
  padding: 0 .7rem .6rem;
  text-align: center;
}

.slot-bot-brand {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .1rem .5rem;
  margin-bottom: .35rem;
  color: #5a4a2a;
  font-size: .5rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(184,146,74,.08);
  border-radius: 2px;
  background: rgba(0,0,0,.2);
}

.slot-bot-winline {
  height: 1px; margin: .12rem 0 .22rem;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
  opacity: .2;
  transition: opacity .35s, box-shadow .35s;
}
.slot-bot-winline--active {
  opacity: 1;
  box-shadow: 0 0 10px rgba(184,146,74,.3);
}

.slot-bot-text {
  font-size: .6rem;
  letter-spacing: .05em;
  color: var(--gold-deep);
  margin: 0;
  white-space: nowrap;
  transition: opacity .3s, color .4s var(--ease);
}
.slot-bot-text--hit {
  color: var(--gold-soft);
  font-weight: 500;
}

.slot-bot-credits {
  display: flex; justify-content: center; align-items: baseline;
  gap: .25rem; margin-bottom: .12rem;
}
.slot-bot-credits-label {
  font-size: .45rem; color: #5a4a2a;
  letter-spacing: .12em; text-transform: uppercase;
}
.slot-bot-credits-val {
  font-size: .72rem; color: var(--gold-soft);
  font-weight: 600; font-variant-numeric: tabular-nums;
  text-shadow: 0 0 4px rgba(184,146,74,.15);
  transition: color .3s;
}
.slot-bot-credits-val--hit {
  color: var(--gold);
  animation: credits-pop .4s var(--ease);
}
@keyframes credits-pop {
  40% { transform: scale(1.3); filter: brightness(1.5); }
}

/* --- Lever — massiver Hebel mit Krone ------------------------------------- */
.slot-bot-lever {
  position: absolute; right: -6px; top: 54%;
  width: 14px; height: 46px; z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: translate(20px, -50%);
  transition: transform .55s cubic-bezier(.22,1,.36,1), opacity .4s;
}
.slot-bot--visible .slot-bot-lever {
  opacity: 1;
  transform: translateY(-50%);
}

.slot-bot-lever-mount {
  position: absolute; bottom: -2px; left: 50%; translate: -50% 0;
  width: 15px; height: 7px;
  background: linear-gradient(180deg, #3a3526, #1e1c15);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,.4);
}

.slot-bot-lever-inner {
  position: absolute; bottom: 4px; left: 50%; translate: -50% 0;
  width: 100%; height: calc(100% - 4px);
  transform-origin: bottom center;
  transform: rotate(30deg);
  transition: transform .15s var(--ease);
}
.slot-bot-lever-arm {
  position: absolute; bottom: 0; left: 50%; translate: -50% 0;
  width: 4px; height: 72%;
  background: linear-gradient(to top,
    var(--gold-deep) 0%,
    var(--gold) 20%,
    var(--gold-soft) 60%,
    #d4b86a 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(184,146,74,.15);
}

.slot-bot-lever-knob {
  position: absolute; top: 0; left: 50%; translate: -50% 0;
  width: 15px; height: 15px;
  background: radial-gradient(circle at 38% 35%, #d4b86a, var(--gold-soft) 30%, var(--gold) 60%, var(--gold-deep));
  border-radius: 50%;
  box-shadow:
    0 2px 6px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.2),
    0 0 8px rgba(184,146,74,.12);
}

.slot-bot-lever-crown-tip {
  position: absolute; top: -4px; left: 50%; translate: -50% 0;
  width: 7px; height: 6px;
  background: linear-gradient(180deg, var(--gold-soft) 20%, var(--gold) 80%);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  box-shadow: 0 0 3px rgba(184,146,74,.2);
}

.slot-bot-lever--pull .slot-bot-lever-inner {
  transform: rotate(152deg);
}
.slot-bot-lever--release .slot-bot-lever-inner {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

/* --- Shine sweep — goldener Lichtbalken über der Front -------------------- */
.slot-bot::after {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(184,146,74,.03) 42%,
    rgba(184,146,74,.12) 46%,
    rgba(184,146,74,.03) 50%,
    transparent 60%
  );
  background-size: 300% 100%;
  opacity: 0; pointer-events: none; z-index: 5;
  transition: opacity .6s;
}
.slot-bot--visible::after {
  opacity: 1;
  animation: shine-sweep 5.5s ease-in-out infinite;
}
@keyframes shine-sweep {
  0%   { background-position: 300% 0; }
  35%  { background-position: -100% 0; }
  100% { background-position: -100% 0; }
}

/* --- Leerlauf-Glow — Reels atmen im Fenster ------------------------------- */
.slot-bot--visible .slot-bot-reel-well {
  animation: well-breathe 3.5s ease-in-out infinite;
}
@keyframes well-breathe {
  0%, 100% { border-color: #1e1d18; box-shadow: inset 0 2px 5px rgba(0,0,0,.5); }
  50%      { border-color: rgba(184,146,74,.15); box-shadow: inset 0 2px 5px rgba(0,0,0,.5), 0 0 8px rgba(184,146,74,.04); }
}

/* --- Staggered entry ------------------------------------------------------ */
.slot-bot--enter .slot-bot-trim   { animation: trim-drop .45s var(--ease) both; }
.slot-bot--enter .slot-bot-window { animation: frame-reveal .35s .2s var(--ease) both; }
.slot-bot--enter .slot-bot-panel  { animation: fade-up .35s .3s var(--ease) both; }
@keyframes trim-drop {
  from { transform: translateY(-6px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes frame-reveal {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Winline idle pulse --------------------------------------------------- */
.slot-bot-winline--pulse {
  animation: wl-pulse .8s ease-in-out;
}
@keyframes wl-pulse {
  0%, 100% { opacity: .2; box-shadow: none; }
  50%      { opacity: .55; box-shadow: 0 0 8px rgba(184,146,74,.12); }
}

/* --- Spark particle variant ----------------------------------------------- */
.slot-particle--spark {
  width: 4px; height: 4px;
  background: #d4b86a;
  box-shadow: 0 0 8px rgba(212,184,106,.8);
  border-radius: 2px;
}

/* --- Gewinn-Glow ---------------------------------------------------------- */
.slot-bot--glow {
  box-shadow:
    0 0 30px rgba(184,146,74,.18),
    0 8px 32px rgba(0,0,0,.5),
    0 0 0 3px rgba(184,146,74,.12),
    inset 0 0 16px rgba(184,146,74,.03) !important;
}
.slot-bot--flash {
  box-shadow:
    0 0 60px rgba(184,146,74,.35),
    0 10px 40px rgba(0,0,0,.55),
    0 0 0 3px rgba(184,146,74,.18),
    inset 0 0 24px rgba(184,146,74,.06) !important;
  border-color: var(--gold-soft) !important;
}

/* --- Partikel-Burst beim Gewinn ------------------------------------------- */
@keyframes part-burst {
  0%   { opacity: 1; transform: translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(var(--px),var(--py)) scale(0); }
}
.slot-particle {
  position: fixed; z-index: 41; pointer-events: none;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(184,146,74,.7);
  animation: part-burst .8s ease-out forwards;
}
.slot-particle--s {
  width: 3px; height: 3px;
  background: var(--gold-soft);
  box-shadow: 0 0 3px rgba(184,146,74,.4);
}

/* --- Hit-Text-Animation --------------------------------------------------- */
.slot-bot-text--hit {
  animation: text-glam .5s var(--ease);
}
@keyframes text-glam {
  0%   { letter-spacing: .05em; filter: brightness(1); }
  50%  { letter-spacing: .14em; filter: brightness(1.6); }
  100% { letter-spacing: .05em; filter: brightness(1); }
}

/* --- Mobile --- */
@media (max-width: 560px) {
  .slot-bot { width: 140px; bottom: .9rem; right: 1.6rem; border-radius: 5px; }
  .slot-bot-trim { height: 4px; }
  .slot-bot-window { margin: .5rem .6rem .35rem; padding: .35rem; }
  .slot-bot-reel-well { width: 1.5rem; height: 1.8rem; }
  .slot-bot-reel { font-size: 1rem; }
  .slot-bot-panel { padding: 0 .6rem .5rem; }
  .slot-bot-brand { font-size: .45rem; padding: .08rem .4rem; }
  .slot-bot-text { font-size: .55rem; }
  .slot-bot-credits-val { font-size: .65rem; }
  .slot-bot-credits-label { font-size: .42rem; }
  .slot-bot-lever { right: -4px; top: 52%; width: 12px; height: 36px; }
  .slot-bot-lever-knob { width: 13px; height: 13px; }
  .slot-bot-lever-crown-tip { width: 6px; height: 5px; top: -3px; }
  .slot-bot-lever-mount { width: 13px; height: 6px; }
}

/* --- Reduced motion ------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .hero-art { animation: none; }
  .slot-bot-reel.stop { animation: none; }
  .slot-bot--flash { box-shadow: 0 0 16px rgba(142,107,48,.12), 0 4px 20px rgba(0,0,0,.4) !important; }
  .slot-bot--visible::after { animation: none; opacity: .4; }
  .slot-bot--visible .slot-bot-reel-well { animation: none; }
  .slot-bot-text--hit { animation: none; }
  .slot-bot--enter .slot-bot-trim { animation: none; opacity: 1; }
  .slot-bot--enter .slot-bot-window { animation: none; opacity: 1; }
  .slot-bot--enter .slot-bot-panel { animation: none; opacity: 1; }
  .slot-bot-winline--pulse { animation: none; }
}
