/* ============================================
   CrownPlay Casino DE – Standort 2
   Theme: gl-theme.css | Prefix: gl-
   Font: DM Sans | Palette: Obsidian/Amber/Emerald
   ============================================ */

:root {
  --gl-bg: #090a0c;
  --gl-bg-raised: #111318;
  --gl-bg-surface: #181b22;
  --gl-bg-hover: #1f2330;
  --gl-bg-nav: rgba(9,10,12,0.92);

  --gl-amber: #d4a843;
  --gl-amber-dim: #b08e34;
  --gl-amber-bright: #edc25e;
  --gl-amber-glass: rgba(212,168,67,0.12);

  --gl-emerald: #34d399;
  --gl-emerald-deep: #2ab782;
  --gl-emerald-glass: rgba(52,211,153,0.12);

  --gl-txt: #ddd8d0;
  --gl-txt-soft: #948f88;
  --gl-txt-faint: #5e5a54;
  --gl-txt-white: #fff;

  --gl-line: #252830;
  --gl-line-light: #32363f;

  --gl-r-sm: 8px;
  --gl-r: 12px;
  --gl-r-lg: 18px;
  --gl-r-xl: 28px;

  --gl-font: 'DM Sans', system-ui, sans-serif;
  --gl-ease: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  --gl-max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--gl-font);
  background: var(--gl-bg);
  color: var(--gl-txt);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gl-amber); text-decoration: none; transition: color var(--gl-ease); }
a:hover { color: var(--gl-amber-bright); }
ul { list-style: none; }

.gl-wrap { max-width: var(--gl-max); margin: 0 auto; padding: 0 24px; }

/* ==== HEADER ==== */
.gl-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--gl-bg-nav);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gl-line);
  height: 64px;
}
.gl-header__inner {
  max-width: var(--gl-max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.gl-header__brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 1.25rem; color: var(--gl-txt-white); letter-spacing: 2px;
}
.gl-header__brand:hover { color: var(--gl-amber); }
.gl-header__icon { font-size: 1.1rem; color: var(--gl-amber); }

.gl-header__links {
  display: flex; align-items: center; gap: 6px;
}
.gl-header__links a {
  color: var(--gl-txt-soft); font-size: 0.88rem; font-weight: 500;
  padding: 7px 14px; border-radius: var(--gl-r-sm); transition: all var(--gl-ease);
}
.gl-header__links a:hover { color: var(--gl-txt-white); background: rgba(255,255,255,0.04); }

.gl-header__actions { display: flex; gap: 10px; }

.gl-header__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.gl-header__toggle i {
  display: block; width: 22px; height: 2px; background: var(--gl-txt); border-radius: 2px;
  transition: all var(--gl-ease);
}
.gl-header__toggle.is-active i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gl-header__toggle.is-active i:nth-child(2) { opacity: 0; }
.gl-header__toggle.is-active i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==== BUTTONS ==== */
.gl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 24px; border-radius: var(--gl-r); font-family: var(--gl-font);
  font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: all var(--gl-ease);
  border: none; text-decoration: none; white-space: nowrap;
}
.gl-btn--accent {
  background: var(--gl-emerald); color: #090a0c;
}
.gl-btn--accent:hover {
  background: var(--gl-emerald-deep); color: #090a0c;
  transform: translateY(-2px); box-shadow: 0 8px 24px var(--gl-emerald-glass);
}
.gl-btn--outline {
  background: transparent; color: var(--gl-txt); border: 1px solid var(--gl-line-light);
}
.gl-btn--outline:hover { border-color: var(--gl-amber); color: var(--gl-amber); }
.gl-btn--gold {
  background: linear-gradient(135deg, var(--gl-amber), var(--gl-amber-dim));
  color: #090a0c;
}
.gl-btn--gold:hover { background: linear-gradient(135deg, var(--gl-amber-bright), var(--gl-amber)); color: #090a0c; }
.gl-btn--lg { padding: 15px 36px; font-size: 1rem; border-radius: var(--gl-r-lg); }

/* ==== HERO (Banner) ==== */
.gl-banner {
  position: relative; min-height: 620px;
  display: flex; align-items: center; padding: 110px 0 80px; overflow: hidden;
}
.gl-banner__bg {
  position: absolute; inset: 0; z-index: 0;
}
.gl-banner__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.gl-banner__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(9,10,12,0.4), rgba(9,10,12,0.97));
}
.gl-banner__content {
  position: relative; z-index: 1;
  max-width: var(--gl-max); margin: 0 auto; padding: 0 24px; text-align: center;
}
.gl-banner__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; background: var(--gl-amber-glass);
  border: 1px solid rgba(212,168,67,0.25); border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: var(--gl-amber); margin-bottom: 22px;
}
.gl-banner__h1 {
  font-size: clamp(1.9rem, 5vw, 3.4rem); font-weight: 900;
  color: var(--gl-txt-white); line-height: 1.12; margin-bottom: 18px;
}
.gl-banner__h1 em { font-style: normal; color: var(--gl-amber); }
.gl-banner__desc {
  font-size: 1.02rem; color: var(--gl-txt-soft);
  max-width: 700px; margin: 0 auto 30px; line-height: 1.72;
}
.gl-banner__btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* Kennzahlen-Leiste */
.gl-metrics {
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
  background: var(--gl-bg-raised); border: 1px solid var(--gl-line);
  border-radius: var(--gl-r-lg); padding: 26px 36px;
  max-width: 860px; margin: 0 auto;
}
.gl-metrics__cell { text-align: center; }
.gl-metrics__num { font-size: 1.55rem; font-weight: 800; color: var(--gl-emerald); }
.gl-metrics__lbl { font-size: 0.75rem; color: var(--gl-txt-faint); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.6px; }

