/* ============================================
   COSMOS ARCADE – Subpage Styles
   Shared by games/, standorte/, events/
   ============================================ */

/* Hero Banner */
.sub-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #1c0e1c 40%, #2a1530 60%, #0a0a0f 100%);
}

.sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 30% 60%, rgba(141, 59, 141, 0.2), transparent),
    radial-gradient(ellipse 400px 250px at 70% 30%, rgba(232, 67, 147, 0.1), transparent);
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.sub-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

.sub-hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.sub-hero-text {
  flex: 1;
}

.sub-hero-img {
  flex-shrink: 0;
  width: 340px;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(141, 59, 141, 0.08);
  border: 1px solid rgba(141, 59, 141, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(141, 59, 141, 0.12);
  animation: imgFloat 4s ease-in-out infinite;
}

@keyframes imgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.sub-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.sub-breadcrumb a {
  color: var(--cosmos-light);
  text-decoration: none;
  transition: 0.2s;
}

.sub-breadcrumb a:hover {
  color: #fff;
}

.sub-breadcrumb span {
  color: var(--text-secondary);
}

.sub-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: skewX(-6deg);
  color: white;
  background: var(--cosmos);
  margin-bottom: 16px;
}

.sub-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sub-title .accent {
  background: linear-gradient(135deg, var(--cosmos-lighter), #e84393);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

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

/* Nav */
.sub-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(141, 59, 141, 0.1);
}

.sub-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub-nav-logo { height: 34px; }

.sub-nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.sub-nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.2s;
}

.sub-nav-links a:hover {
  color: #fff;
}

/* Content sections */
.sub-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.sub-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid rgba(141, 59, 141, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: 0.3s;
}

.info-card:hover {
  border-color: rgba(141, 59, 141, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}
.status-badge.open { background: rgba(58,207,114,0.15); color: #3acf72; }
.status-badge.closed { background: rgba(232,67,147,0.15); color: #e84393; }

/* ===== INVITATION CTA on /event/kindergeburtstag ===== */
.invite-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background:
    linear-gradient(135deg, rgba(141,59,141,0.28) 0%, rgba(232,67,147,0.18) 50%, rgba(255,193,7,0.12) 100%),
    radial-gradient(circle at 80% 50%, rgba(255,193,7,0.18), transparent 60%);
  border: 1px solid rgba(255,193,7,0.35);
  border-radius: 20px;
  color: inherit;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
  box-shadow: 0 20px 50px rgba(141,59,141,0.18);
}
.invite-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.08), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
}
.invite-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(255,193,7,0.6);
  box-shadow: 0 28px 60px rgba(232,67,147,0.25);
}
.invite-cta:hover::after { opacity: 1; }
.invite-cta-icon {
  font-size: 3.4rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  animation: invWiggle 3.5s ease-in-out infinite;
}
@keyframes invWiggle {
  0%, 92%, 100% { transform: rotate(0deg); }
  94% { transform: rotate(-12deg); }
  96% { transform: rotate(10deg); }
  98% { transform: rotate(-6deg); }
}
.invite-cta-text { flex: 1; }
.invite-cta-text h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.invite-cta-text p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}
.invite-cta-arrow {
  flex-shrink: 0;
  font-weight: 800;
  color: #ffd54f;
  padding: 12px 22px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,193,7,0.4);
  border-radius: 999px;
  font-size: 0.95rem;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .invite-cta { flex-direction: column; text-align: center; padding: 24px; }
  .invite-cta-arrow { width: 100%; text-align: center; }
}

/* ===== INVITATION CARD GENERATOR ===== */
.invite-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .invite-wrap { grid-template-columns: 1fr; }
}
.invite-templates h2,
.invite-editor h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.invite-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}
.invite-thumb {
  padding: 0;
  background: none;
  border: 2px solid rgba(141,59,141,0.2);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.15s;
}
.invite-thumb:hover { border-color: rgba(181,109,181,0.6); transform: scale(1.02); }
.invite-thumb.active {
  border-color: #B56DB5;
  box-shadow: 0 0 0 3px rgba(181,109,181,0.25);
}
.invite-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1054 / 1492;
  object-fit: cover;
}
.invite-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(26,21,32,0.6);
  border: 1px solid rgba(141,59,141,0.15);
  border-radius: 16px;
  padding: 24px;
}
.invite-form .form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.invite-form select,
.invite-form input[type=text],
.invite-form input[type=range] {
  width: 100%;
  padding: 12px 14px;
  background: rgba(10,10,15,0.5);
  border: 1px solid rgba(141,59,141,0.2);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}
.invite-form input[type=text]:focus { outline: none; border-color: #B56DB5; }
.invite-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.invite-advanced {
  border-top: 1px solid rgba(141,59,141,0.1);
  padding-top: 12px;
}
.invite-advanced summary {
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  user-select: none;
}
.invite-advanced summary:hover { color: #D494D4; }
.invite-advanced .form-row { margin-top: 12px; }
.rng-val { float: right; font-variant-numeric: tabular-nums; color: #D494D4; }

.invite-preview-wrap {
  background: #0a0a0f;
  border-radius: 12px;
  padding: 8px;
  border: 1px solid rgba(141,59,141,0.15);
}
.invite-preview-wrap canvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.invite-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.invite-hint {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 4px;
}

/* ===== PLAYCARD HERO ===== */
.pc-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}
.pc-hero-bg-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(141,59,141,0.32), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(232,67,147,0.2), transparent 60%);
  pointer-events: none;
}
.pc-hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .pc-hero-content { grid-template-columns: 1fr; gap: 24px; }
  /* Text bleibt OBEN auf Mobile, Karte rückt unter Buttons — sonst frisst die
     Karte den ganzen ersten Viewport ohne dass Heading oder CTA sichtbar sind */
  .pc-hero-card-wrap { order: 1; }
  .pc-hero-card { width: 220px; transform: rotate(-3deg); border-radius: 16px }
}
@media (max-width: 600px) {
  .pc-hero { padding: 100px 0 48px; }
  .pc-hero-card { width: 180px; }
  .pc-hero-actions { gap: 10px; margin-bottom: 24px }
  .pc-hero-stats { gap: 10px }
  .pc-hero-stats > div { padding: 12px 8px; border-radius: 12px }
  .pc-hero-stats strong { font-size: 1.25rem }
  .pc-hero-stats span { font-size: 0.7rem }
  .pc-hero-desc { font-size: 1rem }
}
@media (max-width: 380px) {
  .pc-hero-card { width: 150px }
  .pc-hero-stats strong { font-size: 1.05rem }
}
.pc-hero-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  margin: 14px 0 14px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}
.pc-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 540px;
}
.pc-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px;
}
.pc-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 540px;
}
.pc-hero-stats > div {
  padding: 16px 14px;
  background: rgba(26,21,32,0.5);
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 14px;
  text-align: center;
}
.pc-hero-stats strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #B56DB5;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.pc-hero-stats span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.3;
  display: block;
}
.pc-hero-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.pc-hero-card {
  max-width: 100%;
  border-radius: 22px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(141,59,141,0.4),
    0 0 0 1px rgba(141,59,141,0.2);
  transform: rotate(-4deg);
  transition: transform 0.4s ease;
}
.pc-hero-card:hover { transform: rotate(0deg) scale(1.02); }

/* ===== PLAYCARD BENEFITS ===== */
.pc-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.pc-benefit {
  padding: 28px 22px;
  background: linear-gradient(160deg, rgba(26,21,32,0.9), rgba(141,59,141,0.06));
  border: 1px solid rgba(141,59,141,0.15);
  border-radius: 18px;
  transition: 0.2s;
}
.pc-benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(181,109,181,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pc-benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.pc-benefit h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.pc-benefit p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Price card adjustments */
.price-card .price-bonus {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 8px;
  background: rgba(255,193,7,0.15);
  border-radius: 999px;
  color: #ffd54f;
  font-size: 0.75rem;
  font-weight: 700;
}
.price-cta { display: inline-block; margin-top: 14px; }

/* ===== TOPUP LAYOUT ===== */
.topup-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .topup-grid { grid-template-columns: 1fr; }
  /* Auf Mobil zuerst das Formular (Karten-Nr + Betrag wählen), dann rechts die Zusammenfassung */
  .topup-left  { order: 1; }
  .topup-right { order: 2; }
}

.topup-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.topup-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 8px;
}
.topup-step:first-child { margin-top: 0; }
.topup-step .step-num {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #B56DB5, #e84393);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.topup-step h2 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
}
.topup-step h2 small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.topup-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 6px;
}

.topup-card-input input,
.topup-card-input select,
.topup-email-input input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(10,10,15,0.5);
  border: 1px solid rgba(141,59,141,0.25);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}
