
:root {
  --bg-dark: #16112b;
  --bg-blue: #21346d;
  --violet: #7c3aed;
  --pink: #ec4899;
  --orange: #f97316;
  --yellow: #facc15;
  --green: #22c55e;
  --text: #ffffff;
  --muted: #d7d7e8;
  --card: rgba(255, 255, 255, 0.11);
  --card-border: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius: 26px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(236, 72, 153, 0.55), transparent 32%),
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.38), transparent 28%),
    linear-gradient(135deg, var(--bg-dark), var(--bg-blue));
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}

a,
p,
li,
span,
strong,
h1,
h2,
h3,
h4,
label,
input,
textarea,
select,
button {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.page { overflow: hidden; }

.notice-bar {
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow));
  color: #1d1029;
  font-weight: 900;
  text-align: center;
  padding: 10px 18px;
  font-size: 15px;
}

.header-nav {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 99998;
  pointer-events: none;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: min(540px, calc(100vw - 110px));
  padding: 10px 16px 10px 10px;
  border-radius: 22px;
  background: rgba(10, 8, 24, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  font-weight: 900;
  letter-spacing: 0.3px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--pink));
  display: grid;
  place-items: center;
  color: #1d1029;
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.35);
}

.brand span:last-child {
  line-height: 1.12;
}

.menu-toggle {
  pointer-events: auto;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(10, 8, 24, 0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  cursor: pointer;
  flex: 0 0 58px;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  display: block;
  position: absolute;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) { transform: translateY(-8px); }
.menu-toggle span:nth-child(2) { transform: translateY(0); }
.menu-toggle span:nth-child(3) { transform: translateY(8px); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

.nav-links {
  position: fixed;
  top: 90px;
  right: 16px;
  width: min(390px, calc(100vw - 32px));
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  padding: 16px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  background: rgba(10, 8, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 99997;
}

.nav-links.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22122a;
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  white-space: normal;
  max-width: 100%;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(249, 115, 22, 0.45);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: none;
}

.header-image {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(430px, 64vw, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 118px 22px 86px;
  background:
    linear-gradient(135deg, rgba(22, 17, 43, 0.82), rgba(33, 52, 109, 0.46)),
    var(--hero-image, url("bilder/header-spielhalle-thiendorf.jpg")) center center / cover no-repeat;
  overflow: hidden;
  box-shadow:
    inset 0 -120px 120px rgba(10, 8, 24, 0.52),
    0 34px 90px rgba(0, 0, 0, 0.42);
}

.header-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(250, 204, 21, 0.26), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(236, 72, 153, 0.22), transparent 28%);
  pointer-events: none;
}

.header-image-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  width: 100%;
}

.header-image-title {
  font-size: clamp(44px, 8.5vw, 104px);
  line-height: 0.95;
  letter-spacing: -2px;
  font-weight: 900;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.6);
  margin-bottom: 18px;
}

.header-image-title span { display: block; }

.header-image-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(18px, 2.2vw, 25px);
  color: #f4f4ff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 22px;
}

.hero,
.highlight,
.reviews-summary,
.two-col,
.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  gap: 28px;
}

.hero { padding-top: 72px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fef3c7;
  font-weight: 800;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.96;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 920px;
}

h3 {
  font-size: clamp(21px, 2.3vw, 26px);
  line-height: 1.16;
  margin-bottom: 10px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.two-line-title {
  display: grid;
  gap: 8px;
}

.two-line-title span { display: block; }

.lead,
.section-text {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 760px;
  margin-bottom: 26px;
}

.legal-mini,
.small-note {
  color: #cfcfe2;
  font-size: 14px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.card,
.hero-card,
.big-panel,
.reviews-panel {
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.hero-card,
.big-panel,
.reviews-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07));
  box-shadow: var(--shadow);
}

.hours-box {
  position: relative;
  background: rgba(10, 8, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  padding: clamp(22px, 3vw, 30px);
  height: 100%;
}

.hours-title {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hours-time {
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 16px;
  white-space: nowrap;
}

.hours-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.age-card {
  margin-top: 22px;
  padding: 24px 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.28), rgba(249, 115, 22, 0.24), rgba(236, 72, 153, 0.18));
  border: 2px solid rgba(250, 204, 21, 0.5);
  font-weight: 900;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.12;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  box-shadow: 0 20px 46px rgba(249, 115, 22, 0.28);
}