/* ==== VERTRAUENSLEISTE ==== */
.gl-trust-bar {
  background: var(--gl-bg-raised); border-top: 1px solid var(--gl-line); border-bottom: 1px solid var(--gl-line);
  padding: 16px 0;
}
.gl-trust-bar__inner {
  max-width: var(--gl-max); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
}
.gl-trust-bar__item { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--gl-txt-soft); font-weight: 500; }

/* ==== SEKTIONEN ==== */
.gl-section { padding: 80px 0; }
.gl-section--tinted { background: var(--gl-bg-raised); }
.gl-section__head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.gl-section__chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; background: var(--gl-amber-glass); border: 1px solid rgba(212,168,67,0.18);
  border-radius: 100px; font-size: 0.78rem; font-weight: 600; color: var(--gl-amber); margin-bottom: 14px;
}
.gl-section__h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem); font-weight: 800;
  color: var(--gl-txt-white); margin-bottom: 14px; line-height: 1.2;
}
.gl-section__lead { font-size: 0.92rem; color: var(--gl-txt-soft); line-height: 1.7; }

/* ==== KACHELN (Features) ==== */
.gl-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gl-tile {
  background: var(--gl-bg-surface); border: 1px solid var(--gl-line);
  border-radius: var(--gl-r-lg); padding: 30px 26px; transition: all var(--gl-ease);
}
.gl-tile:hover { border-color: var(--gl-amber-dim); background: var(--gl-bg-hover); transform: translateY(-4px); }
.gl-tile__icon { font-size: 1.9rem; margin-bottom: 14px; }
.gl-tile__h3 { font-size: 1.05rem; font-weight: 700; color: var(--gl-txt-white); margin-bottom: 8px; }
.gl-tile__p { font-size: 0.86rem; color: var(--gl-txt-soft); line-height: 1.65; }