.topup-card-input select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 48px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'><path d='M1 1l6 6 6-6' stroke='%23B56DB5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 8px;
}
.topup-card-input select:hover { border-color: rgba(181,109,181,0.5); }
.topup-card-input select:focus,
.topup-card-input input:focus,
.topup-email-input input:focus { outline: none; border-color: #B56DB5; box-shadow: 0 0 0 3px rgba(181,109,181,0.15); }
.topup-card-input select option {
  background: #1a1520;
  color: #fff;
  padding: 12px;
}
.topup-card-input input { font-variant-numeric: tabular-nums; text-transform: uppercase; }
.topup-card-input input:focus,
.topup-email-input input:focus { outline: none; border-color: #B56DB5; }

.topup-custom-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.topup-custom-row label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.topup-custom-row input[type=number] {
  width: 120px;
  padding: 10px 14px;
  background: rgba(10,10,15,0.5);
  border: 1px solid rgba(141,59,141,0.25);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}
.topup-custom-row span { color: var(--text-secondary); }

/* ===== RIGHT SUMMARY CARD ===== */
.topup-summary {
  position: sticky;
  top: 100px;
  padding: 32px;
  background:
    linear-gradient(165deg, rgba(141,59,141,0.18), rgba(232,67,147,0.08) 60%, rgba(58,207,114,0.06)),
    rgba(10,10,15,0.5);
  border: 1px solid rgba(181,109,181,0.3);
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 30px rgba(141,59,141,0.15);
}
.topup-summary h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.topup-summary-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.topup-amount-num {
  font-size: 3.6rem;
  font-weight: 900;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.topup-amount-eur {
  font-size: 1.4rem;
  font-weight: 700;
  color: #B56DB5;
}
.topup-summary-arrow {
  margin: 8px 0;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.3);
}
.topup-credits {
  padding: 22px;
  background: rgba(58,207,114,0.08);
  border: 1px solid rgba(58,207,114,0.25);
  border-radius: 16px;
  margin-bottom: 18px;
  transition: 0.2s;
}
.topup-credits.loading { opacity: 0.6; }
.topup-credits-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.topup-credits-num {
  font-size: 3rem;
  font-weight: 900;
  color: #3acf72;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.topup-credits-label {
  font-size: 1rem;
  font-weight: 700;
  color: #3acf72;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.topup-credits-bonus {
  margin-top: 4px;
  font-size: 0.85rem;
  color: #ffd54f;
  font-weight: 700;
}
.topup-credits-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(58,207,114,0.18);
}
.topup-credits-split .split-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.topup-credits-split .split-num {
  font-size: 1.6rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.topup-credits-split .split-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}
.topup-credits-split .split-bonus .split-num { color: #ffd54f; }
.topup-credits-split .split-bonus .split-lbl { color: #ffd54f; }
.topup-credits-split .split-plus {
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
}
.topup-credits-perCredit {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}
.topup-summary .btn { width: 100%; padding: 14px; font-size: 1rem; }
.topup-secure {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== AMOUNT TILES (topup/voucher) ===== */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
  margin-bottom: 6px;
}
.amount-tile {
  padding: 22px 10px;
  background: rgba(10,10,15,0.5);
  border: 2px solid rgba(141,59,141,0.2);
  border-radius: 14px;
  color: #fff;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.15s;
  letter-spacing: -0.01em;
}
.amount-tile:hover { border-color: rgba(181,109,181,0.5); transform: translateY(-2px); }
.amount-tile.selected {
  background: linear-gradient(135deg, rgba(181,109,181,0.25), rgba(232,67,147,0.15));
  border-color: #B56DB5;
  color: #D494D4;
  box-shadow: 0 0 0 2px rgba(181,109,181,0.2);
}

.pmt-credits-block {
  margin: 14px 0 6px;
  padding: 16px 18px;
  background: rgba(58,207,114,0.08);
  border: 1px solid rgba(58,207,114,0.25);
  border-radius: 12px;
}
.pmt-credits-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
}
.pmt-credits-row .lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  font-weight: 600;
}
.pmt-credits-row .val {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.pmt-credits-row.added .val { color: #3acf72; }
.pmt-credits-row.total {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed rgba(58,207,114,0.25);
}
.pmt-credits-row.total .val { font-size: 1.5rem; color: #fff; }
.pmt-credits-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: -2px;
  margin-bottom: 4px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.pmt-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.pmt-actions .btn { width: 100%; }
.pmt-receipt-pending {
  margin: 0;
  padding: 12px 14px;
  background: rgba(255,193,7,0.1);
  border: 1px solid rgba(255,193,7,0.25);
  border-radius: 10px;
  font-size: 0.85rem;
  color: #ffd54f;
  text-align: center;
}

.voucher-ticket {
  margin: 18px auto;
  max-width: 460px;
  background: linear-gradient(160deg, #1a1520, #0f0a18);
  border: 1px solid rgba(141,59,141,0.4);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
  position: relative;
}
.voucher-ticket::before, .voucher-ticket::after {
  content: '';
  position: absolute;
  left: -10px; right: -10px;
  height: 20px;
  background: radial-gradient(circle, #0a0a0f 6px, transparent 7px) repeat-x;
  background-size: 20px 20px;
}
.voucher-ticket::before { top: 50%; transform: translateY(-50%); pointer-events: none; opacity: 0.6; }
.voucher-ticket::after { display: none; }
.vt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: linear-gradient(90deg, rgba(141,59,141,0.3), rgba(232,67,147,0.18));
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.vt-brand {
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.vt-amount {
  font-weight: 900;
  font-size: 1.4rem;
  color: #ffd54f;
  font-variant-numeric: tabular-nums;
}
.vt-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px;
  align-items: center;
}
.vt-qr {
  background: #fff;
  padding: 8px;
  border-radius: 10px;
}
.vt-qr img { display: block; width: 130px; height: 130px; }
.vt-info { display: flex; flex-direction: column; gap: 6px; }
.vt-info small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-weight: 600;
}
.vt-info .pmt-voucher-code {
  margin: 4px 0;
  padding: 8px 12px;
  font-size: 1rem;
  word-break: break-all;
}
.vt-footer {
  padding: 12px 24px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  text-align: center;
}
.vt-footer small {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.vt-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}

/* ===== PARTNER PAGE (B2B Hotels/Camping) ===== */
.pt-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}
.pt-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 25% 30%, rgba(34,211,238,0.18), transparent 65%),
    radial-gradient(ellipse 60% 50% at 75% 70%, rgba(141,59,141,0.3), transparent 65%);
}
.pt-hero-content { position: relative; max-width: 880px; }
.pt-hero-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 14px 0 18px;
}
.pt-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 28px;
}
.pt-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.pt-hero-stats { display: flex; gap: 14px; flex-wrap: wrap; }
.pt-hero-stats > div {
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(34,211,238,0.12), rgba(141,59,141,0.1));
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 14px;
  flex: 1;
  min-width: 130px;
  text-align: center;
}
.pt-hero-stats strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #22d3ee;
  line-height: 1;
}
.pt-hero-stats span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.pt-target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.pt-target-card {
  padding: 28px 24px;
  background: rgba(26,21,32,0.7);
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 16px;
  transition: 0.2s;
}
.pt-target-card:hover { transform: translateY(-4px); border-color: rgba(34,211,238,0.4); }
.pt-target-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.pt-target-card h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.pt-target-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.55; }

.pt-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.pt-how-step {
  padding: 26px 24px;
  background: rgba(26,21,32,0.7);
  border: 1px solid rgba(141,59,141,0.2);
  border-radius: 16px;
  text-align: center;
}
.pt-how-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #22d3ee, #B56DB5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  box-shadow: 0 8px 20px rgba(34,211,238,0.3);
}
.pt-how-step h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.pt-how-step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; }

.pt-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.pt-benefit {
  padding: 24px 22px;
  background: rgba(26,21,32,0.6);
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 14px;
}
.pt-benefit-icon { font-size: 1.8rem; margin-bottom: 10px; }
.pt-benefit h4 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.pt-benefit p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; }

.pt-setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.pt-setup-card {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(160deg, rgba(26,21,32,0.9), rgba(141,59,141,0.08));
  border: 1px solid rgba(141,59,141,0.22);
  border-radius: 18px;
}
.pt-setup-card.popular {
  border-color: rgba(34,211,238,0.5);
  box-shadow: 0 20px 50px rgba(34,211,238,0.12);
}
.pt-setup-pop {
  position: absolute; top: -10px; left: 28px;
  padding: 4px 14px;
  background: #22d3ee;
  color: #0a0a0f;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pt-setup-size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: rgba(34,211,238,0.15);
  border: 2px solid rgba(34,211,238,0.5);
  border-radius: 50%;
  color: #22d3ee;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.pt-setup-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.pt-setup-num {
  font-size: 0.9rem;
  color: #22d3ee;
  font-weight: 700;
  margin-bottom: 14px;
}
.pt-setup-card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.pt-setup-card li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.pt-setup-card li::before {
  content: '✓';
  position: absolute; left: 0; top: 5px;
  color: #3acf72;
  font-weight: 800;
}
.pt-setup-fit {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px dashed rgba(141,59,141,0.15);
}
.pt-setup-card.xl {
  background: linear-gradient(160deg, rgba(232,67,147,0.18), rgba(141,59,141,0.1));
  border-color: rgba(232,67,147,0.4);
}
.pt-setup-card.xl .pt-setup-size {
  background: rgba(232,67,147,0.2);
  border-color: rgba(232,67,147,0.6);
  color: #e84393;
}
.pt-setup-card.xl .pt-setup-num { color: #e84393; }

/* Equipment showcase */
.pt-equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
.pt-equip-card {
  padding: 20px 18px;
  background: rgba(26,21,32,0.6);
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 14px;
  text-align: center;
  transition: 0.2s;
}
.pt-equip-card:hover { transform: translateY(-3px); border-color: rgba(34,211,238,0.4); }
.pt-equip-icon { font-size: 2.2rem; margin-bottom: 10px; }
.pt-equip-card h4 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.pt-equip-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* Target type cards as links */
.pt-target-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.pt-target-link {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background: rgba(34,211,238,0.12);
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 999px;
  color: #22d3ee;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Sub-page (per-type) tinted hero */
.pt-hero-bg-typed {
  background:
    radial-gradient(ellipse 60% 60% at 25% 30%, var(--pt-accent, rgba(34,211,238,0.18)), transparent 65%),
    radial-gradient(ellipse 60% 50% at 75% 70%, rgba(141,59,141,0.3), transparent 65%);
}

.pt-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.pt-pain-card {
  padding: 24px 22px;
  background: rgba(232,67,147,0.06);
  border: 1px solid rgba(232,67,147,0.22);
  border-left: 4px solid #e84393;
  border-radius: 12px;
}
.pt-pain-icon { font-size: 1.8rem; margin-bottom: 10px; }
.pt-pain-card h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.pt-pain-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.55; }

.pt-sol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.pt-sol-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: rgba(58,207,114,0.06);
  border: 1px solid rgba(58,207,114,0.25);
  border-radius: 14px;
}
.pt-sol-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.pt-sol-card h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.pt-sol-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.55; }

.pt-setup-recommend {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(34,211,238,0.14), rgba(141,59,141,0.1));
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 20px;
}
.pt-setup-recommend-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 14px;
  background: rgba(34,211,238,0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #22d3ee;
}
.pt-setup-recommend h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pt-setup-recommend p { color: var(--text-secondary); line-height: 1.6; max-width: 600px; margin: 0 auto 24px; }

.pt-other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.pt-other-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(26,21,32,0.6);
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: 0.15s;
}
.pt-other-card:hover { border-color: rgba(34,211,238,0.4); transform: translateY(-2px); }
.pt-other-card span { font-size: 1.4rem; flex-shrink: 0; }
.pt-other-card strong { font-size: 0.92rem; color: #fff; }

/* Payment integration */
.pt-payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.pt-payment-card {
  padding: 24px 22px;
  background: linear-gradient(160deg, rgba(58,207,114,0.06), rgba(34,211,238,0.08));
  border: 1px solid rgba(58,207,114,0.22);
  border-radius: 16px;
  transition: 0.2s;
}
.pt-payment-card:hover { transform: translateY(-3px); border-color: rgba(58,207,114,0.5); }
.pt-payment-icon { font-size: 2rem; margin-bottom: 12px; }
.pt-payment-card h4 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.pt-payment-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; }

/* INSERT-PLAY callout (shared on partner + franchise) */
.pt-insertplay {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
  padding: 36px 40px;
  background:
    linear-gradient(135deg, rgba(141,59,141,0.12), rgba(232,67,147,0.06)),
    rgba(15,10,24,0.6);
  border: 1px solid rgba(181,109,181,0.25);
  border-radius: 22px;
}
@media (max-width: 720px) { .pt-insertplay { grid-template-columns: 1fr; text-align: center; } }
.pt-insertplay-logo img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
}
.pt-insertplay-text h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.pt-insertplay-text strong { color: #D494D4; }
.pt-insertplay-text p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }

