/* LollyBet Casino DE - dl-gruppe-nord.de
   Eigenständiges, responsives Stylesheet (keine externen Abhängigkeiten) */

:root {
  --bg: #190a13;
  --bg-2: #2d0711;
  --surface: #271622;
  --surface-2: #32202e;
  --line: rgba(255, 255, 255, 0.10);
  --header: #160b13;
  --accent: #ff7a00;
  --accent-2: #ffc107;
  --green: #36c275;
  --text: #f4eef2;
  --muted: #c4b3bd;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --maxw: 1080px;
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255, 122, 0, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 55%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-2); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 11, 19, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 150px; height: auto; }
.brand-name { font-weight: 800; font-size: 1.05rem; letter-spacing: 0.3px; }
.header-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #ff9d3c 100%);
  color: #1a1020;
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(255, 122, 0, 0.5); }

/* Hero */
.hero {
  text-align: center;
  padding: 60px 0 30px;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.9rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
}
.hero h1 .hl { color: var(--accent-2); }
.hero .lead { color: var(--muted); font-size: 1.15rem; max-width: 760px; margin: 0 auto 26px; }

.bonus-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 26px;
  max-width: 760px;
  background: linear-gradient(135deg, #3a0d1c 0%, #5a1226 100%);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.bonus-banner .amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-2);
}
.rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 6px;
}
.stars { color: var(--accent-2); letter-spacing: 2px; }

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #ff9d3c 100%);
  color: #1a1020;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 28px rgba(255, 122, 0, 0.55); filter: brightness(1.05); }
.btn-wrap { text-align: center; margin: 28px 0; }

/* Main layout */
main { padding: 20px 0 40px; }

section.block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin: 22px 0;
  box-shadow: var(--shadow);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.25;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}
h3 {
  font-size: 1.2rem;
  color: var(--accent-2);
  margin: 22px 0 10px;
}
p { margin-bottom: 14px; color: #ece3e9; }
ul, ol { margin: 0 0 16px 22px; }
li { margin-bottom: 8px; }
strong { color: #fff; }

/* Tables */
.table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--line); margin: 18px 0; }
table { width: 100%; border-collapse: collapse; min-width: 420px; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--header); color: var(--accent-2); font-weight: 700; }
tr:nth-child(even) td { background: rgba(255, 255, 255, 0.03); }
td:first-child { font-weight: 600; }

/* Feature chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.chip {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.92rem;
  color: var(--text);
}
.chip b { color: var(--green); }

/* Slot grid */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin: 20px 0 6px;
}
.slot-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.slot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.slot-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.slot-card .name { padding: 10px 12px; font-size: 0.9rem; font-weight: 600; }

/* Review boxes */
.review-box {
  background: var(--surface-2);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 14px 0;
  font-style: italic;
  color: #f0e6ed;
}
.review-box .author { display: block; margin-top: 8px; font-style: normal; font-size: 0.85rem; color: var(--muted); }

/* FAQ */
.faq details {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin: 12px 0;
  padding: 4px 18px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
  list-style: none;
  color: var(--accent-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding-bottom: 14px; margin-bottom: 0; }

/* Disclaimer */
.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 18px;
}

/* Footer */
.site-footer {
  background: var(--header);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 30px 20px;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer p { color: var(--muted); margin-bottom: 6px; }
.age-badge {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  body { font-size: 15px; }
  section.block { padding: 22px 18px; }
  .brand img { width: 120px; }
  .brand-name { display: none; }
  .header-cta { padding: 9px 14px; font-size: 0.9rem; }
  .hero { padding: 40px 0 20px; }
}

@media (max-width: 480px) {
  .slot-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .bonus-banner .amount { font-size: 1.2rem; }
  .btn { width: 100%; padding: 14px 20px; }
}