/* ==== SPIELKARTEN ==== */
.gl-games-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 18px; }
.gl-game-card {
  border-radius: var(--gl-r); overflow: hidden; background: var(--gl-bg-surface);
  border: 1px solid var(--gl-line); transition: all var(--gl-ease);
}
.gl-game-card:hover { transform: translateY(-4px); border-color: var(--gl-amber-dim); }
.gl-game-card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gl-game-card__body { padding: 12px 14px; }
.gl-game-card__name { font-size: 0.9rem; font-weight: 600; color: var(--gl-txt-white); }
.gl-game-card__sub { font-size: 0.76rem; color: var(--gl-txt-faint); margin-top: 3px; }
.gl-game-card__cta {
  display: inline-block; margin-top: 8px; padding: 5px 14px;
  background: var(--gl-emerald); color: #090a0c; font-size: 0.78rem;
  font-weight: 600; border-radius: var(--gl-r-sm); transition: all var(--gl-ease);
}
.gl-game-card__cta:hover { background: var(--gl-emerald-deep); color: #090a0c; }

/* ==== WILLKOMMENSBONUS ==== */
.gl-welcome-box {
  background: linear-gradient(145deg, var(--gl-bg-surface), rgba(212,168,67,0.06));
  border: 1px solid rgba(212,168,67,0.28); border-radius: var(--gl-r-xl);
  padding: 44px 36px; text-align: center; max-width: 680px; margin: 0 auto;
}
.gl-welcome-box__chip {
  display: inline-block; padding: 5px 16px; background: var(--gl-amber); color: #090a0c;
  font-size: 0.76rem; font-weight: 700; border-radius: 100px; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 14px;
}
.gl-welcome-box__heading { font-size: 1.2rem; font-weight: 700; color: var(--gl-txt-white); margin-bottom: 8px; }
.gl-welcome-box__sum { font-size: 2.3rem; font-weight: 900; color: var(--gl-amber); margin-bottom: 18px; }
.gl-welcome-box__rows { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; font-size: 0.88rem; color: var(--gl-txt-soft); }

/* ==== BONUS-MINIS ==== */
.gl-bonus-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.gl-bonus-mini {
  background: var(--gl-bg-surface); border: 1px solid var(--gl-line);
  border-radius: var(--gl-r-lg); padding: 26px 22px; text-align: center; transition: all var(--gl-ease);
}
.gl-bonus-mini:hover { border-color: var(--gl-emerald-deep); transform: translateY(-3px); }
.gl-bonus-mini__icon { font-size: 1.8rem; margin-bottom: 12px; }
.gl-bonus-mini__h4 { font-size: 1rem; font-weight: 700; color: var(--gl-txt-white); margin-bottom: 7px; }
.gl-bonus-mini__p { font-size: 0.84rem; color: var(--gl-txt-soft); line-height: 1.6; }

/* ==== ANBIETER-TAGS ==== */
.gl-studios { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.gl-studio-tag {
  padding: 9px 20px; background: var(--gl-bg-surface); border: 1px solid var(--gl-line);
  border-radius: var(--gl-r); font-size: 0.84rem; font-weight: 600; color: var(--gl-txt-soft);
  transition: all var(--gl-ease);
}
.gl-studio-tag:hover { border-color: var(--gl-amber); color: var(--gl-amber); }

/* ==== REDAKTION ==== */
.gl-article { max-width: 840px; margin: 0 auto; padding: 0 24px; }
.gl-article__h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: var(--gl-txt-white); margin-bottom: 22px; line-height: 1.25; }
.gl-article__h3 { font-size: 1.25rem; font-weight: 700; color: var(--gl-amber); margin: 36px 0 14px; }
.gl-article p { font-size: 0.94rem; color: var(--gl-txt-soft); line-height: 1.76; margin-bottom: 16px; }
.gl-article strong { color: var(--gl-txt); font-weight: 600; }

/* ==== INFOBOX ==== */
.gl-infobox {
  background: var(--gl-bg-surface); border: 1px solid var(--gl-line);
  border-radius: var(--gl-r-lg); padding: 30px; margin: 28px 0;
}
.gl-infobox--gold { border-color: rgba(212,168,67,0.28); background: linear-gradient(145deg, var(--gl-bg-surface), rgba(212,168,67,0.04)); }
.gl-infobox__h { font-size: 1.1rem; font-weight: 700; color: var(--gl-txt-white); margin-bottom: 14px; }

/* ==== FAQ ==== */
.gl-faq { max-width: 780px; margin: 0 auto; }
.gl-faq__row {
  border: 1px solid var(--gl-line); border-radius: var(--gl-r);
  margin-bottom: 10px; overflow: hidden; background: var(--gl-bg-surface);
}
.gl-faq__trigger {
  padding: 16px 22px; font-size: 0.94rem; font-weight: 600; color: var(--gl-txt-white);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.gl-faq__trigger::after { content: '+'; font-size: 1.3rem; color: var(--gl-amber); font-weight: 300; transition: transform var(--gl-ease); }
.gl-faq__row.is-open .gl-faq__trigger::after { content: '−'; }
.gl-faq__body {
  padding: 0 22px; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.86rem; color: var(--gl-txt-soft); line-height: 1.7;
}
.gl-faq__row.is-open .gl-faq__body { max-height: 500px; padding: 0 22px 18px; }

/* ==== VIP-KARTEN ==== */
.gl-vip-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }
.gl-vip-card {
  background: var(--gl-bg-surface); border: 1px solid var(--gl-line);
  border-radius: var(--gl-r-lg); padding: 26px 22px; text-align: center;
}
.gl-vip-card__icon { font-size: 2rem; margin-bottom: 10px; }
.gl-vip-card__rank { font-size: 1rem; font-weight: 700; color: var(--gl-amber); margin-bottom: 8px; }
.gl-vip-card__perks { font-size: 0.84rem; color: var(--gl-txt-soft); line-height: 1.6; }

/* ==== BEZAHL-KARTEN ==== */
.gl-pay-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.gl-pay-item {
  background: var(--gl-bg-surface); border: 1px solid var(--gl-line);
  border-radius: var(--gl-r-lg); padding: 26px 22px;
}
.gl-pay-item h4 { font-size: 1rem; font-weight: 700; color: var(--gl-txt-white); margin-bottom: 10px; }
.gl-pay-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.gl-pay-chip {
  padding: 3px 10px; background: var(--gl-bg-hover); border: 1px solid var(--gl-line);
  border-radius: var(--gl-r-sm); font-size: 0.76rem; font-weight: 600; color: var(--gl-txt-soft);
}
.gl-pay-note { font-size: 0.78rem; color: var(--gl-txt-faint); }

/* ==== TABELLE ==== */
.gl-tbl-wrap { overflow-x: auto; margin: 22px 0; }
.gl-tbl { width: 100%; border-collapse: collapse; }
.gl-tbl th, .gl-tbl td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--gl-line); font-size: 0.86rem; }
.gl-tbl th { background: var(--gl-bg-hover); color: var(--gl-txt-white); font-weight: 600; white-space: nowrap; }
.gl-tbl td { color: var(--gl-txt-soft); }