.age-card strong {
  display: block;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
  color: var(--yellow);
  margin-bottom: 10px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-label {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.card p,
.big-panel p,
.reviews-panel p {
  color: var(--muted);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-size: 24px;
  font-weight: 900;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-width: 0;
}

.check {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: var(--green);
  color: #102315;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.carousel,
.shop-carousel {
  position: relative;
  margin-top: 24px;
}

.carousel-track,
.shop-carousel-track,
.logo-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
  scrollbar-width: thin;
}

.carousel-card,
.logo-card {
  flex: 0 0 min(360px, 86vw);
  scroll-snap-align: start;
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  min-width: 0;
}

.logo-card {
  flex-basis: min(310px, 82vw);
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.logo-box {
  width: 100%;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  color: #20152d;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: inset 0 0 0 1px rgba(32,21,45,0.08);
}

.logo-box img {
  max-height: 58px;
  max-width: 82%;
  object-fit: contain;
}

.logo-card p {
  color: var(--muted);
  font-size: 15px;
}

.carousel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.carousel-small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22122a !important;
}

.carousel-small-button.secondary {
  background: rgba(32, 21, 45, 0.08);
  color: #20152d !important;
  border: 1px solid rgba(32, 21, 45, 0.12);
}

.carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.carousel-control {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

.review-big-stars {
  font-size: clamp(32px, 7vw, 58px);
  line-height: 1.05;
  color: var(--yellow);
  letter-spacing: clamp(1px, 0.8vw, 4px);
  text-shadow: 0 14px 38px rgba(250, 204, 21, 0.28);
  margin-bottom: 18px;
  white-space: nowrap;
}

.review-score {
  font-size: clamp(34px, 8vw, 46px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.review-source,
.reviews-note {
  color: var(--muted);
  font-size: 15px;
}

.review-write-box {
  margin-top: 24px;
  padding: clamp(18px, 4vw, 22px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.review-write-box .button { width: 100%; }

.review-card {
  flex: 0 0 min(420px, 86vw);
  scroll-snap-align: start;
  border-radius: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.review-card-stars {
  color: var(--yellow);
  font-size: 28px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}

.review-text {
  color: #f4f4ff;
  font-size: 17px;
  margin-bottom: 18px;
}

.review-author {
  font-weight: 900;
  color: #ffffff;
}

.review-date {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 260px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.24), rgba(236, 72, 153, 0.2)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.gallery-card.large {
  grid-column: span 2;
  min-height: 360px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.45s ease;
  z-index: 2;
}

.gallery-card:hover img { transform: scale(1.06); }

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.86);
  z-index: 1;
}

.gallery-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(10, 8, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-weight: 800;
  z-index: 3;
}

.shop-status {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--muted);
}

.shop-mini-card {
  flex: 0 0 190px;
  scroll-snap-align: start;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.shop-mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(250, 204, 21, 0.55);
}

.shop-mini-card a { display: block; height: 100%; }

.shop-mini-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(236, 72, 153, 0.16));
  overflow: hidden;
}

.shop-mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.shop-mini-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 14px;
  z-index: 1;
}

.shop-mini-content {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.shop-mini-content h3 {
  font-size: 15px;
  line-height: 1.25;
  margin: 0;
  min-height: 56px;
}

.shop-mini-price {
  color: var(--yellow);
  font-weight: 900;
  font-size: 15px;
}

.shop-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22122a;
  text-align: center;
}

.responsible,
.white-box {
  background: rgba(255, 255, 255, 0.95);
  color: #20152d;
  border-radius: 34px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.responsible h2,
.responsible h3,
.white-box h2,
.white-box h3 { color: #20152d; }

.responsible p,
.responsible li,
.white-box p,
.white-box li { color: #4b4657; }

.responsible ul,
.white-box ul {
  padding-left: 20px;
  margin-top: 14px;
}

.responsible li,
.white-box li { margin-bottom: 8px; }

.responsible .carousel-card {
  background: #ffffff;
  border-color: rgba(32, 21, 45, 0.1);
  box-shadow: 0 16px 36px rgba(32, 21, 45, 0.12);
}

.responsible .carousel-control {
  border-color: rgba(32, 21, 45, 0.12);
  background: rgba(32, 21, 45, 0.08);
  color: #20152d;
}

.contact-title span { display: block; }

.form-grid {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-weight: 900;
  color: #ffffff;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 13px 15px;
  background: rgba(10,8,24,0.55);
  color: #ffffff;
  font: inherit;
  outline: none;
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.consent-box {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.consent-box input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.consent-box label {
  color: var(--muted);
  font-size: 14px;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.floating-social {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8999;
  display: grid;
  gap: 10px;
}

.floating-social a {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(10, 8, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(14px);
}

.floating-social a:hover {
  transform: translateX(-4px) scale(1.04);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22122a;
  box-shadow: 0 18px 44px rgba(249, 115, 22, 0.38);
}

.floating-social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-social .route-social {
  width: auto;
  min-width: 52px;
  padding: 0 14px;
  grid-template-columns: auto auto;
  gap: 8px;
  color: #22122a;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-size: 14px;
  letter-spacing: 0.2px;
}

.floating-social .route-social span { white-space: nowrap; }

.privacy-popup {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 10000;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.privacy-popup.show { display: flex; }

.privacy-box {
  width: min(760px, 100%);
  padding: 22px;
  border-radius: 24px;
  background: rgba(10, 8, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.privacy-box h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #ffffff;
}

.privacy-box p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.privacy-actions-left,
.privacy-actions-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.privacy-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-button {
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22122a;
}

.privacy-button.outline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

footer {
  margin-top: 40px;
  background: rgba(10, 8, 24, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner a,
.footer-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero,
  .highlight,
  .reviews-summary,
  .two-col,
  .contact-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-nav {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .brand {
    max-width: calc(100vw - 98px);
    padding: 8px 12px 8px 8px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .menu-toggle {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    flex-basis: 52px;
  }

  .nav-links {
    top: 76px;
    right: 12px;
    width: min(340px, calc(100vw - 24px));
  }

  .floating-social {
    right: 12px;
    bottom: 14px;
    top: auto;
    transform: none;
    display: flex;
    align-items: center;
  }

  .floating-social a {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .floating-social .route-social {
    width: 46px;
    min-width: 46px;
    padding: 0;
    grid-template-columns: 1fr;
  }

  .floating-social .route-social span { display: none; }
}

@media (max-width: 560px) {
  .notice-bar { padding-top: 9px; padding-bottom: 9px; }

  .header-image {
    min-height: 470px;
    padding: 118px 18px 72px;
  }

  .header-image-title {
    font-size: clamp(44px, 14.5vw, 72px);
    line-height: 0.96;
    letter-spacing: -1px;
  }

  .hero { padding-top: 54px; }

  .hero-actions,
  .actions,
  .button { width: 100%; }

  .hours-row {
    flex-direction: column;
    gap: 4px;
  }

  .hours-time {
    font-size: 32px;
    white-space: nowrap;
  }

  .gallery-grid { grid-template-columns: 1fr; }

  .gallery-card.large {
    grid-column: span 1;
    min-height: 280px;
  }

  .gallery-card { min-height: 240px; }

  .info-item {
    display: grid;
    grid-template-columns: 28px 1fr;
  }

  .reviews-panel {
    padding: 20px;
  }

  .review-big-stars {
    font-size: clamp(27px, 8vw, 38px);
    letter-spacing: 1px;
  }

  .review-write-box {
    padding: 18px;
  }

  .privacy-actions,
  .privacy-actions-left,
  .privacy-actions-right,
  .privacy-button,
  .privacy-link {
    width: 100%;
  }

  .privacy-button,
  .privacy-link {
    justify-content: center;
    text-align: center;
  }
}


/* Eventseite und Formular Erweiterungen */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-width: 0;
  border-radius: 26px;
  padding: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.feature-card h3 {
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
}

.event-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.event-list-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.event-list-item strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

.event-list-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22122a;
  font-weight: 900;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: #ffffff;
  font-weight: 900;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 13px 15px;
  background: rgba(10,8,24,0.55);
  color: #ffffff;
  font: inherit;
  outline: none;
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.consent-box {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.consent-box input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.consent-box label {
  color: var(--muted);
  font-size: 14px;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.logo-card {
  flex: 0 0 min(310px, 82vw);
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.logo-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
}

.logo-box {
  width: 100%;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  color: #20152d;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: inset 0 0 0 1px rgba(32,21,45,0.08);
}

.logo-box img {
  max-height: 58px;
  max-width: 82%;
  object-fit: contain;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}


/* Update 4: Navigation, Cursor, Formulare, Mobile Feinschliff */
.notice-bar {
  display: none !important;
}

body {
  cursor: none;
}

a,
button,
input,
textarea,
select,
label {
  cursor: none;
}

.magic-cursor,
.magic-cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 2147483647;
  transform: translate3d(-50%, -50%, 0);
}

.magic-cursor {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(250, 204, 21, 0.92);
  border-radius: 999px;
  box-shadow:
    0 0 22px rgba(250, 204, 21, 0.5),
    0 0 44px rgba(236, 72, 153, 0.28);
  transition: width 0.16s ease, height 0.16s ease, border-color 0.16s ease;
  mix-blend-mode: screen;
}

.magic-cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  box-shadow: 0 0 16px rgba(236, 72, 153, 0.7);
}

.magic-cursor.is-hover {
  width: 52px;
  height: 52px;
  border-color: rgba(249, 115, 22, 0.95);
}

.nav-links {
  width: min(330px, calc(100vw - 32px));
}

.nav-links a {
  text-align: left;
}

.form-row select[multiple] {
  min-height: 158px;
  padding: 10px 15px;
}

.form-row select[multiple] option {
  padding: 8px;
}

.form-help {
  color: var(--muted);
  font-size: 13px;
  margin-top: -2px;
}

.review-big-stars {
  max-width: 100%;
  overflow: hidden;
  text-overflow: clip;
}

.reviews-panel,
.review-card,
.card,
.big-panel,
.hero-card,
.responsible,
.feature-card {
  max-width: 100%;
}

.automaten-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-mini {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.service-mini .card-icon {
  margin-bottom: 14px;
}

@media (pointer: coarse) {
  body,
  a,
  button,
  input,
  textarea,
  select,
  label {
    cursor: auto;
  }

  .magic-cursor,
  .magic-cursor-dot {
    display: none;
  }
}

@media (max-width: 900px) {
  .automaten-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .reviews-summary {
    gap: 18px;
  }

  .reviews-panel {
    padding: 18px;
  }

  .review-big-stars {
    font-size: clamp(24px, 7.2vw, 34px);
    letter-spacing: 0;
    white-space: nowrap;
  }

  .review-score {
    font-size: clamp(30px, 8vw, 38px);
  }

  .review-write-box {
    padding: 16px;
  }

  .review-card {
    flex-basis: min(330px, 86vw);
    padding: 20px;
  }

  .header-image {
    padding-top: 106px;
  }
}


/* Update 5: Tourismus und Eventlocation SEO Bereiche */
.tourism-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.tourism-card {
  border-radius: 28px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
  min-width: 0;
}

.tourism-card h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.12;
  margin-bottom: 12px;
}

.tourism-card p,
.tourism-card li {
  color: var(--muted);
}

.tourism-card ul {
  margin-top: 14px;
  padding-left: 20px;
}

.tourism-card li {
  margin-bottom: 8px;
}

.tourism-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tourism-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 900px) {
  .tourism-grid {
    grid-template-columns: 1fr;
  }
}


/* Update 6: Header Logo auf Desktop mittig und größer */
.header-nav {
  left: 0;
  right: 0;
  top: 18px;
}

.nav-inner {
  position: relative;
  justify-content: center;
}

.brand {
  max-width: min(680px, calc(100vw - 170px));
  padding: 14px 24px 14px 14px;
  border-radius: 28px;
  font-size: clamp(22px, 2.2vw, 34px);
  gap: 16px;
}

.brand-icon {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  border-radius: 20px;
  font-size: 30px;
}

.menu-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-links {
  top: 100px;
}

@media (max-width: 760px) {
  .header-nav {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .brand {
    max-width: calc(100vw - 98px);
    padding: 8px 12px 8px 8px;
    border-radius: 22px;
    font-size: 15px;
    gap: 12px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 14px;
    font-size: 22px;
  }

  .menu-toggle {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
  }

  .nav-links {
    top: 76px;
  }
}


/* Update 7: Radio-Auswahl und Gäste-Angebot */
.radio-group {
  display: grid;
  gap: 10px;
}

.radio-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.radio-option input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: #f97316;
}

.radio-option label {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.guest-offer {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.guest-offer-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
}

.guest-offer-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22122a;
  font-weight: 900;
}

.guest-offer-item strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

.guest-offer-item span {
  color: var(--muted);
}

@media (max-width: 560px) {
  .radio-option,
  .guest-offer-item {
    grid-template-columns: 24px 1fr;
  }

  .guest-offer-icon {
    width: 30px;
    height: 30px;
    border-radius: 11px;
  }
}


/* Update 8: Tourismus und Gäste als eigene Seite, Eventlocation wieder Business-Fokus */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guest-card {
  min-width: 0;
  border-radius: 26px;
  padding: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.guest-card h3 {
  font-size: clamp(21px, 2.3vw, 27px);
  line-height: 1.14;
  margin-bottom: 10px;
}

.guest-card p {
  color: var(--muted);
}

.route-card {
  border-radius: 30px;
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(135deg, rgba(250,204,21,0.22), rgba(249,115,22,0.18), rgba(236,72,153,0.16));
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: var(--shadow);
}

.route-card h2 {
  margin-bottom: 18px;
}

.route-card p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 780px;
}

.map-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.business-focus-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.business-focus-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
}

.business-focus-icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22122a;
  font-weight: 900;
}

.business-focus-item strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

.business-focus-item span {
  color: var(--muted);
}

@media (max-width: 1000px) {
  .guest-grid {
    grid-template-columns: 1fr;
  }
}


/* Update 9: Recht, Formulare, Galerie, Checkboxen */
.checkbox-group {
  display: grid;
  gap: 10px;
}

.checkbox-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.checkbox-option input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: #f97316;
}

.checkbox-option label {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.form-legal-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 2px;
}

.gallery-priority {
  padding-top: 34px;
}

.billard-highlight {
  position: relative;
}

.billard-highlight::after {
  content: "Billard";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22122a;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(249,115,22,0.32);
}

.legal-box {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.legal-box p {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 560px) {
  .checkbox-option {
    grid-template-columns: 24px 1fr;
    padding: 13px;
  }
}


/* Update 10: Eventlocation Formular repariert */
.multi-select-wrap {
  display: grid;
  gap: 8px;
}

.multi-select {
  width: 100%;
  min-height: 174px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 12px 15px;
  background: rgba(10,8,24,0.58);
  color: #ffffff;
  font: inherit;
  outline: none;
}

.multi-select option {
  padding: 9px 10px;
  border-radius: 8px;
  color: #20152d;
  background: #ffffff;
}

.multi-select:focus {
  border-color: rgba(250,204,21,0.75);
  box-shadow: 0 0 0 3px rgba(250,204,21,0.18);
}

.multi-select-help {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.event-form-card {
  overflow: hidden;
}

.event-form-card .form-row,
.event-form-card .consent-box {
  min-width: 0;
}


/* Update 11: Wartezeit, Fast Food, LKW Stellplätze und E-Laden */
.waiting-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.waiting-card {
  min-width: 0;
  border-radius: 26px;
  padding: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.waiting-card h3 {
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.14;
  margin-bottom: 10px;
}

.waiting-card p {
  color: var(--muted);
}

.waiting-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22122a;
  font-weight: 900;
  font-size: 20px;
}

.waiting-highlight {
  border-radius: 30px;
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(135deg, rgba(250,204,21,0.24), rgba(249,115,22,0.2), rgba(236,72,153,0.16));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: var(--shadow);
}

.waiting-highlight p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

@media (max-width: 1050px) {
  .waiting-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .waiting-grid {
    grid-template-columns: 1fr;
  }
}


/* Update 12: Gewerbegebiet und Wartezeit auf Thiendorfseite */
.thiendorf-waiting-section {
  padding-top: 38px;
}

.thiendorf-waiting-section .waiting-highlight {
  margin-bottom: 24px;
}

.nearby-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
}

.nearby-note strong {
  color: #ffffff;
}

@media (max-width: 560px) {
  .thiendorf-waiting-section {
    padding-top: 28px;
  }
}


/* Update 13: Raucherbereich, kostenloser Parkplatz, kein Alkoholausschank */
.location-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-benefit-card {
  min-width: 0;
  border-radius: 26px;
  padding: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.location-benefit-card h3 {
  font-size: clamp(21px, 2.3vw, 27px);
  line-height: 1.14;
  margin-bottom: 10px;
}

.location-benefit-card p {
  color: var(--muted);
}

.location-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22122a;
  font-weight: 900;
  font-size: 20px;
}

.alcohol-law-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.28);
  color: var(--muted);
}

.alcohol-law-note strong {
  color: #ffffff;
}

@media (max-width: 900px) {
  .location-benefits-grid {
    grid-template-columns: 1fr;
  }
}


/* Update 14: Nünchritz Raucherspielhalle, kostenlos parken, kein Alkohol */
.smoking-hall-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.smoking-hall-card {
  min-width: 0;
  border-radius: 26px;
  padding: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.smoking-hall-card h3 {
  font-size: clamp(21px, 2.3vw, 27px);
  line-height: 1.14;
  margin-bottom: 10px;
}

.smoking-hall-card p {
  color: var(--muted);
}

.smoking-hall-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #22122a;
  font-weight: 900;
  font-size: 19px;
}

.legal-smoking-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(250,204,21,0.12);
  border: 1px solid rgba(250,204,21,0.32);
  color: var(--muted);
}

.legal-smoking-note strong {
  color: #ffffff;
}

@media (max-width: 900px) {
  .smoking-hall-grid {
    grid-template-columns: 1fr;
  }
}


/* Update 17: Ausführlicher Einstieg Thiendorf */
.hero#zeiten > div:first-child {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero#zeiten .lead + .lead {
  margin-top: -8px;
}

@media (max-width: 900px) {
  .hero#zeiten > div:first-child {
    justify-content: flex-start;
  }

  .hero#zeiten .lead + .lead {
    margin-top: 0;
  }
}


/* Update 18: Route Button in Floating Social immer sichtbar */
.floating-social .route-social {
  width: auto !important;
  min-width: 118px !important;
  padding: 0 14px !important;
  grid-template-columns: auto auto !important;
  gap: 8px !important;
}

.floating-social .route-social span {
  display: inline !important;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .floating-social {
    left: 12px;
    right: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .floating-social .route-social {
    width: auto !important;
    min-width: 112px !important;
    padding: 0 14px !important;
    grid-template-columns: auto auto !important;
    order: -1;
  }

  .floating-social .route-social span {
    display: inline !important;
  }
}

@media (max-width: 420px) {
  .floating-social {
    gap: 8px;
  }

  .floating-social a {
    width: 44px;
    height: 44px;
  }

  .floating-social .route-social {
    height: 44px;
    min-width: 104px !important;
    font-size: 13px;
  }
}


/* Spielerschutz Premium Update */
.protection-premium-teaser {
  max-width: 1180px;
  margin: 36px auto;
  padding: 0 22px;
}

.protection-premium-teaser-inner {
  border-radius: 34px;
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 18%, rgba(250,204,21,0.36), transparent 34%),
    radial-gradient(circle at 92% 80%, rgba(34,197,94,0.25), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 24px;
  align-items: stretch;
}

.protection-premium-badge {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow, #facc15), var(--orange, #f97316));
  color: #22122a;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 14px;
}

.protection-premium-teaser h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: .98;
  margin-bottom: 12px;
}

.protection-premium-teaser p {
  color: var(--muted, #d8cfe1);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.protection-premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.protection-premium-card-grid {
  display: grid;
  gap: 12px;
}

.protection-premium-mini {
  border-radius: 22px;
  padding: 16px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.16);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.protection-premium-mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow, #facc15), var(--orange, #f97316));
  color: #22122a;
  font-weight: 900;
}

.protection-premium-mini strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

.protection-premium-mini span {
  color: var(--muted, #d8cfe1);
  font-size: 14px;
  line-height: 1.38;
}

.help-hero-box {
  border-radius: 34px;
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at top left, rgba(250,204,21,0.26), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 26px 72px rgba(0,0,0,0.32);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.help-card {
  min-width: 0;
  border-radius: 28px;
  padding: 24px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.help-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--yellow, #facc15), var(--orange, #f97316));
  color: #22122a;
  font-weight: 900;
}

.help-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.14;
  margin-bottom: 10px;
}

.help-card p, .help-card li {
  color: var(--muted, #d8cfe1);
}

.help-steps {
  display: grid;
  gap: 14px;
}

.help-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
}

.help-step-number {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow, #facc15), var(--orange, #f97316));
  color: #22122a;
  font-weight: 900;
}

.help-step strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
  font-size: 18px;
}

.help-step span {
  color: var(--muted, #d8cfe1);
  line-height: 1.45;
}

.help-emergency {
  border-radius: 32px;
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(135deg, rgba(250,204,21,0.28), rgba(249,115,22,0.22), rgba(34,197,94,0.18));
  border: 2px solid rgba(250,204,21,0.38);
  box-shadow: 0 24px 62px rgba(249,115,22,0.22);
}

.help-contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.help-contact {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
}

.help-contact strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 6px;
}

.help-contact span {
  display: block;
  color: var(--muted, #d8cfe1);
}

@media (max-width: 980px) {
  .protection-premium-teaser-inner {
    grid-template-columns: 1fr;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }
}


/* Spielerschutz Update 2: Beratungsstellen als Premium Container */
.help-premium-section {
  padding-top: 36px;
}

.help-premium-wrap {
  border-radius: 34px;
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 16%, rgba(250,204,21,0.34), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(34,197,94,0.24), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.17), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}

.help-premium-head {
  max-width: 860px;
  margin-bottom: 26px;
}

.help-premium-head h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  margin-bottom: 12px;
}

.help-premium-head p {
  color: #f7eefc;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.help-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.help-premium-card {
  min-width: 0;
  border-radius: 28px;
  padding: 22px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
  display: grid;
  gap: 14px;
}

.help-premium-top {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.help-premium-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow, #facc15), var(--orange, #f97316));
  color: #22122a;
  font-weight: 900;
  font-size: 20px;
}

.help-premium-card h3 {
  color: #ffffff;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.1;
  margin: 0 0 4px;
}

.help-premium-card p {
  color: var(--muted, #d8cfe1);
  margin: 0;
  line-height: 1.45;
}

.help-premium-contact {
  display: grid;
  gap: 8px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(10,8,24,0.34);
  border: 1px solid rgba(255,255,255,0.13);
}

.help-premium-contact strong {
  color: var(--yellow, #facc15);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.help-premium-contact a,
.help-premium-contact span {
  color: #ffffff;
  font-weight: 800;
  word-break: break-word;
}

.help-premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.help-premium-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(250,204,21,0.12);
  border: 1px solid rgba(250,204,21,0.25);
  color: #f7eefc;
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .help-premium-grid {
    grid-template-columns: 1fr;
  }

  .help-premium-top {
    grid-template-columns: 1fr;
  }
}


/* Update: Gläsernes Badge oberhalb der ersten Überschrift entfernt */
.intro-panel .two-line-title,
.hero .two-line-title {
  margin-top: 0;
}


/* Update: Spielerschutz auf Gästeseite tiefer platziert */
body.premium-layout .protection-premium-teaser {
  scroll-margin-top: 110px;
}


/* Update: Automatenaufstellung Premium Wichtig Container */
.important-premium {
  border-radius: 34px;
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 16%, rgba(250,204,21,0.34), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(249,115,22,0.22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}

.important-premium .section-label {
  margin-bottom: 14px;
}

.important-premium h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  margin-bottom: 14px;
}

.important-premium p {
  color: #f7eefc;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  max-width: 900px;
}

.important-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 24px;
}

.important-premium-card {
  min-width: 0;
  border-radius: 24px;
  padding: 18px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.16);
  display: grid;
  gap: 10px;
}

.important-premium-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow, #facc15), var(--orange, #f97316));
  color: #22122a;
  font-weight: 900;
}

.important-premium-card strong {
  color: #ffffff;
  font-size: 18px;
}

.important-premium-card span {
  color: var(--muted, #d8cfe1);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .important-premium-grid {
    grid-template-columns: 1fr;
  }
}


/* Kontaktformular final */
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-response-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--muted, #d8cfe1);
  font-size: 14px;
  line-height: 1.45;
}

.thankyou-wrap {
  max-width: 980px;
  margin: 120px auto 60px;
  padding: 0 22px;
}

.thankyou-card {
  border-radius: 34px;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 15% 10%, rgba(250,204,21,0.34), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(34,197,94,0.24), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}

.thankyou-card h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: .98;
  margin-bottom: 16px;
}

.thankyou-card p {
  color: var(--muted, #d8cfe1);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
  max-width: 780px;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}


/* Update: Kontaktformulare aufgeräumt */
.form-grid {
  gap: 16px;
}

.form-grid h3 {
  margin-bottom: 4px;
}

.form-intro-clean {
  color: var(--muted, #d8cfe1);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 4px;
}

.required-note-clean {
  color: var(--muted, #d8cfe1);
  font-size: 13px;
  line-height: 1.4;
  opacity: .9;
}

.form-row label .optional,
.optional {
  color: var(--muted, #d8cfe1);
  font-size: 13px;
  font-weight: 500;
}

.consent-box.clean-consent {
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.consent-box.clean-consent label {
  color: var(--muted, #d8cfe1);
  font-size: 14px;
  line-height: 1.45;
}

.form-response-note {
  margin-top: 0;
}

.form-grid .button[type="submit"] {
  margin-top: 4px;
}


/* Update: Formular Datenschutzlink und einheitliche Absende-Buttons */
.form-grid button.button,
.form-grid .button[type="submit"],
button.button[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.form-grid button.button[type="submit"] {
  color: #22122a;
}

.consent-box.clean-consent a,
.consent-box a {
  color: var(--yellow, #facc15);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-box.clean-consent a:hover,
.consent-box a:hover {
  color: #ffffff;
}


/* Datenschutz Premiumbox */
.privacy-premium-wrap {
  max-width: 1180px;
  margin: 48px auto;
  padding: 0 22px;
}

.privacy-premium {
  border-radius: 36px;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at 12% 10%, rgba(250,204,21,0.32), transparent 34%),
    radial-gradient(circle at 90% 84%, rgba(34,197,94,0.20), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.17), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 30px 90px rgba(0,0,0,0.36);
}

.privacy-premium-head {
  max-width: 920px;
  margin-bottom: 30px;
}

.privacy-premium-badge {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow, #facc15), var(--orange, #f97316));
  color: #22122a;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 14px;
}

.privacy-premium h1,
.privacy-premium h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: .98;
  margin-bottom: 14px;
}

.privacy-premium-head p {
  color: #f7eefc;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.55;
}

.privacy-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin: 28px 0 34px;
}

.privacy-quick-card {
  min-width: 0;
  border-radius: 24px;
  padding: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
}

.privacy-quick-card strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 5px;
}

.privacy-quick-card span {
  color: var(--muted, #d8cfe1);
  font-size: 14px;
  line-height: 1.38;
}

.privacy-section-grid {
  display: grid;
  gap: 18px;
}

.privacy-box {
  border-radius: 28px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.privacy-box h3 {
  color: #ffffff;
  font-size: clamp(23px, 2.8vw, 34px);
  line-height: 1.12;
  margin-bottom: 12px;
}

.privacy-box p,
.privacy-box li {
  color: var(--muted, #d8cfe1);
  font-size: 16px;
  line-height: 1.62;
}

.privacy-box ul {
  margin: 14px 0 0 20px;
  display: grid;
  gap: 7px;
}

.privacy-box a {
  color: var(--yellow, #facc15);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-highlight {
  background:
    radial-gradient(circle at top left, rgba(250,204,21,0.22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border-color: rgba(250,204,21,0.30);
}

.privacy-meta-note {
  margin-top: 28px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(250,204,21,0.12);
  border: 1px solid rgba(250,204,21,0.25);
  color: #f7eefc;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .privacy-quick-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 620px) {
  .privacy-quick-grid {
    grid-template-columns: 1fr;
  }
}


/* Impressum Premiumbox */
.imprint-premium-wrap {
  max-width: 1180px;
  margin: 48px auto;
  padding: 0 22px;
}

.imprint-premium {
  border-radius: 36px;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at 12% 10%, rgba(250,204,21,0.32), transparent 34%),
    radial-gradient(circle at 90% 84%, rgba(249,115,22,0.22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.17), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 30px 90px rgba(0,0,0,0.36);
}

.imprint-premium-head {
  max-width: 920px;
  margin-bottom: 30px;
}

.imprint-premium-badge {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow, #facc15), var(--orange, #f97316));
  color: #22122a;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 14px;
}

.imprint-premium h1,
.imprint-premium h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: .98;
  margin-bottom: 14px;
}

.imprint-premium-head p {
  color: #f7eefc;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.55;
}

.imprint-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.imprint-box {
  min-width: 0;
  border-radius: 28px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.imprint-box.full {
  grid-column: 1 / -1;
}

.imprint-box.highlight {
  background:
    radial-gradient(circle at top left, rgba(250,204,21,0.22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border-color: rgba(250,204,21,0.30);
}

.imprint-box h3 {
  color: #ffffff;
  font-size: clamp(23px, 2.8vw, 34px);
  line-height: 1.12;
  margin-bottom: 12px;
}

.imprint-box p,
.imprint-box li {
  color: var(--muted, #d8cfe1);
  font-size: 16px;
  line-height: 1.62;
}

.imprint-box ul {
  margin: 14px 0 0 20px;
  display: grid;
  gap: 7px;
}

.imprint-box a {
  color: var(--yellow, #facc15);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.imprint-key-value {
  display: grid;
  gap: 10px;
}

.imprint-kv-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.imprint-kv-row:last-child {
  border-bottom: 0;
}

.imprint-kv-row strong {
  color: var(--yellow, #facc15);
}

.imprint-kv-row span {
  color: #ffffff;
}

.imprint-note {
  margin-top: 28px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(250,204,21,0.12);
  border: 1px solid rgba(250,204,21,0.25);
  color: #f7eefc;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .imprint-grid {
    grid-template-columns: 1fr;
  }

  .imprint-kv-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* Impressum Update: gleiche Boxhoehen, Kontakt lesbar, Hinweise bereinigt */
.imprint-grid {
  align-items: stretch;
}

.imprint-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-wrap: anywhere;
  word-break: normal;
}

.imprint-box h3 {
  min-height: 2.25em;
}

.imprint-box.full h3 {
  min-height: 0;
}

.imprint-key-value {
  gap: 0;
}

.imprint-kv-row {
  grid-template-columns: minmax(105px, 150px) minmax(0, 1fr);
  align-items: start;
}

.imprint-kv-row span,
.imprint-kv-row a {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.imprint-contact-box {
  min-height: 100%;
}

.imprint-contact-box .imprint-kv-row {
  grid-template-columns: 95px minmax(0, 1fr);
}

@media (max-width: 860px) {
  .imprint-box h3 {
    min-height: 0;
  }

  .imprint-kv-row,
  .imprint-contact-box .imprint-kv-row {
    grid-template-columns: 1fr;
  }
}


/* Impressum Update: obere Boxen an restliche Boxen angleichen */
.imprint-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.imprint-box {
  width: 100%;
  box-sizing: border-box;
  padding: clamp(22px, 3vw, 32px);
}

.imprint-box.highlight {
  padding: clamp(22px, 3vw, 32px);
}

.imprint-box:nth-child(-n+4) {
  min-height: 100%;
}

.imprint-box:nth-child(-n+4) .imprint-key-value,
.imprint-box:nth-child(-n+4) p {
  margin-top: 0;
}

.imprint-box:nth-child(-n+4) h3 {
  margin-bottom: 12px;
}

.imprint-premium {
  box-sizing: border-box;
}

.imprint-premium .imprint-grid > .imprint-box {
  margin: 0;
}

@media (max-width: 860px) {
  .imprint-grid {
    grid-template-columns: 1fr;
  }
}


/* Update: Deutsche Überschriftenumbrüche */
h1, h2, h3,
.header-image-title,
.two-line-title,
.gradient-text,
.imprint-premium h1,
.imprint-premium h2,
.privacy-premium h1,
.privacy-premium h2,
.premium-responsible h2,
.help-premium-head h2,
.help-card h3,
.help-premium-card h3,
.imprint-box h3,
.privacy-box h3 {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  line-break: auto;
}

.header-image-title span,
.two-line-title span {
  display: block;
}

.section-label,
.badge,
.protection-premium-badge,
.imprint-premium-badge,
.privacy-premium-badge {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 560px) {
  h1, h2, h3,
  .header-image-title,
  .two-line-title {
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}


/* Update: Überschriften nach Wortgruppen umbrechen */
.heading-group {
  display: inline-block;
  white-space: nowrap;
}

.heading-break {
  display: block;
}

h1, h2, h3,
.header-image-title,
.two-line-title,
.imprint-box h3,
.privacy-box h3,
.help-premium-card h3,
.help-card h3 {
  hyphens: manual;
  -webkit-hyphens: manual;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

@media (max-width: 520px) {
  .heading-group {
    white-space: normal;
  }
}


/* Update: Spielerschutz Header nicht trennen */
.no-break-heading {
  white-space: nowrap;
  hyphens: none;
  -webkit-hyphens: none;
  word-break: keep-all;
  overflow-wrap: normal;
}


/* Update: Spielautomaten Header nicht trennen */
.no-break-heading {
  white-space: nowrap;
  hyphens: none;
  -webkit-hyphens: none;
  word-break: keep-all;
  overflow-wrap: normal;
}


/* Update: Header-Subtexte nach Satzgruppen umbrechen */
.header-image-subtitle {
  text-wrap: balance;
  hyphens: manual;
  -webkit-hyphens: manual;
}

.header-image-subtitle .sentence-break {
  display: block;
}

.header-image-subtitle .phrase-group {
  display: inline;
}

@media (max-width: 620px) {
  .header-image-subtitle .sentence-break {
    display: block;
  }
}


/* Datenschutz Update: Boxen links und rechts gleichmäßig */
.privacy-premium {
  box-sizing: border-box;
}

.privacy-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.privacy-section-grid > .privacy-box {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-wrap: anywhere;
}

.privacy-section-grid > .privacy-box h3 {
  min-height: 2.25em;
}

.privacy-section-grid > .privacy-box.privacy-wide h3 {
  min-height: 0;
}

.privacy-section-grid > .privacy-box p:last-child,
.privacy-section-grid > .privacy-box ul:last-child {
  margin-bottom: 0;
}

.privacy-section-grid > .privacy-box.privacy-wide,
.privacy-section-grid > .privacy-box.privacy-full {
  grid-column: 1 / -1;
}

.privacy-box a,
.privacy-box code {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.privacy-quick-grid {
  align-items: stretch;
}

.privacy-quick-card {
  height: 100%;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .privacy-section-grid {
    grid-template-columns: 1fr;
  }

  .privacy-section-grid > .privacy-box h3 {
    min-height: 0;
  }
}


/* Einheitliche Premiumbox-Breiten fuer Rechtseiten */
.imprint-grid,
.privacy-section-grid {
  max-width: 100%;
}

.imprint-grid > .imprint-box,
.privacy-section-grid > .privacy-box {
  min-width: 0;
}


/* Scroll-Animationen fuer Premium-Boxen und Container */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(.2,.8,.2,1),
    filter 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-left {
  transform: translateX(-34px) scale(0.985);
}

.reveal-right {
  transform: translateX(34px) scale(0.985);
}

.reveal-left.reveal-visible,
.reveal-right.reveal-visible {
  transform: translateX(0) scale(1);
}

.reveal-pop {
  transform: translateY(26px) scale(0.96);
}

.reveal-pop.reveal-visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-left,
  .reveal-right,
  .reveal-pop {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}


/* Google Bewertungen Premium Container */
.reviews-premium {
  max-width: 1180px;
  margin: 48px auto;
  padding: 0 22px;
}

.reviews-premium-inner {
  border-radius: 36px;
  padding: clamp(28px, 5vw, 48px);
  background:
    radial-gradient(circle at 12% 14%, rgba(250,204,21,0.34), transparent 34%),
    radial-gradient(circle at 88% 84%, rgba(249,115,22,0.22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.17), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 30px 90px rgba(0,0,0,0.36);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 24px;
  align-items: center;
}

.reviews-badge {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow, #facc15), var(--orange, #f97316));
  color: #22122a;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 14px;
}

.reviews-premium h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: .98;
  margin-bottom: 14px;
}

.reviews-premium p {
  color: var(--muted, #d8cfe1);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.reviews-stars {
  margin: 22px 0;
  color: var(--yellow, #facc15);
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: 4px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reviews-premium-card {
  border-radius: 28px;
  padding: 24px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}

.reviews-premium-card strong {
  display: block;
  color: #ffffff;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.12;
  margin-bottom: 10px;
}

.reviews-premium-card span {
  color: var(--muted, #d8cfe1);
  font-size: 16px;
  line-height: 1.5;
}

.reviews-note {
  margin-top: 16px;
  color: var(--muted, #d8cfe1);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .reviews-premium-inner {
    grid-template-columns: 1fr;
  }
}


/* Update: Google Bewertungen nur einmal und weiter oben */
.reviews-premium {
  margin-top: 34px;
  margin-bottom: 44px;
}


/* Virtueller Rundgang Premium Container */
.panorama-premium {
  max-width: 1180px;
  margin: 44px auto 54px;
  padding: 0 22px;
}

.panorama-premium-inner {
  border-radius: 36px;
  padding: clamp(26px, 4.5vw, 46px);
  background:
    radial-gradient(circle at 16% 18%, rgba(250,204,21,0.20), transparent 34%),
    radial-gradient(circle at 84% 86%, rgba(236,72,153,0.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 28px 82px rgba(0,0,0,0.34);
}

.panorama-head {
  margin-bottom: 24px;
}

.panorama-frame {
  overflow: hidden;
  min-height: 500px;
  border-radius: 28px;
  background: rgba(8, 7, 18, 0.72);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(250,204,21,0.08), 0 22px 58px rgba(0,0,0,0.28);
}

.panorama-frame > div {
  width: 100%;
  min-height: 500px;
}

.panorama-frame iframe,
.panorama-frame canvas {
  display: block;
  width: 100% !important;
  min-height: 500px;
  border: 0;
}

@media (max-width: 700px) {
  .panorama-premium {
    margin: 34px auto 42px;
    padding: 0 16px;
  }

  .panorama-premium-inner {
    border-radius: 28px;
    padding: 22px;
  }

  .panorama-frame,
  .panorama-frame > div,
  .panorama-frame iframe,
  .panorama-frame canvas {
    min-height: 420px;
  }
}