/* Franchise → Partner teaser */
.fr-pt-teaser {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
  padding: 22px 26px;
  background: linear-gradient(90deg, rgba(34,211,238,0.12), rgba(141,59,141,0.06));
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}
.fr-pt-teaser:hover { border-color: #22d3ee; transform: translateY(-2px); }
.fr-pt-icon { font-size: 2.6rem; flex-shrink: 0; }
.fr-pt-text { flex: 1; }
.fr-pt-text strong { display: block; font-size: 1.05rem; color: #fff; margin-bottom: 4px; }
.fr-pt-text p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; line-height: 1.5; }
.fr-pt-text strong:last-of-type { display: inline; color: #22d3ee; }
.fr-pt-arrow { font-size: 1.4rem; color: #22d3ee; font-weight: 700; }

/* ===== EVENT DETAIL HERO ===== */
.evd-hero {
  position: relative;
  padding: 130px 0 70px;
  overflow: hidden;
}
.evd-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(232,67,147,0.32), transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(141,59,141,0.3), transparent 70%);
}
.evd-hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.evd-hero-orbs span {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55;
}
.evd-hero-orbs span:nth-child(1) { width: 280px; height: 280px; background: #e84393; top: 15%; left: 8%; animation: orbFloat 18s ease-in-out infinite; }
.evd-hero-orbs span:nth-child(2) { width: 200px; height: 200px; background: #ffd54f; bottom: 10%; right: 12%; animation: orbFloat 14s ease-in-out infinite reverse; opacity: 0.35; }
.evd-hero-content { position: relative; max-width: 820px; z-index: 2; }
.evd-hero-content .sub-breadcrumb { justify-content: flex-start; }
.evd-hero-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 14px 0 16px;
}
.evd-hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 28px; max-width: 580px; }
.evd-hero-stats { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.evd-hero-stats > div {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(26,21,32,0.7);
  border: 1px solid rgba(141,59,141,0.25);
  border-radius: 14px;
  flex: 1;
  min-width: 140px;
}
.evd-hero-stats span { font-size: 1.6rem; line-height: 1; }
.evd-hero-stats strong { display: block; font-size: 1.15rem; font-weight: 800; color: #fff; line-height: 1.1; }
.evd-hero-stats small { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); margin-top: 2px; }
.evd-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.evd-hero-mascot { display: flex; justify-content: center; }
.evd-hero-mascot img {
  max-width: 300px;
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(232,67,147,0.3));
  animation: mascotFloat 5s ease-in-out infinite;
}
@keyframes mascotFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ===== VOUCHER PAGE ===== */
.vc-hero {
  position: relative;
  padding: 110px 0 80px;
  text-align: center;
  overflow: hidden;
}
.vc-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,193,7,0.32), transparent 60%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(232,67,147,0.2), transparent 65%);
}
.vc-hero-confetti {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.vc-hero-confetti span {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.6;
  animation: confettiFloat 12s ease-in-out infinite;
}
.vc-hero-confetti span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.vc-hero-confetti span:nth-child(2) { top: 35%; right: 18%; animation-delay: 1.5s; font-size: 1.4rem; }
.vc-hero-confetti span:nth-child(3) { top: 60%; left: 22%; animation-delay: 3s; }
.vc-hero-confetti span:nth-child(4) { top: 25%; right: 32%; animation-delay: 4.5s; font-size: 1.2rem; }
.vc-hero-confetti span:nth-child(5) { top: 70%; right: 14%; animation-delay: 2s; }
.vc-hero-confetti span:nth-child(6) { top: 50%; left: 35%; animation-delay: 5s; font-size: 1.4rem; }
@keyframes confettiFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(15deg); }
}
.vc-hero-content { position: relative; max-width: 720px; margin: 0 auto; z-index: 2; }
.vc-hero-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 14px 0 16px;
}
.vc-hero-title .accent {
  background: linear-gradient(135deg, #ffd54f 0%, #e84393 50%, #B56DB5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vc-hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.6; max-width: 600px; margin: 0 auto; }

.vc-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width:880px) { .vc-grid { grid-template-columns: 1fr; } .vc-right { order: -1; } }
.vc-left { display: flex; flex-direction: column; gap: 12px; }

.vc-preview {
  position: sticky;
  top: 100px;
  padding: 28px;
  background:
    linear-gradient(165deg, rgba(255,193,7,0.18), rgba(232,67,147,0.12) 60%, rgba(141,59,141,0.08)),
    rgba(10,10,15,0.5);
  border: 1px solid rgba(255,193,7,0.3);
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 30px rgba(255,193,7,0.15);
}
.vc-preview-card {
  padding: 24px 22px;
  background: linear-gradient(160deg, #1a1520, #0f0a18);
  border: 1px solid rgba(255,193,7,0.35);
  border-radius: 16px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}
.vc-preview-card::before, .vc-preview-card::after {
  content: '✦';
  position: absolute;
  font-size: 1.4rem;
  color: #ffd54f;
  opacity: 0.6;
}
.vc-preview-card::before { top: 10px; left: 12px; }
.vc-preview-card::after { top: 10px; right: 12px; }
.vc-preview-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd54f;
  font-weight: 700;
  margin-bottom: 12px;
}
.vc-preview-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #ffd54f;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 4px 24px rgba(255,193,7,0.4);
}
.vc-preview-label {
  margin-top: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}
.vc-preview-divider {
  width: 60%;
  height: 1px;
  margin: 18px auto;
  background: linear-gradient(90deg, transparent, rgba(255,193,7,0.4), transparent);
}
.vc-preview-info {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.85rem;
  margin-bottom: 6px;
  text-align: left;
}
.vc-preview-info span { color: var(--text-secondary); }
.vc-preview-info strong { color: #fff; font-weight: 700; }
.vc-preview .btn { width: 100%; padding: 14px; font-size: 1rem; }
.vc-preview .topup-secure { margin-top: 12px; }
.vc-preview .pc-result { margin: 8px 0; }

/* ===== GAME DETAIL PAGE ===== */
.gd-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  min-height: 540px;
}
.gd-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(50px) saturate(1.3);
  transform: scale(1.2);
  opacity: 0.6;
}
.gd-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 30% 50%, rgba(10,10,15,0.4), rgba(10,10,15,0.85) 70%),
    linear-gradient(135deg, rgba(10,10,15,0.6), rgba(141,59,141,0.18));
}
.gd-hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  z-index: 2;
}
@media (max-width: 880px) { .gd-hero-content { grid-template-columns: 1fr; } }

.gd-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 14px;
}
.gd-hero-cat {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(181,109,181,0.18);
  border: 1px solid rgba(181,109,181,0.45);
  border-radius: 999px;
  color: #D494D4;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.gd-hero-featured {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.4);
  border-radius: 999px;
  color: #ffd54f;
  font-size: 0.78rem;
  font-weight: 800;
}
.gd-hero-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.gd-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 580px;
}
.gd-hero-context {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 580px;
}
.gd-hero-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gd-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(26,21,32,0.7);
  border: 1px solid rgba(141,59,141,0.22);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  flex: 1;
  min-width: 120px;
}
.gd-stat-icon { font-size: 1.6rem; line-height: 1; }
.gd-stat strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.gd-stat small {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-top: 2px;
}
.gd-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.gd-hero-img-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.gd-hero-img {
  max-width: 100%;
  width: 460px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(181,109,181,0.35),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  transform: rotate(-2deg);
  transition: 0.4s;
}
.gd-hero-img-wrap:hover .gd-hero-img { transform: rotate(0deg) scale(1.02); }

/* Location chips */
.gd-loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.gd-loc-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(26,21,32,0.7);
  border: 1px solid rgba(141,59,141,0.2);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}
.gd-loc-card:hover {
  border-color: rgba(181,109,181,0.5);
  background: rgba(181,109,181,0.08);
  transform: translateY(-2px);
}
.gd-loc-icon { font-size: 1.8rem; flex-shrink: 0; }
.gd-loc-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.gd-loc-body strong { color: #fff; font-size: 1rem; font-weight: 800; }
.gd-loc-body small { color: var(--text-secondary); font-size: 0.85rem; }
.gd-loc-type {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
}
.gd-loc-type.type-flagship { background: rgba(232,67,147,0.18); color: #e84393; }
.gd-loc-type.type-standard { background: rgba(34,211,238,0.15); color: #22d3ee; }
.gd-loc-type.type-express { background: rgba(58,207,114,0.15); color: #3acf72; }
.gd-loc-arrow { font-size: 1.4rem; color: #B56DB5; font-weight: 700; }

/* Related games grid */
.gd-related-grid {
  display: grid;
  /* Desktop: feste 3-Spalten (3x3 für 9 Games). Tablet: 2. Mobile: 1.
     Einzelne Items füllen nicht mehr die volle Breite — Cards behalten ihre Größe. */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 820px) { .gd-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .gd-related-grid { grid-template-columns: 1fr; } }
.gd-related-card {
  background: rgba(26,21,32,0.7);
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: 0.25s;
}
.gd-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(181,109,181,0.45);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.gd-related-img { aspect-ratio: 4/3; overflow: hidden; }
.gd-related-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gd-related-card:hover .gd-related-img img { transform: scale(1.06); }
.gd-related-body { padding: 12px 14px; }
.gd-related-cat {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #D494D4;
  font-weight: 700;
}
.gd-related-body h4 { font-size: 1rem; font-weight: 800; margin: 0 0 4px; color: #fff; }
.gd-related-body small { font-size: 0.8rem; color: var(--text-secondary); }

/* ===== GAMES PAGE ===== */
.games-hero {
  position: relative;
  padding: 130px 0 70px;
  overflow: hidden;
}
.games-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(141,59,141,0.32), transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(34,211,238,0.18), transparent 70%);
}
.games-hero-content { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 880px) { .games-hero-content { grid-template-columns: 1fr; } }
.games-title { font-family: 'Orbitron', 'Inter', sans-serif; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: 0.01em; line-height: 1.1; text-transform: uppercase; margin: 14px 0 16px; }
.games-desc { font-size: 1.1rem; color: rgba(255,255,255,0.82); line-height: 1.55; margin-bottom: 28px; max-width: 600px; }
.games-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.games-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.games-cat-stat {
  padding: 20px 18px;
  background: linear-gradient(135deg, rgba(141,59,141,0.18), rgba(34,211,238,0.06));
  border: 1px solid rgba(181,109,181,0.25);
  border-radius: 14px;
  text-align: center;
}
.games-cat-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #B56DB5;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.games-cat-stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

/* Featured */
.games-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.games-feat-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: 0.25s;
  border: 1px solid rgba(141,59,141,0.2);
}
.games-feat-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(0,0,0,0.5); border-color: rgba(181,109,181,0.5); }
.games-feat-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: 0.6s;
}
.games-feat-card:hover .games-feat-img { transform: scale(1.05); }
.games-feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,10,15,0.55) 65%, rgba(10,10,15,0.95) 100%);
}
.games-feat-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 22px 22px;
}
.games-feat-cat {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 8px;
  background: rgba(181,109,181,0.3);
  border: 1px solid rgba(181,109,181,0.5);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D494D4;
}
.games-feat-body h3,
.games-feat-body .games-feat-name { display: block; font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; line-height: 1.1; color: #fff; }
.games-feat-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
}