/* ==== SCHRITTE ==== */
.gl-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gl-step {
  background: var(--gl-bg-surface); border: 1px solid var(--gl-line);
  border-radius: var(--gl-r-lg); padding: 30px 22px; text-align: center; position: relative;
}
.gl-step__nr { font-size: 2.4rem; font-weight: 900; color: rgba(212,168,67,0.12); position: absolute; top: 14px; right: 18px; }
.gl-step__icon { font-size: 1.8rem; margin-bottom: 12px; }
.gl-step__h { font-size: 1rem; font-weight: 700; color: var(--gl-txt-white); margin-bottom: 8px; }
.gl-step__p { font-size: 0.84rem; color: var(--gl-txt-soft); line-height: 1.6; }

/* ==== SEITEN-HERO (Unterseiten) ==== */
.gl-page-top {
  padding: 110px 0 56px; text-align: center;
  background: var(--gl-bg-raised); border-bottom: 1px solid var(--gl-line);
}
.gl-page-top__h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; color: var(--gl-txt-white); margin-bottom: 12px; }
.gl-page-top__sub { font-size: 0.98rem; color: var(--gl-txt-soft); max-width: 600px; margin: 0 auto; }

/* Brotkrümel */
.gl-crumbs { padding: 12px 0; font-size: 0.8rem; color: var(--gl-txt-faint); }
.gl-crumbs a { color: var(--gl-txt-soft); }
.gl-crumbs a:hover { color: var(--gl-amber); }
.gl-crumbs span { margin: 0 6px; }

/* ==== CTA-ABSCHLUSS ==== */
.gl-endcta {
  background: linear-gradient(145deg, var(--gl-bg-surface), rgba(52,211,153,0.05));
  border: 1px solid rgba(52,211,153,0.18); border-radius: var(--gl-r-xl);
  padding: 44px 36px; text-align: center; margin: 44px 0;
}
.gl-endcta h3 { font-size: 1.4rem; font-weight: 800; color: var(--gl-txt-white); margin-bottom: 10px; }
.gl-endcta p { font-size: 0.92rem; color: var(--gl-txt-soft); margin-bottom: 22px; max-width: 580px; margin-left: auto; margin-right: auto; }
.gl-endcta__small { font-size: 0.78rem; color: var(--gl-txt-faint); margin-top: 14px; }

.gl-centered { text-align: center; margin-top: 36px; }

/* ==== FOOTER ==== */
.gl-footer {
  background: var(--gl-bg-raised); border-top: 1px solid var(--gl-line); padding: 56px 0 28px;
}
.gl-footer__inner { max-width: var(--gl-max); margin: 0 auto; padding: 0 24px; }
.gl-footer__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; margin-bottom: 36px; }
.gl-footer__block h4 { font-size: 0.88rem; font-weight: 700; color: var(--gl-txt-white); margin-bottom: 14px; }
.gl-footer__block li { margin-bottom: 7px; }
.gl-footer__block a { font-size: 0.82rem; color: var(--gl-txt-faint); transition: color var(--gl-ease); }
.gl-footer__block a:hover { color: var(--gl-amber); }
.gl-footer__seals { display: flex; justify-content: center; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.gl-footer__seal {
  padding: 7px 18px; background: var(--gl-bg-surface); border: 1px solid var(--gl-line);
  border-radius: var(--gl-r); font-size: 0.76rem; font-weight: 700; color: var(--gl-txt-faint); letter-spacing: 1px;
}
.gl-footer__copy { text-align: center; font-size: 0.76rem; color: var(--gl-txt-faint); line-height: 1.6; border-top: 1px solid var(--gl-line); padding-top: 22px; }

/* ==== RESPONSIVE ==== */
@media(max-width:1024px){
  .gl-tiles { grid-template-columns: repeat(2,1fr); }
  .gl-footer__grid { grid-template-columns: repeat(3,1fr); }
  .gl-steps { grid-template-columns: repeat(3,1fr); }
}
@media(max-width:768px){
  .gl-header__links {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--gl-bg); flex-direction: column; align-items: stretch;
    padding: 20px; gap: 4px; transform: translateX(-100%);
    transition: transform 0.3s ease; z-index: 899;
  }
  .gl-header__links.is-visible { transform: translateX(0); }
  .gl-header__links a { font-size: 1rem; padding: 12px 16px; }
  .gl-header__actions { display: none; }
  .gl-header__toggle { display: flex; }

  .gl-tiles { grid-template-columns: 1fr; }
  .gl-steps { grid-template-columns: 1fr; }
  .gl-metrics { flex-direction: column; gap: 16px; padding: 22px; }
  .gl-footer__grid { grid-template-columns: repeat(2,1fr); }
  .gl-vip-row { grid-template-columns: 1fr; }
  .gl-banner { min-height: 480px; padding: 96px 0 56px; }
  .gl-section { padding: 48px 0; }
  .gl-welcome-box { padding: 30px 22px; }
  .gl-welcome-box__sum { font-size: 1.8rem; }
}
@media(max-width:480px){
  .gl-footer__grid { grid-template-columns: 1fr; }
  .gl-banner__btns { flex-direction: column; align-items: center; }
  .gl-pay-row { grid-template-columns: 1fr; }
}