/* Toolbar + filters */
.games-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.games-search-wrap input {
  padding: 10px 16px;
  background: rgba(10,10,15,0.5);
  border: 1px solid rgba(141,59,141,0.25);
  border-radius: 999px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  min-width: 240px;
}
.games-search-wrap input:focus { outline: none; border-color: #B56DB5; }

.games-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto;
  max-width: 1200px;
}
.games-filter-group {
  max-width: 1200px;
  margin: 0 auto 14px;
}
.games-filter-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 8px;
}
.games-filter-btn {
  padding: 8px 16px;
  background: rgba(26,21,32,0.6);
  border: 1px solid rgba(141,59,141,0.2);
  border-radius: 999px;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s;
}
.games-filter-btn span {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  background: rgba(141,59,141,0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--text-secondary);
}
.games-filter-btn:hover { color: #fff; border-color: rgba(181,109,181,0.4); }
.games-filter-btn.active {
  background: linear-gradient(135deg, #B56DB5, #e84393);
  color: #fff;
  border-color: transparent;
}
.games-filter-btn.active span { background: rgba(255,255,255,0.25); color: #fff; }

/* Game cards grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.games-card {
  background: rgba(26,21,32,0.7);
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Stretched-link: only the title is the actual anchor (= short, SEO-friendly link text),
   but its ::after overlay covers the whole card so the entire card stays clickable. */
.game-card-link { color: inherit; text-decoration: none; }
.game-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.games-card a[data-lightbox],
.games-card .game-loc { position: relative; z-index: 2; }

/* Auto-internal-link: keyword-based inline links inserted by autoInternalLinks()
   (Cosmos Playcard, Hamburger Meile, Kindergeburtstag, ...). Erbt die Textfarbe
   vom umgebenden Absatz, nur mit Unterstreichung erkennbar. */
.auto-internal-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
  transition: text-decoration-color .15s, opacity .15s;
}
.auto-internal-link:hover,
.auto-internal-link:focus {
  opacity: 0.85;
  text-decoration-thickness: 2px;
}
.games-card:hover { transform: translateY(-4px); border-color: rgba(181,109,181,0.5); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.games-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a1520;
}
.games-card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.games-card:hover .games-card-img img { transform: scale(1.06); }
.games-card-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  background: rgba(10,10,15,0.85);
  border: 1px solid rgba(255,193,7,0.55);
  color: #ffd54f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(255,193,7,0.15);
}
.games-card-badge::before { content: '⭐'; font-size: 0.85rem }
.games-card-credits {
  position: absolute; bottom: 10px; right: 10px;
  padding: 4px 10px;
  background: rgba(10,10,15,0.85);
  border: 1px solid rgba(58,207,114,0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3acf72;
  backdrop-filter: blur(8px);
}
.game-reward-badge {
  position: absolute; bottom: 10px; left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: rgba(10,10,15,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: calc(100% - 90px); /* leave room for credits-badge */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.consent-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  margin: 14px 0 10px;
  background: rgba(141,59,141,0.06);
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
}
.consent-row input[type=checkbox] { margin-top: 3px; accent-color: #b56db5; flex-shrink: 0 }
.consent-row a { color: #b56db5; text-decoration: underline }
.consent-row a:hover { color: #d494d4 }

.game-reward-badge.rt-tickets    { border-color: rgba(255,213,79,0.5); color: #ffd54f }
.game-reward-badge.rt-prize      { border-color: rgba(255,140,180,0.5); color: #ff90b9 }
.game-reward-badge.rt-consolation{ border-color: rgba(200,120,200,0.5); color: #d494d4 }
.game-reward-badge.rt-until-win  { border-color: rgba(120,200,255,0.55); color: #7cd0ff }
.games-card-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.games-card-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #D494D4;
  font-weight: 700;
  margin-bottom: 2px;
}
.games-card-body h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0 0 4px; line-height: 1.2; }
.games-card-meta { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 4px; }
.games-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.games-card-locs {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(141,59,141,0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.games-card-locs small {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 4px;
}
.games-card-locs span {
  padding: 3px 9px;
  background: rgba(58,207,114,0.12);
  border: 1px solid rgba(58,207,114,0.25);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #3acf72;
}
.games-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

/* ===== EVENTS PAGE ===== */
.ev-hero {
  position: relative;
  padding: 130px 0 70px;
  overflow: hidden;
}
.ev-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(232,67,147,0.25), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(141,59,141,0.3), transparent 70%);
}
.ev-hero-content { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 880px) { .ev-hero-content { grid-template-columns: 1fr; } }
.ev-title { font-family: 'Orbitron', 'Inter', sans-serif; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: 0.01em; line-height: 1.1; text-transform: uppercase; margin: 14px 0 18px; }
.ev-desc { font-size: 1.1rem; color: rgba(255,255,255,0.82); line-height: 1.55; margin-bottom: 28px; max-width: 600px; }
.ev-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ev-hero-badges { display: flex; flex-direction: column; gap: 12px; }
.ev-hero-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(90deg, rgba(141,59,141,0.18), rgba(26,21,32,0.6));
  border: 1px solid rgba(181,109,181,0.25);
  border-radius: 14px;
  font-weight: 700;
  color: #fff;
}
.ev-hero-badge span { font-size: 1.5rem; }

.ev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.ev-card {
  display: flex; flex-direction: column;
  padding: 32px 28px;
  background: linear-gradient(160deg, rgba(26,21,32,0.9), rgba(141,59,141,0.08));
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}
.ev-card:hover { transform: translateY(-4px); border-color: rgba(181,109,181,0.5); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.ev-card-icon { font-size: 3.2rem; line-height: 1; margin-bottom: 14px; }
.ev-card-title { font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; color: #fff; }
.ev-card-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 18px; }
.ev-card-tiers {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px;
  padding-top: 14px; border-top: 1px dashed rgba(141,59,141,0.18);
}
.ev-tier {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 6px 0;
  font-size: 0.88rem;
}
.ev-tier-name { color: var(--text-secondary); }
.ev-tier-price { font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.ev-tier-price small { font-weight: 500; color: var(--text-secondary); font-size: 0.78rem; }
.ev-tier.pop {
  position: relative;
  padding: 6px 10px;
  margin: 0 -10px;
  background: rgba(232,67,147,0.1);
  border-radius: 8px;
}
.ev-tier.pop .ev-tier-price { color: #ffd54f; }
.ev-card-from { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 14px; }
.ev-card-from span { opacity: 0.7; }
.ev-card-from strong { color: #ffd54f; font-size: 1rem; font-weight: 800; }
.ev-card-cta {
  display: inline-block;
  margin-top: auto;
  padding: 12px 20px;
  background: rgba(181,109,181,0.15);
  border: 1px solid rgba(181,109,181,0.3);
  border-radius: 10px;
  color: #D494D4;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  transition: 0.15s;
}
.ev-card:hover .ev-card-cta { background: #B56DB5; color: #fff; border-color: #B56DB5; }

.ev-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.ev-highlight {
  padding: 24px;
  background: rgba(26,21,32,0.6);
  border: 1px solid rgba(141,59,141,0.15);
  border-radius: 14px;
  text-align: center;
}
.ev-highlight-icon { font-size: 2rem; margin-bottom: 10px; }
.ev-highlight h4 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.ev-highlight p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

/* ===== LOCATIONS LIST PAGE ===== */
.locs-hero {
  position: relative;
  padding: 110px 0 90px;
  overflow: hidden;
  text-align: center;
}
.locs-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 50% 0%, rgba(141,59,141,0.45), transparent 60%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(232,67,147,0.15), transparent 60%),
    linear-gradient(180deg, transparent, rgba(10,10,15,0.4));
}
.locs-hero-orbs {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.locs-hero-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}
.locs-hero-orbs span:nth-child(1) {
  width: 320px; height: 320px;
  background: #B56DB5;
  top: 10%; left: 12%;
  animation: orbFloat 18s ease-in-out infinite;
}
.locs-hero-orbs span:nth-child(2) {
  width: 220px; height: 220px;
  background: #e84393;
  top: 30%; right: 8%;
  animation: orbFloat 14s ease-in-out infinite reverse;
}
.locs-hero-orbs span:nth-child(3) {
  width: 180px; height: 180px;
  background: #ffd54f;
  bottom: 0; left: 40%;
  opacity: 0.3;
  animation: orbFloat 22s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.locs-hero-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  z-index: 2;
}

.locs-hero-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  background: rgba(232,67,147,0.12);
  border: 1px solid rgba(232,67,147,0.3);
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 10px 40px rgba(232,67,147,0.3);
  animation: pinBounce 3s ease-in-out infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.locs-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.locs-title .accent {
  background: linear-gradient(135deg, #D494D4 0%, #e84393 50%, #ffd54f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.locs-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 620px;
}

.locs-hero-stats {
  display: inline-flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.locs-hero-stats > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 18px;
  background: rgba(26,21,32,0.7);
  border: 1px solid rgba(141,59,141,0.25);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: 0.2s;
}
.locs-hero-stats > div:hover { transform: translateY(-2px); border-color: rgba(181,109,181,0.5); }
.locs-stat-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.locs-hero-stats strong {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.locs-stat-lbl {
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 2px;
  font-weight: 600;
}
.locs-hero-stats .is-open strong { color: #3acf72; }
.locs-hero-stats .is-soon strong { color: #ffd54f; }
.locs-hero-stats .is-open { border-color: rgba(58,207,114,0.3); }
.locs-hero-stats .is-soon { border-color: rgba(255,193,7,0.3); }

.locs-hero-franchise {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 22px;
  background: rgba(255,193,7,0.08);
  border: 1px dashed rgba(255,193,7,0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
  justify-content: center;
}
.locs-hero-franchise .btn { padding: 8px 16px; }

.locs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.locs-card {
  display: flex; flex-direction: column;
  background: rgba(26,21,32,0.7);
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: 0.25s;
}
.locs-card:hover { transform: translateY(-4px); border-color: rgba(181,109,181,0.5); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.locs-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.locs-card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.locs-card:hover .locs-card-img img { transform: scale(1.05); }
.locs-card-type-badge {
  position: absolute;
  top: 12px; left: 12px;
  display: inline-block;
  padding: 5px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: skewX(-6deg);
  color: #fff;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45);
}
.locs-card-type-badge.type-flagship { background: linear-gradient(135deg, #e84393, #8d3b8d); }
.locs-card-type-badge.type-standard { background: linear-gradient(135deg, #22d3ee, #1a8a9e); }
.locs-card-type-badge.type-express  { background: linear-gradient(135deg, #3acf72, #14945a); }

/* Prominent status banner across full card width */
.locs-card-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.locs-card-status .locs-status-text { font-weight: 800; }
.locs-card-status .locs-status-sub {
  margin-left: auto;
  font-weight: 500;
  font-size: 0.85rem;
  opacity: 0.85;
}
.locs-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.55;transform:scale(0.9)} }

.locs-card.status-is-open .locs-card-status {
  background: linear-gradient(90deg, rgba(58,207,114,0.22), rgba(58,207,114,0.05));
  color: #3acf72;
}
.locs-card.status-is-open .locs-status-dot {
  background: #3acf72;
  box-shadow: 0 0 14px #3acf72, 0 0 0 4px rgba(58,207,114,0.18);
}
.locs-card.status-is-open .locs-card-status .locs-status-sub { color: #fff; opacity: 0.9; }

.locs-card.status-is-closed .locs-card-status {
  background: linear-gradient(90deg, rgba(232,67,147,0.18), rgba(232,67,147,0.05));
  color: #e84393;
}
.locs-card.status-is-closed .locs-status-dot {
  background: #e84393;
  box-shadow: 0 0 8px rgba(232,67,147,0.6);
}
.locs-card.status-is-closed .locs-card-status .locs-status-sub { color: rgba(255,255,255,0.8); }

.locs-card.status-is-soon .locs-card-status {
  background: linear-gradient(90deg, rgba(255,193,7,0.2), rgba(255,193,7,0.04));
  color: #ffd54f;
}
.locs-card.status-is-soon .locs-status-dot {
  background: #ffd54f;
  box-shadow: 0 0 8px rgba(255,193,7,0.6);
}
.locs-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.locs-card-name { font-size: 1.25rem; font-weight: 800; color: #fff; margin: 0; }
.locs-card-address { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.locs-card-features {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px;
}
.locs-card-features span {
  padding: 4px 10px;
  background: rgba(141,59,141,0.12);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.locs-card-features .more { background: rgba(181,109,181,0.2); color: #D494D4; font-weight: 700; }
.locs-card-hours {
  list-style: none;
  margin: 8px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(141,59,141,0.1);
  font-size: 0.82rem;
}
.locs-card-hours li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 3px 0;
  color: var(--text-secondary);
}
.locs-card-hours li span:first-child { font-weight: 600; color: var(--text-primary); }
.locs-card-hours li.today { color: #D494D4; }
.locs-card-hours li.today span:first-child { color: #D494D4; }
.locs-card-hours li.is-closed { opacity: 0.55; font-style: italic; }
.locs-card-cta {
  margin-top: 8px;
  padding: 10px 16px;
  background: rgba(181,109,181,0.12);
  border-radius: 10px;
  color: #D494D4;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
}
.locs-card:hover .locs-card-cta { background: #B56DB5; color: #fff; }

.locs-card-franchise {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(160deg, rgba(255,193,7,0.18), rgba(141,59,141,0.18));
  border: 2px dashed rgba(255,193,7,0.4);
  text-align: center;
  align-items: center;
  justify-content: center;
}
.locs-fr-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,193,7,0.3), transparent 60%);
  pointer-events: none;
}
.locs-fr-icon { font-size: 3.5rem; margin-bottom: 14px; position: relative; }
.locs-card-franchise h2 { font-size: 1.4rem; font-weight: 900; color: #ffd54f; margin-bottom: 10px; position: relative; margin-top: 0; }
.locs-card-franchise p { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.55; margin-bottom: 18px; position: relative; }
.locs-card-franchise .locs-card-cta { background: rgba(255,193,7,0.18); color: #ffd54f; border: 1px solid rgba(255,193,7,0.4); }
.locs-card-franchise:hover .locs-card-cta { background: #ffd54f; color: #0a0a0f; border-color: #ffd54f; }

.locs-fr-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  margin-top: 4px;
}
.locs-card-franchise .locs-card-cta.alt {
  background: rgba(34,211,238,0.18);
  color: #22d3ee;
  border: 1px solid rgba(34,211,238,0.4);
}
.locs-card-franchise .locs-card-cta.alt:hover {
  background: #22d3ee;
  color: #0a0a0f;
  border-color: #22d3ee;
}

/* ===== FRANCHISE PAGE ===== */
.fr-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}
.fr-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 30%, rgba(255,193,7,0.18), transparent 70%),
    radial-gradient(ellipse 70% 60% at 80% 70%, rgba(141,59,141,0.3), transparent 70%);
  pointer-events: none;
}
.fr-hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .fr-hero-content { grid-template-columns: 1fr; } }
.fr-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 14px 0 16px;
}
.fr-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 600px;
}
.fr-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.fr-hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.fr-stat {
  padding: 24px;
  background: linear-gradient(135deg, rgba(141,59,141,0.18), rgba(232,67,147,0.05));
  border: 1px solid rgba(181,109,181,0.3);
  border-radius: 16px;
  text-align: center;
}
.fr-stat strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffd54f;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.fr-stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.fr-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.fr-why-card {
  padding: 28px 24px;
  background: rgba(26,21,32,0.7);
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 16px;
  transition: 0.2s;
}
.fr-why-card:hover { transform: translateY(-3px); border-color: rgba(181,109,181,0.4); }
.fr-why-icon { font-size: 2.2rem; margin-bottom: 12px; }
.fr-why-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.fr-why-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.55; }

.fr-package {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.fr-pkg-section {
  padding: 28px 26px;
  background: linear-gradient(160deg, rgba(141,59,141,0.1), rgba(26,21,32,0.7));
  border: 1px solid rgba(141,59,141,0.2);
  border-radius: 18px;
}
.fr-pkg-section h3 { font-size: 1.1rem; font-weight: 800; color: #D494D4; margin-bottom: 14px; }
.fr-pkg-section ul { list-style: none; padding: 0; margin: 0; }
.fr-pkg-section li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}
.fr-pkg-section li::before {
  content: '✓';
  position: absolute; left: 0; top: 6px;
  color: #3acf72;
  font-weight: 800;
}

.fr-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
}
@media (max-width: 720px) { .fr-profile { grid-template-columns: 1fr; } }
.fr-profile-col {
  padding: 28px;
  background: rgba(26,21,32,0.6);
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 16px;
}
.fr-profile-col h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 14px; }
.fr-profile-col ul { padding-left: 18px; margin: 0; }
.fr-profile-col li { padding: 4px 0; color: var(--text-secondary); font-size: 0.92rem; line-height: 1.5; }

.fr-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.fr-step {
  padding: 22px 20px;
  background: rgba(26,21,32,0.7);
  border: 1px solid rgba(141,59,141,0.2);
  border-radius: 14px;
  text-align: center;
}
.fr-step-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #B56DB5, #e84393);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 auto 12px;
  box-shadow: 0 6px 20px rgba(181,109,181,0.4);
}
.fr-step h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 6px; color: #fff; }
.fr-step p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

.fr-contact-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(141,59,141,0.18), rgba(232,67,147,0.1));
  border: 1px solid rgba(181,109,181,0.3);
  border-radius: 22px;
}
.fr-contact-card h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.fr-contact-card > p { color: var(--text-secondary); margin-bottom: 24px; }
.fr-form .form-group { margin-bottom: 14px; }
.fr-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.fr-form input, .fr-form select, .fr-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(10,10,15,0.5);
  border: 1px solid rgba(141,59,141,0.25);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}
.fr-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width:600px) { .fr-form .form-row { grid-template-columns: 1fr; } }

/* ===== VOUCHER PRINT CARD (A4) ===== */
.vp-card {
  position: absolute;
  left: -10000px; top: 0;
  width: 794px;
  min-height: 1123px;
  padding: 60px 60px 50px;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(141,59,141,0.4), transparent 70%),
    radial-gradient(ellipse 60% 30% at 50% 100%, rgba(232,67,147,0.25), transparent 70%),
    linear-gradient(180deg, #0f0a18 0%, #0a0a0f 60%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: center;
  box-sizing: border-box;
  border: 4px double rgba(181,109,181,0.45);
  overflow: hidden;
}
.vp-card.vp-rendering { left: 50%; transform: translateX(-50%); top: -2000px; }
.vp-corner { position: absolute; width: 70px; height: 70px; border: 3px solid #ffd54f; }
.vp-corner-tl { top: 24px; left: 24px; border-right: none; border-bottom: none; border-top-left-radius: 14px; }
.vp-corner-tr { top: 24px; right: 24px; border-left: none; border-bottom: none; border-top-right-radius: 14px; }
.vp-corner-bl { bottom: 24px; left: 24px; border-right: none; border-top: none; border-bottom-left-radius: 14px; }
.vp-corner-br { bottom: 24px; right: 24px; border-left: none; border-top: none; border-bottom-right-radius: 14px; }
.vp-brand-row { margin: 12px 0 8px; }
.vp-logo { height: 60px; filter: drop-shadow(0 4px 14px rgba(181,109,181,0.4)); }
.vp-eyebrow { letter-spacing: 1em; color: #ffd54f; font-size: 14px; margin: 14px 0 6px; }
.vp-title {
  font-size: 72px; font-weight: 900; letter-spacing: -0.02em; margin: 0 0 8px;
  background: linear-gradient(180deg, #fff 0%, #D494D4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vp-divider { width: 80px; height: 4px; background: linear-gradient(90deg, transparent, #ffd54f, transparent); margin: 20px auto; }
.vp-amount {
  font-size: 100px; font-weight: 900; color: #ffd54f; line-height: 1;
  font-variant-numeric: tabular-nums; text-shadow: 0 6px 28px rgba(255,193,7,0.35);
  margin: 14px 0 4px;
}
.vp-amount span { font-size: 32px; font-weight: 700; margin-left: 6px; color: rgba(255,213,79,0.85); }
.vp-tagline { font-size: 18px; font-style: italic; color: rgba(255,255,255,0.78); margin: 4px 0 30px; }
.vp-qr-wrap {
  display: inline-block; padding: 18px; background: #fff; border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.5); margin: 0 auto 24px;
}
.vp-qr { width: 260px; height: 260px; display: block; }
.vp-code-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.vp-code {
  display: inline-block; padding: 16px 32px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 30px; font-weight: 700; letter-spacing: 0.12em;
  background: rgba(58,207,114,0.12); border: 2px dashed #3acf72;
  border-radius: 14px; color: #3acf72; margin-bottom: 30px; word-break: break-all;
}
.vp-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 0 24px 28px; text-align: left; }
.vp-info-grid > div { padding: 16px 20px; background: rgba(141,59,141,0.12); border: 1px solid rgba(141,59,141,0.3); border-radius: 14px; }
.vp-info-grid strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: #D494D4; margin-bottom: 6px; }
.vp-info-grid span { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.88); }
.vp-info-grid span small { font-size: 12px; color: rgba(255,255,255,0.6); }
.vp-footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin: 0 24px; padding-top: 24px; border-top: 1px dashed rgba(255,255,255,0.18);
}
.vp-footer-left, .vp-footer-right { display: flex; flex-direction: column; gap: 4px; }
.vp-footer-right { text-align: right; }
.vp-footer small { font-size: 12px; color: rgba(255,255,255,0.65); }
.vp-footer small strong { color: #fff; font-weight: 700; }

.pmt-voucher-code {
  display: inline-block;
  padding: 12px 22px;
  margin: 8px 0;
  background: rgba(58,207,114,0.12);
  border: 2px dashed #3acf72;
  border-radius: 10px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3acf72;
  user-select: all;
}

/* ===== PLAYCARD BALANCE HINT (on /playcard) ===== */
.pc-quicklinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .pc-quicklinks { grid-template-columns: 1fr; }
}
.pc-quicklinks .pc-balance-hint { padding: 22px 20px; }
.pc-quicklinks .pc-hint-text h3 { font-size: 1rem; }
.pc-quicklinks .pc-hint-text p { font-size: 0.85rem; }
.pc-balance-hint {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  background: linear-gradient(90deg, rgba(141,59,141,0.14), rgba(232,67,147,0.06));
  border: 1px solid rgba(141,59,141,0.25);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}
.pc-balance-hint:hover { border-color: #B56DB5; transform: translateY(-2px); }
.pc-topup-hint {
  background: linear-gradient(90deg, rgba(58,207,114,0.14), rgba(255,193,7,0.06));
  border-color: rgba(58,207,114,0.3);
}
.pc-topup-hint:hover { border-color: #3acf72; }
.pc-topup-hint .pc-hint-arrow { color: #3acf72; }

.pc-voucher-hint {
  background: linear-gradient(90deg, rgba(255,193,7,0.14), rgba(232,67,147,0.08));
  border-color: rgba(255,193,7,0.3);
}
.pc-voucher-hint:hover { border-color: #ffc107; }
.pc-voucher-hint .pc-hint-arrow { color: #ffc107; }
.pc-hint-icon { font-size: 2.4rem; flex-shrink: 0; }
.pc-hint-text { flex: 1; }
.pc-hint-text h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 0 4px; }
.pc-hint-text p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }
.pc-hint-arrow { font-size: 1.6rem; color: #B56DB5; font-weight: 700; }

.pc-balance-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 32px auto 0;
}
.pc-info-card {
  padding: 20px;
  background: rgba(26,21,32,0.6);
  border: 1px solid rgba(141,59,141,0.15);
  border-radius: 14px;
}
.pc-info-icon { font-size: 1.6rem; margin-bottom: 8px; }
.pc-info-card h3, .pc-info-card h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin: 0 0 6px; }
.pc-info-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }
.pc-info-card a { color: #D494D4; }

/* ===== PLAYCARD BALANCE ===== */
.pc-balance {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(141,59,141,0.12), rgba(232,67,147,0.06));
  border: 1px solid rgba(141,59,141,0.2);
  border-radius: 20px;
}
.pc-balance h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.pc-balance > p { color: var(--text-secondary); margin-bottom: 20px; }
.pc-balance form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pc-balance input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  background: rgba(10,10,15,0.5);
  border: 1px solid rgba(141,59,141,0.25);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.pc-balance input:focus { outline: none; border-color: #B56DB5; }
.pc-hint { color: var(--text-secondary); font-size: 0.8rem; margin-top: 14px; }
.pc-result {
  margin-top: 18px;
  min-height: 0;
  transition: all 0.3s;
}
.pc-result.loading { color: var(--text-secondary); display: flex; align-items: center; gap: 10px; padding: 10px; }
.pc-result.error {
  padding: 14px 18px;
  background: rgba(232,67,147,0.12);
  border: 1px solid rgba(232,67,147,0.3);
  border-radius: 10px;
  color: #e84393;
  font-weight: 600;
}
.pc-result.success { padding: 0; }
.pc-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(181,109,181,0.25);
  border-top-color: #B56DB5;
  border-radius: 50%;
  animation: pcSpin 0.8s linear infinite;
}
@keyframes pcSpin { to { transform: rotate(360deg); } }
.pc-card {
  padding: 24px;
  background: rgba(10,10,15,0.45);
  border: 1px solid rgba(58,207,114,0.3);
  border-radius: 16px;
}
.pc-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.pc-card-total {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.pc-card-total strong {
  font-size: 3rem;
  font-weight: 900;
  color: #3acf72;
  font-variant-numeric: tabular-nums;
}
.pc-card-total span {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-left: 6px;
}
.pc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(141,59,141,0.1);
}
.pc-card-grid.two { grid-template-columns: repeat(2, 1fr); }
.pc-card-grid > div {
  text-align: center;
  padding: 12px;
  background: rgba(141,59,141,0.08);
  border-radius: 10px;
}
.pc-card-grid .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.pc-card-grid .lbl {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ===== MODERN LOCATION PAGE ===== */
.loc-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
  overflow: hidden;
}
.loc-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.05);
}
.loc-hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.4) 0%, rgba(10,10,15,0.75) 60%, #0a0a0f 100%),
              radial-gradient(circle at 30% 50%, rgba(141,59,141,0.4), transparent 60%);
}
.loc-hero-content { position: relative; z-index: 2; max-width: 900px; }
.loc-hero-meta {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.loc-hero-meta a { color: rgba(255,255,255,0.7); text-decoration: none; }
.loc-hero-meta a:hover { color: #fff; }
.loc-hero-type {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(181,109,181,0.2);
  border: 1px solid rgba(181,109,181,0.4);
  color: #D494D4;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.loc-hero-type.type-flagship { background: rgba(232,67,147,0.18); border-color: rgba(232,67,147,0.4); color: #e84393; }
.loc-hero-type.type-express { background: rgba(58,207,114,0.18); border-color: rgba(58,207,114,0.4); color: #3acf72; }
.loc-hero-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.loc-hero-address {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 26px;
}
.loc-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* =====================================================================
   Einheitlicher Karten-Stil für die rechte Side-Stack-Spalte
   (Adresse, Kontakt, Features, Anfahrt, Parken)
   - Akzent-Leiste oben in karten-spezifischer Farbe
   - Icon-Bubble im Header in derselben Tönung
   - Hover hebt Karte mit passendem farbigem Schatten an
   ===================================================================== */
.loc-card-info,
.loc-card-features {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.loc-card-info::before,
.loc-card-features::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  opacity: 0.65;
  /* default: lila Cosmos-Tonalität */
  background: linear-gradient(90deg, #8d3b8d, #d494d4);
}
.loc-card-info:hover,
.loc-card-features:hover {
  transform: translateY(-2px);
  border-color: rgba(212,148,212,0.35);
  box-shadow: 0 8px 24px rgba(141,59,141,0.18);
}

.loc-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.loc-card-icon-bubble {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(141,59,141,0.25), rgba(212,148,212,0.12));
  border: 1px solid rgba(212,148,212,0.25);
  box-shadow: inset 0 0 12px rgba(212,148,212,0.1);
  flex: 0 0 auto;
}
.loc-card-head .loc-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* --- Adresse (cyan/blue) --- */
.loc-card-adresse::before          { background: linear-gradient(90deg, #38bdf8, #93e7ff); }
.loc-card-adresse .loc-card-icon-bubble {
  background: linear-gradient(135deg, rgba(56,189,248,0.22), rgba(147,231,255,0.1));
  border-color: rgba(56,189,248,0.3);
  box-shadow: inset 0 0 12px rgba(56,189,248,0.12);
}
.loc-card-adresse:hover            { border-color: rgba(56,189,248,0.35); box-shadow: 0 8px 24px rgba(56,189,248,0.18); }

/* --- Kontakt (pink/magenta) --- */
.loc-card-kontakt::before          { background: linear-gradient(90deg, #e84393, #ffaecf); }
.loc-card-kontakt .loc-card-icon-bubble {
  background: linear-gradient(135deg, rgba(232,67,147,0.22), rgba(255,174,207,0.1));
  border-color: rgba(232,67,147,0.3);
  box-shadow: inset 0 0 12px rgba(232,67,147,0.12);
}
.loc-card-kontakt:hover            { border-color: rgba(232,67,147,0.35); box-shadow: 0 8px 24px rgba(232,67,147,0.18); }

/* --- Features (gold/amber) --- */
.loc-card-features::before         { background: linear-gradient(90deg, #f59e0b, #fcd34d); }
.loc-card-features .loc-card-icon-bubble {
  background: linear-gradient(135deg, rgba(245,158,11,0.22), rgba(252,211,77,0.1));
  border-color: rgba(245,158,11,0.3);
  box-shadow: inset 0 0 12px rgba(245,158,11,0.12);
}
.loc-card-features:hover           { border-color: rgba(245,158,11,0.35); box-shadow: 0 8px 24px rgba(245,158,11,0.18); }

/* --- Anfahrt (lila Cosmos) --- */
.loc-card-anfahrt::before          { background: linear-gradient(90deg, #8d3b8d, #d494d4); }
.loc-card-anfahrt .loc-card-icon-bubble {
  background: linear-gradient(135deg, rgba(141,59,141,0.25), rgba(212,148,212,0.12));
  border-color: rgba(212,148,212,0.25);
  box-shadow: inset 0 0 12px rgba(212,148,212,0.1);
}
.loc-card-anfahrt:hover            { border-color: rgba(212,148,212,0.35); box-shadow: 0 8px 24px rgba(141,59,141,0.18); }

/* --- Parken (grün) --- */
.loc-card-parken::before           { background: linear-gradient(90deg, #3acf72, #b4f0c7); }
.loc-card-parken .loc-card-icon-bubble {
  background: linear-gradient(135deg, rgba(58,207,114,0.22), rgba(180,240,199,0.1));
  border-color: rgba(58,207,114,0.3);
  box-shadow: inset 0 0 12px rgba(58,207,114,0.1);
}
.loc-card-parken:hover             { border-color: rgba(58,207,114,0.35); box-shadow: 0 8px 24px rgba(58,207,114,0.18); }

/* ===== Strukturierte Info-Zeilen ===== */
.loc-info-block { display: flex; flex-direction: column; gap: 6px; }
.loc-info-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 4px 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
}
.loc-info-emoji {
  font-size: 1.05rem;
  line-height: 1.4;
  text-align: center;
}
.loc-info-bullet .loc-info-emoji {
  color: #d494d4;
  font-weight: 700;
}
.loc-info-text { color: rgba(255,255,255,0.88); }
.loc-info-line {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.loc-info-gap { height: 6px; }

.loc-info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 14px;
  background: rgba(141,59,141,0.18);
  border: 1px solid rgba(212,148,212,0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #d494d4;
  text-decoration: none;
  transition: 0.18s;
}
.loc-info-link:hover {
  background: rgba(141,59,141,0.32);
  color: #fff;
  transform: translateX(2px);
}

/* ===== NOTICE BOX (z.B. U3-Sperrung, in der Anfahrt-Karte) ===== */
.loc-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,193,7,0.22), rgba(255,87,34,0.08));
  border: 1px solid rgba(255,193,7,0.5);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.loc-notice::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #ffd54f, #ff9800);
}
.loc-notice-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex: 0 0 auto;
  animation: locNoticePulse 2.2s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255,193,7,0.5));
}
@keyframes locNoticePulse {
  0%,100% { transform: scale(1);    opacity: 1; }
  50%     { transform: scale(1.08); opacity: 0.85; }
}
.loc-notice-body { flex: 1 1 auto; min-width: 0; }
.loc-notice-title {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffd54f;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.loc-notice-range {
  display: inline-block;
  font-size: 0.78rem;
  color: rgba(255,213,79,0.78);
  background: rgba(255,193,7,0.12);
  padding: 1px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.loc-notice-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin: 0;
}

/* ===== Disclaimer-Footnote (* Alle Angaben ohne Gewähr) ===== */
.loc-card-disclaimer {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.42);
  font-style: italic;
  text-align: center;
}

/* ===== STATUS & HOURS SECTION ===== */
.loc-status-section { padding: 60px 0 30px; }
.loc-status-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .loc-status-grid { grid-template-columns: 1fr; } }

.loc-card {
  background: linear-gradient(135deg, rgba(26,21,32,0.95), rgba(26,21,32,0.7));
  border: 1px solid rgba(141,59,141,0.18);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
}
.loc-card-hours { padding: 32px; }

.loc-status-head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(141,59,141,0.12);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.loc-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
}
.loc-status-pill .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  animation: locPulse 2s ease-in-out infinite;
}
.loc-status-pill.is-open { background: rgba(58,207,114,0.15); color: #3acf72; }
.loc-status-pill.is-open .dot { background: #3acf72; box-shadow: 0 0 12px #3acf72; }
.loc-status-pill.is-closed { background: rgba(232,67,147,0.15); color: #e84393; }
.loc-status-pill.is-closed .dot { background: #e84393; box-shadow: 0 0 8px #e84393; }
@keyframes locPulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.loc-status-sub { color: var(--text-secondary); font-size: 0.95rem; }
.loc-status-sub strong { color: #fff; }

.loc-vacation-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, rgba(255,193,7,0.12), rgba(141,59,141,0.08));
  border: 1px solid rgba(255,193,7,0.3);
  border-radius: 14px;
  font-size: 0.92rem;
}
.loc-vacation-banner .star {
  font-size: 1.4rem;
  color: #ffc107;
  line-height: 1;
}
.loc-vacation-banner strong { color: #ffd54f; }
.loc-vacation-banner .vac-name { opacity: 0.75; font-weight: 500; }
.loc-vacation-banner small { color: var(--text-secondary); }

.vacation-footnote {
  margin-top: 12px;
  padding: 10px 14px;
  border-left: 3px solid #ffc107;
  background: rgba(255,193,7,0.05);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.vacation-footnote .star { color: #ffc107; }

.loc-side-stack { display: flex; flex-direction: column; gap: 16px; }
.loc-card-info { padding: 22px; }
.loc-card-info .loc-card-icon { font-size: 1.5rem; margin-bottom: 8px; }
.loc-card-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: #fff; }
.loc-card-info p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.5; }
.loc-card-info a { color: #D494D4; text-decoration: none; }
.loc-card-info a:hover { color: #fff; }

.loc-card-features ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
}
.loc-card-features li {
  font-size: 0.82rem;
  padding: 5px 12px;
  background: rgba(141,59,141,0.12);
  border-radius: 999px;
  color: var(--text-secondary);
}

/* ===== TIMELINE FOR SPECIALS + VACATIONS ===== */
.loc-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loc-timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  background: rgba(26,21,32,0.5);
  border-left: 3px solid rgba(141,59,141,0.3);
  border-radius: 0 12px 12px 0;
  transition: 0.2s;
}
.loc-timeline-item:hover { border-left-color: #B56DB5; }
.loc-timeline-item.vacation { border-left-color: #ffc107; }
.loc-timeline-item.special { border-left-color: #e84393; }
.loc-timeline-item.is-now {
  background: linear-gradient(90deg, rgba(58,207,114,0.1), rgba(26,21,32,0.5));
  border-left-color: #3acf72;
}
.loc-tl-date strong { font-size: 1.05rem; color: #fff; font-variant-numeric: tabular-nums; }
.loc-tl-date small { font-size: 0.85rem; color: var(--text-secondary); }
.loc-tl-label { font-weight: 600; color: #fff; margin-bottom: 4px; }
.loc-tl-mode { display: flex; gap: 6px; flex-wrap: wrap; }
.badge-closed { background: rgba(232,67,147,0.18); color: #e84393; padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; }
.badge-open { background: rgba(58,207,114,0.18); color: #3acf72; padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; }
.badge-info { background: rgba(141,59,141,0.18); color: #D494D4; padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; }
.badge-now { background: rgba(58,207,114,0.28); color: #fff; padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; }

/* ===== EVENTS GRID ===== */
.loc-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.loc-event-card {
  padding: 22px;
  background: linear-gradient(135deg, rgba(26,21,32,0.9), rgba(141,59,141,0.08));
  border: 1px solid rgba(141,59,141,0.15);
  border-radius: 16px;
}
.loc-event-icon { font-size: 1.8rem; margin-bottom: 8px; }
.loc-event-card h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.loc-event-meta { font-size: 0.85rem; color: #D494D4; margin-bottom: 8px; }
.loc-event-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }

/* ===== MAP ===== */
.loc-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(141,59,141,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ===== CTA ===== */
.loc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(141,59,141,0.18), rgba(232,67,147,0.12));
  border: 1px solid rgba(141,59,141,0.25);
  border-radius: 20px;
  flex-wrap: wrap;
}
.loc-cta h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.loc-cta p { color: var(--text-secondary); }

.week-hours {
  list-style: none;
  margin: 14px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(141,59,141,0.08);
  font-size: 0.9rem;
}
.week-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--text-secondary);
}
.week-hours li .day {
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.week-hours li .time {
  font-variant-numeric: tabular-nums;
}
.week-hours li.today {
  background: rgba(181,109,181,0.12);
  color: #fff;
}
.week-hours li.today .day,
.week-hours li.today .time {
  color: #D494D4;
  font-weight: 700;
}
.week-hours li.is-closed .time {
  opacity: 0.55;
  font-style: italic;
}

/* Pro-Tag Hinweis (z.B. „Bei geringer Auslastung ggf. früher Feierabend") */
.week-hours li.has-note {
  flex-wrap: wrap;
  row-gap: 0;
  align-items: flex-start;
  padding-bottom: 8px;
}
.week-hours li.has-note .day-note {
  flex: 1 1 100%;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  color: rgba(212,148,212,0.75);
  font-style: italic;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.week-hours li.today.has-note .day-note {
  color: rgba(255,213,79,0.82);
}

/* Allgemeiner Öffnungszeiten-Hinweis (Footnote unter der Wochen-Übersicht) */
.hours-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 0;
  padding: 10px 14px;
  background: rgba(212,148,212,0.08);
  border-left: 3px solid rgba(212,148,212,0.45);
  border-radius: 0 10px 10px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.hours-note-icon {
  font-size: 1rem;
  flex: 0 0 auto;
  line-height: 1.4;
}

.specials {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(141,59,141,0.08);
}
.specials-title {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.special-row.is-now {
  background: rgba(58,207,114,0.1);
  border-radius: 8px;
  padding: 6px 10px;
}
.special-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 4px 0;
}
.special-row span:first-child {
  font-weight: 600;
  color: var(--text-primary);
  min-width: 50px;
}

/* Location pills */
.loc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.loc-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid rgba(141, 59, 141, 0.12);
  border-radius: 12px;
  padding: 14px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.3s;
}

.loc-pill:hover {
  border-color: var(--cosmos);
  color: #fff;
  transform: translateY(-2px);
}

.loc-pill .pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cosmos-light);
}

/* Other games grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.game-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid rgba(141, 59, 141, 0.08);
  border-radius: 16px;
  padding: 20px 16px;
  text-decoration: none;
  transition: 0.3s;
}

.game-link:hover {
  border-color: var(--cosmos);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.game-link img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--bg-card-hover);
}

.game-link span {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.game-link:hover span {
  color: #fff;
}

/* CTA bar */
.sub-cta {
  background: linear-gradient(135deg, rgba(141, 59, 141, 0.12), rgba(141, 59, 141, 0.04));
  border: 1px solid rgba(141, 59, 141, 0.15);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 20px 0 40px;
}

.sub-cta h2,
.sub-cta h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 0;
}

.sub-cta p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Footer */
.sub-footer {
  border-top: 1px solid rgba(141, 59, 141, 0.08);
  padding: 32px 24px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.sub-footer a {
  color: var(--cosmos-light);
  text-decoration: none;
}

.sub-footer a:hover {
  color: #fff;
}

/* Reveal animation */
.reveal-sub {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-sub.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ LEGAL / TEXT PAGES ============ */
.sub-section h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text-primary);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(141, 59, 141, 0.12);
}

.sub-section h2:first-child {
  margin-top: 0;
}

.sub-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--cosmos-light);
}

.sub-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.sub-section p a {
  color: var(--cosmos-light);
  text-decoration: none;
  transition: 0.2s;
}

.sub-section p a:hover {
  color: #fff;
  text-decoration: underline;
}

.sub-section ul,
.sub-section ol {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 24px;
}

.sub-section ul li,
.sub-section ol li {
  margin-bottom: 8px;
}

.sub-section ul li strong,
.sub-section ol li strong {
  color: var(--text-primary);
}

.sub-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(141, 59, 141, 0.12);
}

.sub-section table th {
  background: rgba(141, 59, 141, 0.1);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--cosmos-lighter);
  border-bottom: 1px solid rgba(141, 59, 141, 0.15);
}

.sub-section table td {
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(141, 59, 141, 0.06);
}

.sub-section table tr:hover td {
  background: rgba(141, 59, 141, 0.04);
}

.sub-section em {
  color: var(--text-secondary);
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .sub-hero-content { flex-direction: column; text-align: center; }
  .sub-hero-img { width: 240px; height: 240px; order: -1; }
  .sub-desc { margin-left: auto; margin-right: auto; }
  .sub-actions { justify-content: center; }
  .sub-breadcrumb { justify-content: center; }
  .info-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-cta { flex-direction: column; text-align: center; }
  .sub-nav-links { gap: 12px; }
  .sub-nav-links a { font-size: 0.8rem; }
}

/* Payment "Bitte warten" indicator */
.pmt-waiting {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(180deg, rgba(141,59,141,0.12), rgba(20,20,30,0.6));
  border: 1px solid rgba(212,148,212,0.25);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.pmt-waiting::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(212,148,212,0.18), transparent 60%);
  pointer-events: none;
}
.pmt-waiting-orb {
  width: 140px; height: 140px;
  margin: 0 auto 30px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.pmt-orb-ring, .pmt-orb-ring-2 {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #d494d4;
  border-right-color: rgba(255,213,79,0.6);
  animation: pmtSpin 1.4s linear infinite;
}
.pmt-orb-ring-2 {
  inset: 14px;
  border-top-color: rgba(255,213,79,0.8);
  border-right-color: rgba(212,148,212,0.4);
  animation-duration: 2.1s;
  animation-direction: reverse;
}
.pmt-orb-core {
  font-size: 3rem;
  filter: drop-shadow(0 0 12px rgba(212,148,212,0.6));
  animation: pmtPulse 1.6s ease-in-out infinite;
}
@keyframes pmtSpin { to { transform: rotate(360deg); } }
@keyframes pmtPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.pmt-waiting-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: 2rem;
  margin: 0 0 14px;
  background: linear-gradient(135deg, #fff 0%, #d494d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.pmt-waiting-sub {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0 0 8px;
  position: relative;
}
.pmt-waiting-hint {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 24px;
  position: relative;
}
.pmt-waiting-dots {
  display: inline-flex;
  gap: 8px;
  position: relative;
}
.pmt-waiting-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d494d4, #ffd54f);
  animation: pmtDot 1.4s ease-in-out infinite;
}
.pmt-waiting-dots span:nth-child(2) { animation-delay: 0.2s; }
.pmt-waiting-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes pmtDot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* ===== Payment Success ===== */
.pmt-success {
  background: linear-gradient(180deg, rgba(141,59,141,0.10), rgba(20,20,30,0.7));
  border: 1px solid rgba(212,148,212,0.22);
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}
.pmt-success::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -10%, rgba(58,207,114,0.18), transparent 55%);
  pointer-events: none;
}
.pmt-success-hero {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}
.pmt-check {
  width: 90px; height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3acf72 0%, #16a34a 100%);
  box-shadow: 0 0 40px rgba(58,207,114,0.5), inset 0 -6px 12px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  animation: pmtCheckPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pmt-check span {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
@keyframes pmtCheckPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.pmt-success-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: 2.2rem;
  margin: 0 0 14px;
  background: linear-gradient(135deg, #fff 0%, #d494d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pmt-success-amount {
  font-size: 1.8rem;
  margin: 0;
  color: var(--text-primary);
}
.pmt-success-amount strong {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: 2.6rem;
  color: var(--gold, #ffd54f);
  margin-right: 6px;
}
.pmt-success-amount span {
  color: var(--text-secondary);
  font-size: 1.3rem;
}

.pmt-voucher-preview {
  margin: 30px auto;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,213,79,0.2);
  transition: transform 0.3s ease;
  position: relative;
}
.pmt-voucher-preview:hover { transform: translateY(-4px); }
.pmt-voucher-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.pmt-code-row {
  display: flex; gap: 12px; align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(58,207,114,0.08);
  border: 1px dashed rgba(58,207,114,0.4);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 20px 0;
}
.pmt-code-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}
.pmt-code-val {
  font-family: 'Courier New', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: #3acf72;
  letter-spacing: 0.08em;
}

.pmt-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 24px 0 12px;
}
.pmt-actions-grid .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.pmt-email-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 16px 0 0;
}

.pmt-topup {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
  margin: 24px 0;
}
.pmt-topup-card {
  margin: 0 0 14px;
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .pmt-success { padding: 36px 22px; }
  .pmt-success-title { font-size: 1.7rem; }
  .pmt-success-amount strong { font-size: 2.1rem; }
  .pmt-actions-grid { grid-template-columns: 1fr; }
}

/* ===== Booking funnel ===== */
.booking-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.booking-steps {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.booking-step {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(141,59,141,0.2);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.booking-step span {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(141,59,141,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.booking-step.active {
  background: linear-gradient(135deg, rgba(141,59,141,0.25), rgba(232,67,147,0.15));
  border-color: rgba(212,148,212,0.5);
  color: var(--text-primary);
}
.booking-step.active span {
  background: linear-gradient(135deg, #8d3b8d, #e84393);
  color: #fff;
}
.booking-step.done {
  background: rgba(58,207,114,0.1);
  border-color: rgba(58,207,114,0.3);
  color: #3acf72;
}
.booking-step.done span {
  background: #3acf72;
  color: #fff;
}
.booking-step.done span::before { content: '✓'; }
.booking-step.done span:not(:empty)::before { content: ''; }

.booking-panel {
  background: linear-gradient(180deg, rgba(141,59,141,0.08), rgba(20,20,30,0.6));
  border: 1px solid rgba(212,148,212,0.18);
  border-radius: 20px;
  padding: 36px 30px;
}
.booking-panel h2 {
  font-family: 'Orbitron', 'Inter', sans-serif;
  margin: 0 0 8px;
}
.booking-sub {
  color: var(--text-secondary);
  margin: 0 0 24px;
}
.booking-panel input[type="date"],
.booking-panel input[type="text"],
.booking-panel input[type="email"],
.booking-panel input[type="tel"],
.booking-panel input[type="number"],
.booking-panel textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(15,12,25,0.6);
  border: 1px solid rgba(141,59,141,0.3);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
}
.booking-panel input:focus, .booking-panel textarea:focus {
  outline: none;
  border-color: #d494d4;
  box-shadow: 0 0 0 3px rgba(212,148,212,0.18);
}
.booking-panel .form-group { margin-bottom: 16px; }
.booking-panel .form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin: 18px 0 24px;
}
.booking-slot {
  padding: 14px 12px;
  background: rgba(141,59,141,0.08);
  border: 1px solid rgba(141,59,141,0.3);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.15s;
}
.booking-slot:hover { border-color: #d494d4; background: rgba(212,148,212,0.15); }
.booking-slot.selected {
  background: linear-gradient(135deg, #8d3b8d, #e84393);
  border-color: transparent;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(141,59,141,0.4);
}
.booking-slot.disabled, .booking-slot:disabled {
  opacity: 0.35; cursor: not-allowed;
  text-decoration: line-through;
}
.booking-loading, .booking-error, .booking-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 20px;
  color: var(--text-secondary);
}
.booking-error { color: #ff7b7b; }

.booking-pcount {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.pc-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(141,59,141,0.18);
  border: 1px solid rgba(212,148,212,0.4);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.pc-btn:hover { background: rgba(212,148,212,0.28); transform: scale(1.05); }
#bookingParticipants {
  width: 100px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
}

.booking-price-preview {
  background: rgba(255,213,79,0.08);
  border: 1px dashed rgba(255,213,79,0.35);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 18px 0 24px;
}
.pp-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--text-primary);
}
.pp-row.alt { color: #ffd54f; font-weight: 700; border-top: 1px solid rgba(255,213,79,0.2); padding-top: 10px; margin-top: 4px; }
.pp-row strong { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; }

.booking-summary {
  background: rgba(15,12,25,0.5);
  border: 1px solid rgba(212,148,212,0.22);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 18px 0 24px;
}
.bs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-primary);
}
.bs-row:last-child { border-bottom: none; }
.bs-row.highlight {
  font-size: 1.1rem;
  color: #ffd54f;
}
.bs-row.highlight strong { color: #ffd54f; font-family: 'Orbitron', sans-serif; font-size: 1.3rem; }
.bs-row.small { font-size: 0.88rem; color: var(--text-secondary); }
.bs-row strong { font-weight: 700; }

.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 12px;
}
.booking-tos {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 14px;
  text-align: center;
}

.booking-card { padding-top: 28px; }
.booking-card-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(141,59,141,0.25);
}
.booking-card-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.booking-card-meta div { display: flex; flex-direction: column; gap: 2px; }
.booking-card-meta strong {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.booking-card-meta span { font-size: 0.72rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.06em; }

@media (max-width: 600px) {
  .booking-steps { gap: 4px; }
  .booking-step { padding: 6px 10px; font-size: 0.72rem; }
  .booking-step span { width: 18px; height: 18px; font-size: 0.7rem; }
  .booking-panel { padding: 24px 18px; border-radius: 16px; }
  .booking-panel h2 { font-size: 1.4rem; }
  .booking-nav { flex-direction: column-reverse; gap: 10px; }
  .booking-nav .btn { width: 100%; justify-content: center; }
  .booking-slots { grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: 8px; }
  .booking-slot { padding: 12px 8px; font-size: 0.95rem; }
  .booking-pcount { gap: 10px; }
  .pc-btn { width: 48px; height: 48px; font-size: 1.4rem; }
  #bookingParticipants { width: 80px; font-size: 1.7rem; }
  .booking-loc-grid { grid-template-columns: 1fr; gap: 10px; }
  .booking-loc-card { padding: 16px 16px 14px 46px; }
  .booking-loc-card .bl-name { font-size: 0.95rem; }
  .booking-loc-card .bl-addr { font-size: 0.78rem; }
  .booking-summary { padding: 16px 18px; }
  .bs-row { padding: 10px 0; font-size: 0.92rem; }
  .bs-row.highlight strong { font-size: 1.1rem; }
  .booking-gdpr { padding: 16px; }
  .bg-checkbox { font-size: 0.86rem; }
  .booking-lookup { padding: 24px 20px; }
  .bl-head { flex-direction: column; gap: 10px; }
  .bl-head h3 { font-size: 1.1rem; }
}

/* Step labels: italic by default */
.booking-step em { font-style: normal; }

/* Hide step labels on tiny screens, keep only the number; show label only on active step */
@media (max-width: 420px) {
  .booking-step { padding: 6px 8px; }
  .booking-step em { display: none; }
  .booking-step.active { padding: 6px 14px; }
  .booking-step.active em { display: inline; font-size: 0.7rem; }
}

/* Booking panel select — match topup-card-input styling */
.booking-panel select {
  width: 100%;
  padding: 16px 48px 16px 20px;
  background-color: rgba(10,10,15,0.6);
  border: 1px solid rgba(141,59,141,0.3);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'><path d='M1 1l6 6 6-6' stroke='%23d494d4' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px 8px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.booking-panel select:hover {
  border-color: rgba(212,148,212,0.55);
  background-color: rgba(141,59,141,0.12);
}
.booking-panel select:focus {
  outline: none;
  border-color: #d494d4;
  box-shadow: 0 0 0 3px rgba(212,148,212,0.2);
}
.booking-panel select option {
  background: #1a1520;
  color: #fff;
  padding: 10px;
}

/* Booking step 1: location picker as radio cards */
.booking-loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.booking-loc-card {
  position: relative;
  display: flex; flex-direction: column;
  gap: 4px;
  padding: 18px 18px 16px 50px;
  background: rgba(10,10,15,0.55);
  border: 1px solid rgba(141,59,141,0.28);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.15s;
}
.booking-loc-card input[type="radio"] {
  position: absolute;
  left: 18px; top: 18px;
  accent-color: #d494d4;
  width: 18px; height: 18px;
}
.booking-loc-card .bl-icon {
  position: absolute;
  right: 14px; top: 12px;
  font-size: 1.1rem;
  opacity: 0.4;
}
.booking-loc-card .bl-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}
.booking-loc-card .bl-addr {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.booking-loc-card:hover {
  border-color: rgba(212,148,212,0.55);
  background: rgba(141,59,141,0.12);
  transform: translateY(-2px);
}
.booking-loc-card:has(input:checked) {
  background: linear-gradient(135deg, rgba(141,59,141,0.22), rgba(232,67,147,0.12));
  border-color: #d494d4;
  box-shadow: 0 8px 24px rgba(141,59,141,0.28);
}
.booking-loc-card:has(input:checked) .bl-icon {
  opacity: 1;
}

/* Slot button — "10:00 Uhr" with small Uhr label */
.booking-slot { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
.booking-slot small {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  font-weight: 500;
  margin-top: 2px;
}
.booking-slot.selected small { opacity: 0.9; }

/* Booking lookup card */
.booking-lookup {
  max-width: 580px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(141,59,141,0.08), rgba(20,20,30,0.55));
  border: 1px solid rgba(212,148,212,0.2);
  border-radius: 20px;
  padding: 30px 28px;
}
.bl-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.bl-head .bl-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 8px rgba(212,148,212,0.4));
}
.bl-head h3 {
  font-family: 'Orbitron', 'Inter', sans-serif;
  margin: 0 0 6px;
  font-size: 1.25rem;
}
.bl-head p { margin: 0; color: var(--text-secondary); font-size: 0.92rem; }

.bl-form input[type="text"], .bl-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10,10,15,0.6);
  border: 1px solid rgba(141,59,141,0.3);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: 0.03em;
}
.bl-form input:focus {
  outline: none;
  border-color: #d494d4;
  box-shadow: 0 0 0 3px rgba(212,148,212,0.18);
}
.bl-form input[name="number"] {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.bl-form .form-group { margin-bottom: 14px; }
.bl-form .form-group label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.bl-error {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255,123,123,0.1);
  border: 1px solid rgba(255,123,123,0.3);
  border-radius: 8px;
  color: #ff7b7b;
  font-size: 0.9rem;
}

/* ===== Generic Cosmos Modal ===== */
.cosmos-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.cosmos-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cosmos-modal[hidden] { display: none !important; }
.cm-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 6, 14, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cm-dialog {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: linear-gradient(180deg, #1a1228 0%, #110a1c 100%);
  border: 1px solid rgba(212,148,212,0.32);
  border-radius: 22px;
  padding: 36px 32px 28px;
  text-align: center;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,213,79,0.08);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cosmos-modal.is-open .cm-dialog {
  transform: translateY(0) scale(1);
}
.cm-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s;
}
.cm-close:hover { background: rgba(255,255,255,0.14); transform: rotate(90deg); }
.cm-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  background: linear-gradient(135deg, rgba(141,59,141,0.3), rgba(232,67,147,0.18));
  box-shadow: 0 0 30px rgba(212,148,212,0.3);
}
.cm-icon-warn {
  background: linear-gradient(135deg, rgba(255,213,79,0.3), rgba(255,123,123,0.18));
  box-shadow: 0 0 30px rgba(255,213,79,0.35);
}
.cm-icon-ok {
  background: linear-gradient(135deg, rgba(58,207,114,0.32), rgba(22,150,80,0.18));
  box-shadow: 0 0 30px rgba(58,207,114,0.35);
}
.cm-dialog h2 {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: #fff;
}
.cm-sub {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 22px;
}
.cm-field {
  text-align: left;
  margin-bottom: 22px;
}
.cm-field label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.cm-field textarea, .cm-field input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(10,8,16,0.7);
  border: 1px solid rgba(141,59,141,0.35);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}
.cm-field textarea:focus, .cm-field input:focus {
  outline: none;
  border-color: #d494d4;
  box-shadow: 0 0 0 3px rgba(212,148,212,0.18);
}
.cm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cm-actions .btn { min-width: 130px; }
.cm-state {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.cm-state-error {
  background: rgba(255,123,123,0.12);
  border: 1px solid rgba(255,123,123,0.32);
  color: #ff7b7b;
}
.cm-state-ok {
  background: rgba(58,207,114,0.12);
  border: 1px solid rgba(58,207,114,0.32);
  color: #3acf72;
}
@media (max-width: 520px) {
  .cm-dialog { padding: 30px 22px 24px; }
  .cm-actions .btn { width: 100%; min-width: 0; }
  .cm-actions { flex-direction: column-reverse; }
}

/* Booking GDPR/AGB consent */
.booking-gdpr {
  background: rgba(15,12,25,0.45);
  border: 1px solid rgba(141,59,141,0.22);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 22px 0 24px;
}
.bg-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 6px 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-primary);
}
.bg-checkbox + .bg-checkbox { margin-top: 4px; }
.bg-checkbox input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #d494d4;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.bg-checkbox a { color: #d494d4; text-decoration: underline; }
.bg-checkbox a:hover { color: #fff; }
.bg-info {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(212,148,212,0.18);
}
.bg-info a { color: #d494d4; }

/* Status page: customer data block title */
.bs-block-title {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: 1.1rem;
  margin: 28px 0 12px;
  color: var(--text-primary);
}

/* Expiry countdown highlight */
[data-expires-at] { font-variant-numeric: tabular-nums; color: #ffd54f; }
[data-expires-at].is-expired { color: #ff7b7b; }

/* ===== GOOGLE MAPS CONSENT (DSGVO) =====
   Verwendet auf /standort/* und /stadt/* — wird vom JS in location.php / city.php
   per Klick durch ein echtes <iframe> ersetzt. */
.loc-map { position: relative; min-height: 420px; border-radius: 12px; overflow: hidden }
.map-consent { position: relative; height: 420px; width: 100%; display: flex; align-items: center; justify-content: center }
.map-consent-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(141,59,141,0.25), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(75,30,130,0.2), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 30px),
    #0e0915;
}
.map-consent-card {
  position: relative; z-index: 2;
  max-width: 520px; width: calc(100% - 32px);
  padding: 28px 26px;
  background: rgba(15,15,22,0.88);
  border: 1px solid rgba(141,59,141,0.3);
  border-radius: 14px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.map-consent-icon { font-size: 2.6rem; margin-bottom: 8px }
.map-consent-card h3 { margin: 0 0 10px; font-size: 1.25rem }
.map-consent-card p { font-size: 0.92rem; line-height: 1.5; opacity: 0.85; margin: 0 0 10px }
.map-consent-actions { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; margin-top: 16px }
.map-consent-remember { font-size: 0.82rem; opacity: 0.75; display: inline-flex; align-items: center; gap: 6px; cursor: pointer }
.map-consent-remember input { accent-color: #b56db5 }
.map-consent-fallback { display: inline-block; margin-top: 14px; font-size: 0.85rem; color: #b56db5; text-decoration: none }
.map-consent-fallback:hover { text-decoration: underline }
.loc-map iframe { width: 100%; height: 420px; border: 0; display: block }

/* ===== Legal / Accessibility / Imprint-Page Styling ===== */
.narrow-container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.page-header { margin: 30px 0 40px; }
.page-header h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 12px; color: #fff; }
.page-header .lead { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.6; }
.legal-content h2 {
  margin: 36px 0 14px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #D494D4;
  letter-spacing: 0.01em;
}
.legal-content p, .legal-content li {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}
.legal-content ul { padding-left: 24px; margin: 14px 0 18px; }
.legal-content li { margin-bottom: 10px; }
.legal-content a { color: #D494D4; text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: #fff; }
.legal-content strong { color: #fff; }
.legal-content code { background: rgba(255,255,255,0.06); padding: 1px 6px; border-radius: 4px; font-size: 0.9em; }
.legal-footnote {
  margin-top: 40px !important;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.55) !important;
  font-style: italic;
}
