/* Basis */
.ls {
  padding: 56px 0;
  font-size: 16px;
  line-height: 1.6;
}

/* Make all text elements bigger */
.ls p {
  font-size: 16px;
  line-height: 1.6;
}

.ls span {
  font-size: inherit;
}

.ls a {
  font-size: inherit;
}

.ls li {
  font-size: 16px;
  line-height: 1.6;
}

.glass {
  backdrop-filter: saturate(160%) blur(8px);
  background: rgba(15, 23, 42, .55);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px
}

.ls a.ls-link {
  color: #c7d2fe;
  text-decoration: underline
}

.ls .header-btn-wrap {
  display: inline-block
}

/* Headings */
.ls-h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.05;
  font-weight: 800;
  background: linear-gradient(90deg, #fff 0%, #c7d2fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* HERO Split */
.ls-split {
  display: grid;
  gap: 16px;
  align-items: center
}

.ls--hero-split {
  grid-template-columns: 1.05fr 1fr
}

@media (max-width:900px) {
  .ls--hero-split {
    grid-template-columns: 1fr
  }
}

.ls-split__left {
  padding: 24px;
  color: #fff
}

.ls-badge {
  display: inline-block;
  background: rgba(99, 102, 241, .25);
  color: #c7d2fe;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700
}

.ls-sub {
  color: #e5e7eb;
  font-size: 18px
}

.ls-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 14px 0 8px
}

.ls-kickers {
  color: #d1d5db;
  font-size: 14px
}

.ls-kickers span {
  margin-right: 12px
}

.ls-media-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(#0b1020, #0b1020) padding-box,
    linear-gradient(120deg, #60a5fa, #a78bfa) border-box;
  border: 1px solid transparent;
}

.ls-media-frame video {
  display: block;
  width: 100%;
  height: auto
}

/* USPs */
.ls-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px
}

.ls-card {
  padding: 18px;
  text-align: center;
  color: #fff
}

.ls-card strong {
  display: block
}

/* Preise & Zeiten */
.ls-title {
  text-align: center;
  margin-bottom: 10px
}

.ls-subtle {
  color: #cbd5e1
}

.ls-pricegrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 14px
}

.ls-pricecard {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(#0b1020, #0b1020) padding-box, linear-gradient(120deg, var(--acc), transparent 60%) border-box;
  border: 1px solid transparent;
}

.ls-pricecard.day-df {
  --acc: #60a5fa
}

.ls-pricecard.day-sa {
  --acc: #f472b6
}

.ls-pricecard.day-so {
  --acc: #34d399
}

.ls-pricecard.day-fe {
  --acc: #a78bfa
}

.ls-pricecard__hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  z-index: 2; /* Ensure header content appears above premium effects */
}

.ls-day {
  font-weight: 800
}



.ls-desc {
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 500;
}

.ls-amount .num {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: .2px
}

.ls-amount .per {
  margin-left: 6px;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 16px;
}

.ls-extra {
  color: #e5e7eb;
  font-size: 14px
}

.ls-pricecard__ft {
  margin-top: 10px
}

.ls-price-note {
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  color: #e5e7eb
}

/* Leistungen (Features) */
.ls-feats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px
}

.ls-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  color: #fff
}

.ls-feat .ico {
  font-size: 26px;
  line-height: 1
}

.ls-feat h4 {
  margin: 0 0 4px 0
}

/* Ablauf (Timeline) */
.ls-timeline {
  display: grid;
  gap: 12px;
  position: relative
}

.ls-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  color: #fff
}

.ls-step .dot {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #6366f1;
  font-weight: 800
}

/* FAQ - Modern Design */
.ls-faq {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.ls-faq-item {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 16px;
  padding: 0;
  color: #fff;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.ls-faq-item:hover {
  border-color: rgba(96, 165, 250, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ls-faq-item[open] {
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 8px 25px rgba(96, 165, 250, 0.2);
}

.ls-faq-item > summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(96, 165, 250, 0.1);
  border-bottom: 1px solid rgba(96, 165, 250, 0.2);
  transition: all 0.3s ease;
  list-style: none;
  position: relative;
}

.ls-faq-item > summary::-webkit-details-marker {
  display: none;
}

.ls-faq-item > summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #60a5fa;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.ls-faq-item[open] > summary::after {
  transform: rotate(45deg);
}

.ls-faq-item > summary:hover {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.ls-faq-item > div {
  padding: 24px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
  background: rgba(15, 23, 42, 0.5);
}

/* FAQ Title Styling - Match Other Sections */
.ls-title--faq {
  text-align: center;
  margin-bottom: 40px;
}

.faq-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(96, 165, 250, .2), rgba(167, 139, 250, .2));
  border: 1px solid rgba(96, 165, 250, .4);
  border-radius: 20px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
  animation: faq-pulse 3s ease-in-out infinite;
}

.faq-main-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.faq-title-line1 {
  display: block;
  font-size: clamp(24px, 3.5vw, 42px);
  color: #93c5fd;
  text-shadow: 0 0 20px rgba(147, 197, 253, .5);
}

.faq-title-line2 {
  display: block;
  font-size: clamp(32px, 4.8vw, 58px);
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: faq-glow 4s ease-in-out infinite alternate;
}

.faq-subtitle {
  font-size: 18px;
  color: #94a3b8;
  margin: 0;
  font-weight: 400;
}

/* FAQ Animations - Match Main Theme */
@keyframes faq-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(96, 165, 250, .4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(96, 165, 250, .3);
  }
}

@keyframes faq-glow {
  0% {
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
  }
  100% {
    text-shadow: 0 0 30px rgba(147, 197, 253, 0.8), 0 0 40px rgba(167, 139, 250, 0.6);
  }
}

/* FAQ Animation */
.ls-faq-item[open] > div {
  animation: faqSlideDown 0.3s ease-out;
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Galerie mit einem großen Bild */
.ls-gallery-grid {
  display: grid;
  gap: 10px
}

.ls-gallery-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr)
}

@media (max-width:1024px) {
  .ls-gallery-grid.cols-4 {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width:700px) {
  .ls-gallery-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr)
  }
}

.ls-gallery-grid .g-item {
  display: block;
  border-radius: 12px;
  overflow: hidden
}

.ls-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.ls-gallery-grid .g-item.big {
  grid-column: span 2;
  grid-row: span 2
}

@supports (aspect-ratio: 1/1) {
  .ls-gallery-grid .g-item {
    aspect-ratio: 4/3
  }

  .ls-gallery-grid .g-item.big {
    aspect-ratio: 8/6
  }
}

/* Testimonials – Scroll Snap Slider */
.ls-testi {
  position: relative
}

.ls-testi__track {
  display: flex;
  gap: 12px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px
}

.ls-testi__item {
  min-width: min(86%, 680px);
  scroll-snap-align: center;
  padding: 18px;
  color: #fff
}

.ls-testi__item p {
  font-size: 18px;
  margin: 0 0 8px
}

.ls-testi__item cite {
  font-style: normal;
  color: #cbd5e1
}

.ls-testi__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  cursor: pointer
}

.ls-testi__nav.prev {
  left: 6px
}

.ls-testi__nav.next {
  right: 6px
}

/* Testimonials Section - Match Gallery Design */
.ls-title--testimonials {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 20px;
  color: #ff6b35;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
  animation: testimonials-pulse 3s ease-in-out infinite;
}

.testimonials-main-title {
  margin: 0 0 16px;
  line-height: 0.9;
}

.testimonials-title-line1 {
  display: block;
  font-size: clamp(24px, 3.5vw, 42px);
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.testimonials-title-line2 {
  display: block;
  font-size: clamp(32px, 4.8vw, 58px);
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: testimonials-glow 4s ease-in-out infinite alternate;
}

.testimonials-subtitle {
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  position: relative;
}

.testimonials-subtitle::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  transform: translateX(-50%);
}

/* Testimonials Slider - Fixed */
.arena-testimonials {
  position: relative;
  margin: 32px auto 0;
  max-width: 1200px;
  padding: 0 20px;
}

.ls-testi__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding-left: 20px;
  padding-right: 20px;
}

.ls-testi__track::-webkit-scrollbar {
  display: none;
}

.ls-testi__item {
  min-width: min(75%, 450px);
  max-width: 450px;
  scroll-snap-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ls-testi__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ls-testi__item:hover::before {
  opacity: 1;
}

.ls-testi__item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.testi-content {
  position: relative;
  z-index: 1;
}

.testi-quote {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  color: #fff;
  font-style: italic;
  position: relative;
}

.testi-quote::before {
  content: '"';
  font-size: 60px;
  color: rgba(255, 107, 53, 0.3);
  position: absolute;
  top: -20px;
  left: -15px;
  font-family: serif;
}

.testi-author {
  font-style: normal;
  color: #fbbf24;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Animations */
@keyframes testimonials-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 107, 53, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  }
}

@keyframes testimonials-glow {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
  }

  100% {
    filter: drop-shadow(0 0 20px rgba(247, 147, 30, 0.4));
  }
}

/* Responsive */
@media (prefers-reduced-motion: reduce) {

  .testimonials-badge,
  .testimonials-title-line2 {
    animation: none;
  }

  .ls-testi__item {
    transition: none;
  }
}

@media (max-width: 768px) {
  .ls-title--testimonials {
    padding: 30px 15px;
  }

  .testimonials-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .ls-testi__item {
    min-width: min(80%, 320px);
    max-width: 320px;
    padding: 20px;
  }

  .testi-quote {
    font-size: 16px;
  }

  .ls-testi__track {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .ls-testi__item {
    min-width: min(85%, 280px);
    max-width: 280px;
    padding: 16px;
  }

  .testi-quote {
    font-size: 15px;
  }
}

/* CTA */
.ls-cta {
  text-align: center;
  padding: 24px;
  color: #fff
}

.ls-cta__tel {
  margin-top: 10px
}

/* Sticky CTA (fixed + dismiss) */
.ls-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  padding: 10px;
  background: rgba(4, 7, 20, .9);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.ls-sticky__close {
  position: absolute;
  right: 10px;
  top: 8px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer
}


/* --- Enhancements: Modern hero left and USP cards --- */
/* Hero left refinements */
.ls--hero-split .ls-split__left {
  max-width: min(720px, 100%)
}

.ls-h1 .hl {
  background: linear-gradient(90deg, #fff 0%, #93c5fd 40%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.ls-sub {
  margin: 10px 0 14px
}

/* Kicker chip under badge */
.ls-kicker {
  margin: 10px 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #93c5fd;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase
}

.ls-kicker i {
  color: #60a5fa
}

/* Bulleted feature list */
.ls-bullets {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 8px
}

.ls-bullets li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #e5e7eb
}

.ls-bullets i {
  color: #93c5fd
}

/* Trust row with stars */
.ls-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: #cbd5e1
}

.ls-trust .stars {
  display: inline-flex;
  gap: 3px;
  color: #fbbf24
}

/* USP cards with icons and micro-interaction */
.ls-cards--usps {
  --ls-gap: 16px;
  gap: var(--ls-gap)
}

.ls-card__ico {
  font-size: 20px;
  color: #93c5fd
}

.ls-card.is-interactive {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 16px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease
}

.ls-card.is-interactive:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25), 0 0 0 1px rgba(147, 197, 253, .2) inset
}

.ls-card.is-interactive:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 2px
}

@media (prefers-reduced-motion: reduce) {
  .ls-card.is-interactive {
    transition: none
  }

  .ls-card.is-interactive:hover {
    transform: none
  }
}


/* --- USP card: icon on top, centered text, playful hover --- */
.ls-cards--usps {
  text-align: center
}

.ls-cards--usps .ls-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
  min-height: 170px;
  padding: 24px 22px
}

.ls-cards--usps .ls-card strong {
  font-size: 17px
}

.ls-cards--usps .ls-card span {
  font-size: 14px;
  opacity: .9
}

.ls-cards--usps .ls-card .ls-card__ico {
  font-size: 40px;
  color: #93c5fd;
  filter: drop-shadow(0 0 10px rgba(147, 197, 253, .28));
  transition: transform .18s ease
}

/* Playful animation on hover/focus */
.ls-cards--usps .ls-card.is-interactive:hover .ls-card__ico,
.ls-cards--usps .ls-card.is-interactive:focus .ls-card__ico {
  animation: ls-wiggle .6s ease both
}

.ls-cards--usps .ls-card.is-interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28), 0 0 0 1px rgba(147, 197, 253, .24) inset
}

@keyframes ls-wiggle {
  0% {
    transform: translateY(0) rotate(0)
  }

  20% {
    transform: translateY(-3px) rotate(-6deg)
  }

  50% {
    transform: translateY(0) rotate(0)
  }

  75% {
    transform: translateY(-2px) rotate(4deg)
  }

  100% {
    transform: translateY(0) rotate(0)
  }
}

@media (prefers-reduced-motion: reduce) {

  .ls-cards--usps .ls-card.is-interactive:hover,
  .ls-cards--usps .ls-card.is-interactive:focus {
    transform: none;
    box-shadow: none
  }

  .ls-cards--usps .ls-card .ls-card__ico {
    transition: none
  }

  .ls-cards--usps .ls-card.is-interactive:hover .ls-card__ico,
  .ls-cards--usps .ls-card.is-interactive:focus .ls-card__ico {
    animation: none
  }
}


/* --- Price info strip --- */
.ls-price-info {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  color: #e5e7eb;
  position: relative;
  overflow: hidden
}

.ls-price-info::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, #60a5fa, #a78bfa 60%, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.ls-price-info__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  align-items: center
}

.ls-price-info .pi-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08)
}

.ls-price-info .pi-item i {
  color: #93c5fd;
  font-size: 18px
}

.ls-price-info__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  opacity: .95
}

.ls-price-info__note i {
  color: #60a5fa
}

/* Fun micro-interaction */
.ls-price-info .pi-item.is-interactive {
  transition: transform .16s ease, background .16s ease
}

.ls-price-info .pi-item.is-interactive:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .06)
}

@media (prefers-reduced-motion: reduce) {
  .ls-price-info .pi-item.is-interactive {
    transition: none
  }
}


/* --- Unified Pricing section layout --- */
.ls-pricing {
  display: grid;
  gap: 14px
}

.ls-pricing__hd {
  text-align: center
}

.ls-pricing__meta {
  padding: 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, .55);
  border: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden
}

.ls-pricing__meta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, #60a5fa, #a78bfa 60%, transparent);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none
}

/* Chips under the info row */
.ls-pricing__chips {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.pi-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
  color: #e5e7eb
}

.pi-chip i {
  color: #93c5fd
}

.pi-chip.is-interactive {
  transition: transform .16s ease, background .16s ease
}

.pi-chip.is-interactive:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .08)
}


/* --- Pricing cohesion pass (unify lower bar with cards) --- */
.ls-pricing {
  gap: 16px
}

.ls-pricing__meta {
  padding: 12px;
  border-radius: 16px;
  background: rgba(15, 23, 42, .55);
  border: 1px solid rgba(255, 255, 255, .08)
}

.ls-pricing__meta::before {
  content: none
}

/* Make both rows use the same pill style */
.ls-price-info__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center
}

.ls-pricing__chips {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.ls-pricing__meta .pi-item,
.ls-pricing__meta .pi-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.2
}

.ls-pricing__meta .pi-item i,
.ls-pricing__meta .pi-chip i {
  color: #93c5fd;
  font-size: 14px
}

.ls-pricing__meta .pi-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #93c5fd;
  box-shadow: 0 0 0 2px rgba(147, 197, 253, .25);
}


/* Interaction kept subtle to match cards */
.ls-pricing__meta .pi-item.is-interactive,
.ls-pricing__meta .pi-chip.is-interactive {
  transition: transform .12s ease, background .12s ease
}

.ls-pricing__meta .pi-item.is-interactive:hover,
.ls-pricing__meta .pi-chip.is-interactive:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .08)
}

/* Note chip style */
.ls-price-info__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 13px;
  color: #cbd5e1
}

.ls-price-info__note i {
  color: #93c5fd
}

@media (max-width: 900px) {
  .ls-pricing {
    gap: 12px
  }

  /* --- Priceboard (merged section) --- */
  .ls-priceboard {
    padding: 14px;
    border-radius: 18px
  }

  .ls-priceboard .ls-pricegrid {
    margin-top: 0
  }

  .ls-facts {
    margin-top: 10px
  }

  .ls-facts .facts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none
  }

  .ls-facts .facts-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    color: #e5e7eb;
    font-size: 13px
  }

  .ls-facts .facts-list i {
    color: #93c5fd;
    font-size: 14px
  }

  /* subtle separator between grid and facts */
  .ls-priceboard .ls-pricegrid {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 0
  }

  .ls-priceboard .ls-pricegrid::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent)
  }


  /* --- Priceboard kids variant (friendly, simple) --- */
  .ls-priceboard--kids {
    background: rgba(10, 15, 28, .6);
    border: 1px dashed rgba(255, 255, 255, .12)
  }

  .ls-priceboard--kids .ls-pricegrid::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent)
  }

  .ls-priceboard--kids .facts-list li {
    background: rgba(255, 255, 255, .04);
    border: 1px dashed rgba(255, 255, 255, .12)
  }

  .ls-priceboard--kids .facts-list i {
    color: #aee1ff
  }

}

/* --- Simple price table (kids-friendly, merged) --- */
.pt-board {
  padding: 16px;
  border-radius: 18px
}

.pt-table {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.pt-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08)
}

.pt-col.day {
  display: flex;
  flex-direction: column
}

.pt-day {
  font-weight: 800
}

.pt-time {
  opacity: .9;
  font-size: 12px;
  color: #cbd5e1
}

.pt-col.price .pt-desc {
  color: #cbd5e1;
  font-size: 12px
}

.pt-amount strong {
  font-size: 22px
}

.pt-amount .per {
  margin-left: 6px;
  color: #cbd5e1
}

.pt-extra {
  font-size: 12px;
  color: #cbd5e1
}

.pt-col.cta .header-btn-wrap {
  display: inline-block
}

.pt-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  list-style: none
}

.pt-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: #e5e7eb;
  font-size: 14px
}

.pt-highlights i {
  color: #60a5fa;
  font-size: 14px
}

.pt-fineprint {
  margin-top: 8px;
  font-size: 12px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px
}

.pt-fineprint i {
  color: #93c5fd
}

@media (max-width: 900px) {
  .pt-row {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .pt-col.cta .header-btn-wrap {
    width: 100%
  }

  .pt-col.cta .dl-btn {
    width: 100%;
    text-align: center
  }
}



/* --- Enhanced LaserTag Arena Pricing Container --- */
.laser-arena {
  position: relative;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(96, 165, 250, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
}

.laser-arena::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.8), rgba(167, 139, 250, 0.6), rgba(96, 165, 250, 0.8));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: arena-border-enhanced 5s ease-in-out infinite alternate;
}

.laser-arena::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.03) 0%, transparent 70%);
  animation: arena-ambient-glow 8s linear infinite;
  pointer-events: none;
}

@keyframes arena-border-enhanced {
  0% {
    opacity: 0.5;
    filter: hue-rotate(0deg);
  }
  100% {
    opacity: 1;
    filter: hue-rotate(20deg);
  }
}

@keyframes arena-ambient-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Arena grid matches existing layout */
.arena-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 18px
}

/* 3-column grid for main packages */
.arena-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 24px 0;
}

/* CSS Variable for galactic gradient */
:root {
  --galactic-gradient: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
}

/* Clean section titles without ugly left borders */
.basic-title-row,
.bestseller-title-row {
  margin: 0 0 32px 0;
  position: relative;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 250, 0.15);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.bestseller-title-row {
  margin: 48px 0 32px 0;
  /* Same background as basic - no special styling */
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(96, 165, 250, 0.15);
}

/* Remove all left border styling */
.basic-title-row::before,
.bestseller-title-row::before {
  display: none;
}

/* Title left and right sections */
.title-left {
  flex: 1;
  text-align: left;
}

.title-right {
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  margin: 0 0 8px 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.basic-title .title-main {
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(96, 165, 250, 0.3));
}

.bestseller-title .title-main {
  background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: gradient-shift 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 2px 6px rgba(139, 92, 246, 0.4));
}

@keyframes gradient-shift {
  0% { filter: drop-shadow(0 2px 4px rgba(249, 12, 255, 0.3)) hue-rotate(0deg); }
  100% { filter: drop-shadow(0 2px 8px rgba(138, 68, 255, 0.5)) hue-rotate(15deg); }
}

.title-accent {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: accent-pulse 2s ease-in-out infinite alternate;
}

@keyframes accent-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

.section-subtitle {
  font-size: 16px;
  color: #cbd5e1;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* Title badges on the right side */
.title-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(96, 165, 250, 0.05));
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  min-width: 100px;
}

.title-badge.premium-badge {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid #8b5cf6;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
  animation: premium-badge-glow 2s ease-in-out infinite alternate;
}

@keyframes premium-badge-glow {
  0% {
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
    border-color: #8b5cf6;
  }
  100% {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    border-color: #a855f7;
  }
}

.badge-text {
  font-size: 16px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 2px;
}

.premium-badge .badge-text {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 800;
}

.badge-sub {
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  opacity: 0.8;
}

/* Simple white card titles - BIGGER fonts */
.ls-pricecard .ls-day {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
}

/* Premium cards have ADDICTIVE title styling - BIGGER */
.bestseller-card .ls-day {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 0 10px rgba(139, 92, 246, 0.3);
  margin-bottom: 8px;
  position: relative;
  animation: premium-title-glow 2.5s ease-in-out infinite alternate;
}

@keyframes premium-title-glow {
  0% {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 0 10px rgba(139, 92, 246, 0.3);
  }
  100% {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 15px rgba(139, 92, 246, 0.5);
  }
}

/* Time chip styling - SINGLE LINE and BIGGER TEXT */
.ls-chip {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  color: #e5e7eb;
  display: inline-block;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: fit-content;
}

/* Bestseller grid - 3 columns for bestseller cards */
.arena-grid--bestseller {
  margin-bottom: 18px;
}

/* Enhanced price cards to match existing style */
.arena-grid .ls-pricecard {
  transition: transform .18s ease, box-shadow .18s ease
}

.arena-grid .ls-pricecard:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(96, 165, 250, .25), 0 0 0 1px rgba(96, 165, 250, .2) inset
}

/* Premium card hover - ADDICTIVE enhanced glow */
.arena-grid .bestseller-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.25), 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.4) inset;
  animation: none; /* Stop pulse on hover for better interaction */
}

/* Premium card hover sparkle effect */
.arena-grid .bestseller-card:hover::after {
  animation: sparkle-excited 0.6s ease-in-out infinite;
}

@keyframes sparkle-excited {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.3) rotate(180deg);
    opacity: 0.8;
  }
}

/* Basic cards use original .ls-pricecard styling */

/* Premium cards - ADDICTIVE and PREMIUM with animated elements */
.bestseller-card {
  /* Same dark background as basic cards */
  background: linear-gradient(#0b1020, #0b1020) padding-box, var(--galactic-gradient) border-box !important;
  border: 1px solid transparent !important;
  /* Strong premium glow */
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.12), 0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  animation: premium-card-pulse 3s ease-in-out infinite alternate;
}

@keyframes premium-card-pulse {
  0% {
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.12), 0 4px 15px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 35px rgba(139, 92, 246, 0.18), 0 6px 20px rgba(0, 0, 0, 0.5);
  }
}

/* Animated inner glow for premium feeling - stays behind content */
.bestseller-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.04), rgba(168, 85, 247, 0.02));
  pointer-events: none;
  z-index: 0; /* Behind all content including chips */
  animation: inner-glow-pulse 2.5s ease-in-out infinite alternate;
}

@keyframes inner-glow-pulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Animated corner sparkles for addictive effect - positioned to not interfere with chips */
.bestseller-card::after {
  content: "✨";
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 14px;
  z-index: 2;
  animation: sparkle-twinkle 1.5s ease-in-out infinite alternate;
}

@keyframes sparkle-twinkle {
  0% {
    opacity: 0.4;
    transform: scale(0.8) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1.1) rotate(15deg);
  }
}

/* Feature badges matching site's pill style */
.arena-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  flex-direction: column;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(96, 165, 250, .12);
  border: 1px solid rgba(96, 165, 250, .25);
  border-radius: 999px;
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 500;
  transition: all .16s ease
}

.feature-badge:hover {
  background: rgba(96, 165, 250, .18);
  border-color: rgba(96, 165, 250, .4);
  transform: translateY(-1px)
}

.badge-icon {
  font-size: 14px;
  margin-right: 2px
}

/* Arena info matching site's info style */
.arena-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(96, 165, 250, .08);
  border: 1px solid rgba(96, 165, 250, .2);
  border-radius: 12px;
  color: #cbd5e1;
  font-size: 12px;
  text-align: center
}

.info-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  animation: info-pulse 2s infinite;
  box-shadow: 0 0 8px rgba(96, 165, 250, .6)
}

@keyframes info-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .6;
    transform: scale(1.3)
  }
}

@media (prefers-reduced-motion: reduce) {

  .laser-arena::before,
  .info-pulse {
    animation: none
  }

  .arena-grid .ls-pricecard,
  .feature-badge {
    transition: none
  }
}

@media (max-width: 900px) {
  .laser-arena {
    padding: 18px
  }

  .arena-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 12px
  }

  .arena-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .basic-title-row,
  .bestseller-title-row {
    margin: 0 0 24px 0;
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .bestseller-title-row {
    margin: 32px 0 24px 0;
  }

  .section-title {
    font-size: clamp(20px, 5vw, 28px);
  }

  .section-subtitle {
    font-size: 14px;
  }

  .title-right {
    align-self: flex-end;
  }

  .title-badge {
    min-width: 80px;
    padding: 10px 16px;
  }

  .badge-text {
    font-size: 12px;
  }

  .badge-sub {
    font-size: 10px;
  }

  .ls-pricecard .ls-day {
    font-size: 17px;
  }

  .bestseller-card .ls-day {
    font-size: 18px;
  }

  .arena-features {
    justify-content: center
  }
}

/* --- Arena Title Section (LaserTag Mission Briefing) --- */
.ls-title--arena {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden
}

/* Arena background with crosshairs */
.arena-title-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.arena-crosshairs {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(96, 165, 250, .15);
  border-radius: 50%
}

.arena-crosshairs::before,
.arena-crosshairs::after {
  content: "";
  position: absolute;
  background: rgba(96, 165, 250, .2)
}

.arena-crosshairs::before {
  top: 50%;
  left: 10px;
  right: 10px;
  height: 1px;
  transform: translateY(-50%)
}

.arena-crosshairs::after {
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 1px;
  transform: translateX(-50%)
}

.arena-crosshairs {
  top: 20%;
  left: 15%;
  animation: crosshair-float 6s ease-in-out infinite
}

.arena-crosshairs--2 {
  top: 60%;
  right: 20%;
  width: 80px;
  height: 80px;
  animation: crosshair-float 8s ease-in-out infinite reverse
}

@keyframes crosshair-float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg)
  }

  50% {
    transform: translate(10px, -5px) rotate(5deg)
  }
}

/* Mission badge */
.arena-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(96, 165, 250, .2), rgba(167, 139, 250, .2));
  border: 1px solid rgba(96, 165, 250, .4);
  border-radius: 20px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
  animation: badge-pulse 3s ease-in-out infinite
}

@keyframes badge-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(96, 165, 250, .4)
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(96, 165, 250, .3)
  }
}

/* Arena title styling */
.arena-title {
  margin: 0 0 16px;
  line-height: .9
}

.arena-title-line1 {
  display: block;
  font-size: clamp(24px, 3.5vw, 42px);
  color: #93c5fd;
  text-shadow: 0 0 20px rgba(147, 197, 253, .5)
}

.arena-title-line2 {
  display: block;
  font-size: clamp(32px, 4.8vw, 58px);
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: title-glow 4s ease-in-out infinite alternate
}

@keyframes title-glow {
  0% {
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, .3))
  }

  100% {
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, .4))
  }
}

/* Arena subtitle */
.arena-subtitle {
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  position: relative
}

.arena-subtitle::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
  transform: translateX(-50%)
}

@media (prefers-reduced-motion: reduce) {

  .arena-crosshairs,
  .arena-badge,
  .arena-title-line2 {
    animation: none
  }
}

@media (max-width: 768px) {
  .ls-title--arena {
    padding: 30px 15px
  }

  .arena-crosshairs {
    display: none
  }

  .arena-badge {
    font-size: 11px;
    padding: 5px 12px
  }

  .arena-grid--3col {
    grid-template-columns: 1fr;
  }

  .basic-title-row,
  .bestseller-title-row {
    margin: 0 0 20px 0;
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bestseller-title-row {
    margin: 24px 0 20px 0;
  }

  .section-title {
    font-size: clamp(18px, 6vw, 24px);
  }

  .section-subtitle {
    font-size: 13px;
  }

  .title-right {
    align-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .title-badge {
    min-width: 70px;
    padding: 8px 12px;
  }

  .badge-text {
    font-size: 11px;
  }

  .badge-sub {
    font-size: 9px;
  }

  .ls-pricecard .ls-day {
    font-size: 16px;
  }

  .bestseller-card .ls-day {
    font-size: 17px;
  }

  .arena-loadout-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .arena-loadout-item {
    padding: 16px;
  }

  .loadout-desc {
    font-size: 14px;
  }

  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .rating-summary {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .testimonial-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .testimonial-meta-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }

  .testimonials-swiper .swiper-button-next::after,
  .testimonials-swiper .swiper-button-prev::after {
    font-size: 16px;
  }
}

/* --- CLEAN TESTIMONIALS SECTION --- */
.testimonials-section {
  background: transparent;
  padding: 60px 0;
  margin: 60px 0;
}

.ls-title--testimonials {
  text-align: center;
  margin-bottom: 40px;
}

/* Simple badge styling */
.testimonials-badge {
  display: inline-block;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #60a5fa;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Simple title styling */
.testimonials-main-title {
  margin: 0 0 16px 0;
  line-height: 0.9;
}

.testimonials-title-line1 {
  display: block;
  font-size: clamp(28px, 4vw, 48px);
  color: #fbbf24;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonials-title-line2 {
  display: block;
  font-size: clamp(32px, 5vw, 58px);
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  text-transform: uppercase;
}

/* Simple rating summary */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 32px;
  color: #cbd5e1;
  font-weight: 600;
}

.rating-summary .rating-stars {
  display: flex;
  gap: 2px;
  font-size: 18px;
}

.rating-summary .rating-stars i {
  color: #fbbf24;
}

.rating-summary .rating-meta {
  font-size: 16px;
}

.rating-summary .verified {
  color: #60a5fa;
  font-size: 14px;
}


/* Simple testimonial cards */
.testimonials-slider {
  margin-top: 40px;
}

.testimonials-swiper {
  padding: 0 20px 50px;
}

.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #fbbf24 100%);
  border-radius: 16px 16px 0 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.google-reviews-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.google-icon {
  font-size: 18px;
}

/* Clean card header - single row layout */
.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-rating .stars {
  display: flex;
  gap: 1px;
  font-size: 16px;
}

.testimonial-rating .stars i {
  color: #fbbf24;
}

.testimonial-rating .rating-number {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 13px;
}

/* Right side meta info */
.testimonial-meta-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 2px !important;
  background: rgba(34, 197, 94, 0.1) !important;
  color: #22c55e !important;
  border: 1px solid rgba(34, 197, 94, 0.2) !important;
  padding: 2px 6px !important;
  border-radius: 8px !important;
  font-size: 9px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.review-date {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 500;
}

/* Simple quote styling */
.testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0 0 16px 0;
  flex: 1;
  font-style: italic;
}

/* Simple author styling */
.testimonial-author {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 600;
  text-align: right;
  font-style: normal;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Simple Swiper Navigation */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: #60a5fa;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(96, 165, 250, 0.3);
  transition: all 0.3s ease;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.5);
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 18px;
}

/* Simple pagination */
.testimonials-swiper .swiper-pagination {
  bottom: -40px !important;
  position: relative !important;
  margin-top: 30px;
}

.testimonials-swiper .swiper-pagination-bullet {
  background: rgba(96, 165, 250, 0.3);
  opacity: 1;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: #60a5fa;
  transform: scale(1.2);
}


/* --- Enhanced Hero Arena Styling --- */
.ls--hero-arena {
  position: relative;
  overflow: hidden
}

.hero-arena-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .3
}

.hero-crosshair {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(96, 165, 250, .2);
  border-radius: 50%
}

.hero-crosshair::before,
.hero-crosshair::after {
  content: "";
  position: absolute;
  background: rgba(96, 165, 250, .15)
}

.hero-crosshair::before {
  top: 50%;
  left: 15px;
  right: 15px;
  height: 1px;
  transform: translateY(-50%)
}

.hero-crosshair::after {
  left: 50%;
  top: 15px;
  bottom: 15px;
  width: 1px;
  transform: translateX(-50%)
}

.hero-crosshair--1 {
  top: 10%;
  right: 20%;
  animation: hero-float 8s ease-in-out infinite
}

.hero-crosshair--2 {
  bottom: 15%;
  left: 10%;
  width: 60px;
  height: 60px;
  animation: hero-float 6s ease-in-out infinite reverse
}

@keyframes hero-float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg)
  }

  50% {
    transform: translate(8px, -4px) rotate(3deg)
  }
}

.arena-location-badge {
  background: linear-gradient(135deg, rgba(96, 165, 250, .2), rgba(167, 139, 250, .2));
  border: 1px solid rgba(96, 165, 250, .3)
}

.arena-mission-tag {
  color: #60a5fa;
  background: rgba(96, 165, 250, .1);
  padding: 4px 12px;
  border-radius: 16px;
  border: 1px solid rgba(96, 165, 250, .2)
}

.hero-arena-title .hl {
  animation: hero-title-pulse 4s ease-in-out infinite alternate
}

.arena-mission-brief {
  color: #cbd5e1
}

.arena-features .bullet-icon {
  font-size: 16px;
  margin-right: 8px;
  filter: drop-shadow(0 0 4px currentColor)
}

.arena-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600
}

.arena-link:hover {
  color: #93c5fd;
  text-shadow: 0 0 8px rgba(96, 165, 250, .5)
}

.arena-stats {
  background: rgba(96, 165, 250, .05);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, .15)
}

.arena-rating {
  color: #fbbf24
}

.arena-stat-text {
  color: #cbd5e1
}

@keyframes hero-title-pulse {
  0% {
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, .3))
  }

  100% {
    filter: drop-shadow(0 0 16px rgba(167, 139, 250, .4))
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-crosshair,
  .hero-arena-title .hl {
    animation: none
  }
}

/* --- Mission Loadout Section (ls_leistungen redesign) --- */
.ls-title--loadout {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden
}

.loadout-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(96, 165, 250, .2), rgba(167, 139, 250, .2));
  border: 1px solid rgba(96, 165, 250, .4);
  border-radius: 20px;
  color: #60a5fa;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: loadout-pulse 3s ease-in-out infinite
}

.loadout-main-title {
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 900;
  line-height: 0.9;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: -0.02em
}

.loadout-title-line1 {
  display: block;
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(96, 165, 250, 0.3));
}

.loadout-title-line2 {
  display: block;
  background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(167, 139, 250, 0.3));
}

.loadout-subtitle {
  font-size: 16px;
  color: #94a3b8;
  margin: 0;
  font-weight: 500
}

.arena-loadout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 40px;
  position: relative;
}

/* Add staggered animation entrance */
.arena-loadout-item:nth-child(1) { animation-delay: 0.1s; }
.arena-loadout-item:nth-child(2) { animation-delay: 0.2s; }
.arena-loadout-item:nth-child(3) { animation-delay: 0.3s; }
.arena-loadout-item:nth-child(4) { animation-delay: 0.4s; }
.arena-loadout-item:nth-child(5) { animation-delay: 0.5s; }
.arena-loadout-item:nth-child(6) { animation-delay: 0.6s; }
.arena-loadout-item:nth-child(7) { animation-delay: 0.7s; }
.arena-loadout-item:nth-child(8) { animation-delay: 0.8s; }
.arena-loadout-item:nth-child(9) { animation-delay: 0.9s; }
.arena-loadout-item:nth-child(10) { animation-delay: 1.0s; }
.arena-loadout-item:nth-child(11) { animation-delay: 1.1s; }

.arena-loadout-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.7));
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 20px;
  backdrop-filter: blur(16px);
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Animated gradient border */
.arena-loadout-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #60a5fa, #a78bfa, #f472b6, #60a5fa);
  background-size: 300% 300%;
  border-radius: 20px;
  z-index: -1;
  animation: gradient-border 3s ease infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Glowing particles effect */
.arena-loadout-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.arena-loadout-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2), 0 0 30px rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.6);
}

.arena-loadout-item:hover::before {
  opacity: 1;
}

.arena-loadout-item:hover::after {
  transform: translate(-50%, -50%) scale(2);
}

@keyframes gradient-border {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}



.loadout-icon {
  font-size: 42px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.arena-loadout-item:hover .loadout-icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(96, 165, 250, 0.4));
}

.loadout-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.loadout-desc {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.arena-loadout-item:hover .loadout-desc {
  color: #60a5fa;
  text-shadow: 0 2px 8px rgba(96, 165, 250, 0.4);
  transform: translateX(4px);
}



@keyframes loadout-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(96, 165, 250, .4)
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(96, 165, 250, .3)
  }
}

.loadout-main-title {
  margin: 0 0 16px;
  line-height: .9
}

.loadout-title-line1 {
  display: block;
  font-size: clamp(24px, 3.5vw, 42px);
  color: #93c5fd;
  text-shadow: 0 0 20px rgba(147, 197, 253, .5)
}

.loadout-title-line2 {
  display: block;
  font-size: clamp(32px, 4.8vw, 58px);
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: loadout-glow 4s ease-in-out infinite alternate
}

@keyframes loadout-glow {
  0% {
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, .3))
  }

  100% {
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, .4))
  }
}

.loadout-subtitle {
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  position: relative
}

.loadout-subtitle::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
  transform: translateX(-50%)
}

/* Loadout grid */
.arena-loadout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 40px 0
}

/* Loadout items */
.arena-loadout-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(15, 23, 42, .4);
  border: 1px solid rgba(96, 165, 250, .2);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all .2s ease;
  position: relative;
  overflow: hidden
}

.arena-loadout-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, .1), transparent);
  transition: left .6s ease
}

.arena-loadout-item:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, .4);
  box-shadow: 0 8px 24px rgba(96, 165, 250, .15)
}

.arena-loadout-item:hover::before {
  left: 100%
}

.loadout-icon {
  font-size: 32px;
  min-width: 40px;
  text-align: center;
  filter: drop-shadow(0 0 8px currentColor)
}

.loadout-info {
  flex: 1
}

.loadout-title {
  margin: 0 0 4px;
  color: #e5e7eb;
  font-size: 16px;
  font-weight: 700
}

.loadout-desc {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px
}

.loadout-status {
  color: #10b981;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(16, 185, 129, .5)
}

/* Requirements section */
.arena-requirements {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  padding: 20px;
  background: rgba(96, 165, 250, .05);
  border: 1px solid rgba(96, 165, 250, .15);
  border-radius: 16px
}

.req-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
  font-size: 14px
}

.req-icon {
  font-size: 18px;
  filter: drop-shadow(0 0 4px currentColor)
}

@media (prefers-reduced-motion: reduce) {

  .loadout-badge,
  .loadout-title-line2 {
    animation: none
  }

  .arena-loadout-item {
    transition: none
  }
}

@media (max-width: 768px) {
  .arena-loadout-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .arena-requirements {
    flex-direction: column;
    gap: 12px;
    text-align: center
  }
}

/* --- Mission Timeline Section (ls_ablauf redesign) --- */
.ls-title--mission {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden
}

.mission-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(96, 165, 250, .2), rgba(167, 139, 250, .2));
  border: 1px solid rgba(96, 165, 250, .4);
  border-radius: 20px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
  animation: mission-pulse 3s ease-in-out infinite
}

@keyframes mission-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(96, 165, 250, .4)
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(96, 165, 250, .3)
  }
}

.mission-main-title {
  margin: 0 0 16px;
  line-height: .9
}

.mission-title-line1 {
  display: block;
  font-size: clamp(24px, 3.5vw, 42px);
  color: #93c5fd;
  text-shadow: 0 0 20px rgba(147, 197, 253, .5)
}

.mission-title-line2 {
  display: block;
  font-size: clamp(32px, 4.8vw, 58px);
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: mission-glow 4s ease-in-out infinite alternate
}

@keyframes mission-glow {
  0% {
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, .3))
  }

  100% {
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, .4))
  }
}

.mission-subtitle {
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  position: relative
}

.mission-subtitle::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
  transform: translateX(-50%)
}

/* EINFACHER SCHRITT-FÜR-SCHRITT ABLAUF */
.mission-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
  padding: 0;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Einfache Schritt-Karten */
.mission-step {
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  gap: 20px;
}

/* Schritt-Nummer */
.step-marker {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--step-bg);
  border: 3px solid var(--step-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-icon {
  font-size: 24px;
  position: absolute;
  top: -8px;
  right: -8px;
}

.step-number {
  color: white;
  font-weight: 800;
  font-size: 16px;
}

/* Schritt-Inhalt */
.step-content {
  flex: 1;
}

.step-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}



/* Step Status Colors */
.mission-step--active {
  --step-bg: linear-gradient(135deg, #60a5fa, #3b82f6);
  --step-border: rgba(96, 165, 250, .8)
}

.mission-step--upcoming {
  --step-bg: linear-gradient(135deg, rgba(96, 165, 250, .7), rgba(59, 130, 246, .7));
  --step-border: rgba(96, 165, 250, .6)
}

.mission-step--bonus {
  --step-bg: linear-gradient(135deg, rgba(167, 139, 250, .7), rgba(139, 92, 246, .7));
  --step-border: rgba(167, 139, 250, .6)
}



/* Content Styling */
.step-icon {
  display: none
}

.step-title {
  margin: 0 0 4px 0;
  color: #e5e7eb;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.step-desc {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 8px 0;
}

.step-duration {
  color: #60a5fa;
  font-size: 12px;
  font-weight: 600;
  background: rgba(96, 165, 250, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  display: inline-block;
}

/* Schritt-Status */
.mission-step--active {
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 4px 20px rgba(96, 165, 250, 0.2);
}

.mission-step--active .step-title {
  color: #60a5fa;
}

.step-desc {
  margin: 0 0 16px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.5
}

.step-duration {
  color: #60a5fa;
  font-size: 13px;
  font-weight: 600;
  background: rgba(96, 165, 250, .2);
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  border: 1px solid rgba(96, 165, 250, .4)
}

/* Einfache Hover-Effekte */
.mission-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(96, 165, 250, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mission-step {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .step-marker {
    width: 40px;
    height: 40px;
  }

  .step-icon {
    font-size: 20px;
    top: -6px;
    right: -6px;
  }

  .step-number {
    font-size: 14px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-desc {
    font-size: 13px;
  }

  .step-duration {
    font-size: 11px;
    padding: 3px 6px;
  }
}

/* ABLAUF - EINFACHE SCHRITT-LISTE */
.ablauf-liste {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ablauf-schritt {
  display: flex;
  align-items: flex-start;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  gap: 20px;
}

.ablauf-schritt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(96, 165, 250, 0.5);
}

/* Schritt-Nummer */
.schritt-nummer {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: white;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

/* Schritt-Icon */
.schritt-icon {
  flex-shrink: 0;
  font-size: 32px;
  margin-top: 4px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Schritt-Inhalt */
.schritt-inhalt {
  flex: 1;
}

.schritt-titel {
  margin: 0 0 8px 0;
  color: #e5e7eb;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.schritt-text {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.schritt-dauer {
  color: #60a5fa;
  font-size: 13px;
  font-weight: 600;
  background: rgba(96, 165, 250, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  display: inline-block;
}

/* Interactive Controls */
.ablauf-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.ablauf-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.ablauf-time-total {
  color: #60a5fa;
  font-size: 16px;
  font-weight: 600;
  background: rgba(96, 165, 250, 0.15);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.ablauf-hint {
  color: #94a3b8;
  font-size: 14px;
  font-style: italic;
}



/* Pulse Animation */
@keyframes ablaufPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
  }
  100% {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
  }
}

/* Clickable Steps */
.ablauf-schritt {
  cursor: pointer;
  position: relative;
}

.ablauf-schritt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ablauf-schritt:hover::before {
  opacity: 1;
}

/* Simple Timeline Animation */
.ablauf-schritt {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.ablauf-schritt--visible {
  opacity: 1;
  transform: translateY(0);
}

/* LASERTAG PRICING SECTION - REDESIGNED */
.lasertag-pricing-section {
  padding: 80px 0;
  background: transparent;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(96, 165, 250, .2), rgba(167, 139, 250, .2));
  border: 1px solid rgba(96, 165, 250, .4);
  border-radius: 25px;
  color: #60a5fa;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.pricing-title-line1 {
  display: block;
  color: #93c5fd;
  text-shadow: 0 0 20px rgba(147, 197, 253, .5);
}

.pricing-title-line2 {
  display: block;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-subtitle {
  font-size: 18px;
  color: #94a3b8;
  margin: 0;
  font-weight: 400;
}

/* Package Sections */
.package-section {
  margin: 50px 0;
}

.package-section:first-of-type {
  margin-top: 0;
}

.package-header {
  text-align: center;
  margin-bottom: 30px;
}

.package-title {
  font-size: 24px;
  font-weight: 800;
  color: #60a5fa;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-section .package-title {
  color: #fbbf24;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.package-subtitle {
  font-size: 16px;
  color: #94a3b8;
  margin: 0;
  font-weight: 500;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(96, 165, 250, 0.3);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: visible;
}

.pricing-card:hover {
  border-color: rgba(96, 165, 250, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.pricing-card.popular:hover {
  border-color: rgba(251, 191, 36, 0.7);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.3);
}

.pricing-card.premium-card {
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.15);
}

.pricing-card.premium-card:hover {
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.25);
}

.premium-card .card-title {
  color: #fbbf24;
}

.premium-card .price-amount {
  color: #fbbf24;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
  z-index: 10;
}

.card-header {
  text-align: center;
  margin-bottom: 25px;
}

.card-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #60a5fa;
  margin: 0 0 8px 0;
}

.card-days {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-body {
  text-align: center;
}

.price-display {
  margin: 20px 0;
}

.price-amount {
  font-size: 36px;
  font-weight: 900;
  color: #60a5fa;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.5);
}

.popular .price-amount {
  color: #fbbf24;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.price-per {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  margin-top: 5px;
}

.card-time {
  font-size: 14px;
  color: #cbd5e1;
  margin: 15px 0 25px 0;
  padding: 8px 12px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.card-features {
  text-align: left;
}

.feature {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #cbd5e1;
  margin: 8px 0;
  line-height: 1.4;
}

.feature.premium {
  color: #fbbf24;
  font-weight: 600;
}

.pricing-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.extras-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.extras-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-2px);
}

.extras-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.extras-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #60a5fa;
  margin: 0 0 5px 0;
}

.extras-content p {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.4;
}

.extras-content strong {
  color: #fbbf24;
}

/* BOOKING INSTRUCTIONS SECTION */
.booking-info-wrapper {
  padding: 60px 0;
  background: transparent;
}

.booking-info-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(96, 165, 250, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.booking-info-content {
  text-align: center;
}

.booking-info-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 25px;
  color: #fbbf24;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.booking-info-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 40px 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.booking-title-line1 {
  display: block;
  color: #93c5fd;
  text-shadow: 0 0 20px rgba(147, 197, 253, .5);
}

.booking-title-line2 {
  display: block;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.booking-steps {
  display: grid;
  gap: 24px;
  margin: 40px 0;
  text-align: left;
}

.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.booking-step:hover {
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.step-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 4px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #60a5fa;
  margin: 0 0 8px 0;
}

.step-content p {
  font-size: 16px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}

.step-content strong {
  color: #fbbf24;
  font-weight: 700;
}

.booking-info-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  color: #22c55e;
  font-size: 15px;
  font-weight: 600;
  margin-top: 30px;
}

.booking-info-note i {
  font-size: 18px;
  color: #fbbf24;
}

/* EPIC LASERTAG CTA */
.lasertag-cta-section {
  padding: 80px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.lasertag-cta {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px;
  background: transparent;
  border: 2px solid rgba(96, 165, 250, 0.3);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease;
}

.lasertag-cta.cta-activated {
  transform: translateY(0);
  opacity: 1;
}

/* Background Effects */
.cta-background-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.4);
}

.cta-glow-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.glow-orb {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.glow-orb-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.glow-orb-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.glow-orb-3 {
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.6;
  }
}

/* CTA Content */
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(96, 165, 250, .2), rgba(167, 139, 250, .2));
  border: 1px solid rgba(96, 165, 250, .4);
  border-radius: 25px;
  color: #60a5fa;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: badgePulse 3s ease-in-out infinite;
}

.cta-badge::before {
  content: "🎉 ";
}

.cta-badge::after {
  content: " 🎉";
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(96, 165, 250, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
  }
}

.cta-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.9;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.cta-title-line1 {
  display: block;
  color: #93c5fd;
  text-shadow: 0 0 20px rgba(147, 197, 253, .5);
  animation: titleGlow1 4s ease-in-out infinite alternate;
}

.cta-title-line2 {
  display: block;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleGlow2 4s ease-in-out infinite alternate;
}

@keyframes titleGlow1 {
  0% {
    text-shadow: 0 0 20px rgba(147, 197, 253, 0.5);
  }
  100% {
    text-shadow: 0 0 30px rgba(147, 197, 253, 0.8), 0 0 40px rgba(96, 165, 250, 0.6);
  }
}

@keyframes titleGlow2 {
  0% {
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.8));
  }
}

/* CTA Stats */
.cta-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
}

.cta-stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 900;
  color: #60a5fa;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.5);
  animation: statPulse 2s ease-in-out infinite;
}

.stat-label {
  font-size: 14px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

@keyframes statPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cta-description {
  font-size: 18px;
  color: #cbd5e1;
  margin: 30px 0;
  line-height: 1.6;
}

.cta-warning {
  color: #fbbf24;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  animation: warningBlink 2s ease-in-out infinite;
}

@keyframes warningBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.lasertag-cta .lasertag-main-btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(135deg, #60a5fa, #3b82f6) !important;
  color: white !important;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow:
    0 8px 20px rgba(96, 165, 250, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  min-width: 280px;
}

.lasertag-cta .lasertag-main-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 25px rgba(96, 165, 250, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
  color: white !important;
}

.btn-icon {
  font-size: 24px;
  margin-bottom: 5px;
  animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.btn-text {
  font-size: 20px;
  font-weight: 900;
}

.btn-subtext {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 400;
  margin-top: 2px;
}

.btn-laser-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.lasertag-main-btn:hover .btn-laser-effect {
  left: 100%;
}

.btn-charging {
  animation: btnCharge 1s ease-in-out;
}

@keyframes btnCharge {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.4);
  }
  50% {
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.8), 0 0 30px rgba(96, 165, 250, 0.6);
  }
}

.btn-charging-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: chargingPulse 1s ease-out;
}

@keyframes chargingPulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.btn-explosion {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  animation: explode 1s ease-out;
  pointer-events: none;
}

@keyframes explode {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

/* Phone Button - More Visible */
.cta-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid rgba(34, 197, 94, 0.5);
  color: #22c55e;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.cta-phone-btn:hover {
  background: rgba(34, 197, 94, 0.25);
  border-color: rgba(34, 197, 94, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
  color: #16a34a;
}

/* Guarantee */
.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 14px;
  margin-top: 20px;
}

.cta-guarantee i {
  color: #22c55e;
  font-size: 16px;
}

/* Booking Instructions inside CTA */
.cta-booking-instructions {
  background: rgba(30, 41, 59, 0.8);
  border: 2px solid rgba(96, 165, 250, 0.5);
  border-radius: 16px;
  padding: 25px;
  margin: 30px 0;
  text-align: left;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.booking-instructions-title {
  font-size: 20px;
  font-weight: 700;
  color: #fbbf24;
  margin: 0 0 20px 0;
  text-align: center;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.booking-quick-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.4;
}

.step-text strong {
  color: #fbbf24;
  font-weight: 700;
}

/* CTA Secondary Buttons */
.cta-secondary-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.cta-invitation-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #a855f7, #8b5cf6);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(168, 85, 247, 0.3);
  min-width: 180px;
}

.cta-invitation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  text-decoration: none;
}

.cta-invitation-btn i {
  font-size: 20px;
  margin-bottom: 2px;
}

.cta-invitation-btn span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.cta-invitation-btn small {
  font-size: 11px;
  opacity: 0.8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Video Overlay for Elementor Lightbox */
.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  text-decoration: none;
  color: white;
}

.video-container:hover .video-play-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(96, 165, 250, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

.video-play-overlay:hover .play-button {
  background: rgba(96, 165, 250, 1);
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(96, 165, 250, 0.6);
}

.play-button i {
  color: white;
  font-size: 28px;
  margin-left: 4px;
}

.play-text {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}



/* Simple Final CTA Effects - No Heavy Animations */
.cta-final-call {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(96, 165, 250, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ablauf-schritt {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }

  .schritt-nummer {
    width: 36px;
    height: 36px;
    font-size: 16px;
    align-self: center;
  }

  .schritt-icon {
    font-size: 28px;
    margin-top: 0;
    align-self: center;
  }

  .schritt-titel {
    font-size: 18px;
  }

  .schritt-text {
    font-size: 14px;
  }

  .schritt-dauer {
    font-size: 12px;
    padding: 4px 10px;
  }

  .ablauf-controls {
    flex-direction: column;
    align-items: center;
  }

  .lasertag-cta {
    margin: 0 20px;
    padding: 40px 20px;
  }

  .cta-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 24px;
  }

  .lasertag-main-btn {
    min-width: 240px;
    padding: 16px 32px;
  }

  .cta-description {
    font-size: 16px;
  }

  /* Booking Instructions Mobile */
  .booking-info-section {
    margin: 0 20px;
    padding: 30px 20px;
  }

  .booking-step {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .step-icon {
    align-self: center;
    font-size: 28px;
  }

  .step-content {
    text-align: center;
  }

  .booking-info-note {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Pricing Section Mobile */
  .lasertag-pricing-section {
    padding: 60px 20px;
  }

  .package-section {
    margin: 40px 0;
  }

  .package-header {
    margin-bottom: 25px;
  }

  .package-title {
    font-size: 20px;
  }

  .package-subtitle {
    font-size: 14px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 25px 20px;
  }

  .card-icon {
    font-size: 32px;
  }

  .card-title {
    font-size: 18px;
  }

  .price-amount {
    font-size: 28px;
  }

  .pricing-extras {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .extras-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* CTA Booking Instructions Mobile */
  .cta-booking-instructions {
    margin: 25px 0;
    padding: 20px;
  }

  .booking-instructions-title {
    font-size: 18px;
  }

  .booking-quick-steps {
    gap: 15px;
  }

  .quick-step {
    gap: 12px;
    padding: 10px 0;
  }

  .step-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .step-text {
    font-size: 14px;
  }

  /* CTA Invitation Button Mobile */
  .cta-secondary-buttons {
    margin-top: 15px;
  }

  .cta-invitation-btn {
    padding: 14px 20px;
    min-width: 160px;
  }

  .cta-invitation-btn i {
    font-size: 18px;
  }

  .cta-invitation-btn span {
    font-size: 13px;
  }

  .cta-invitation-btn small {
    font-size: 10px;
  }
}

/* --- Arena Gallery Section (ls_galerie redesign) --- */
.ls-title--gallery {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden
}

/* Apply gallery styling to regular ls-title when used with gallery */
.ls-title:has(+ .arena-gallery),
.ls-title--gallery {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden
}

.ls-title:has(+ .arena-gallery) .ls-h1::before,

.ls-title:has(+ .arena-gallery) .ls-h1,
.gallery-main-title {
  margin: 0 0 16px;
  line-height: .9;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gallery-glow 4s ease-in-out infinite alternate;
  font-size: clamp(32px, 4.8vw, 58px)
}

.ls-title:has(+ .arena-gallery)::after {
  content: "So sieht Action in unserer LaserTag Arena aus";
  display: block;
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 600;
  margin: 16px 0 0;
  position: relative
}

.ls-title:has(+ .arena-gallery)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
  transform: translateX(-50%)
}

/* Gallery Section Styling */
.ls-title--gallery {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden
}

@keyframes gallery-pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(96, 165, 250, .4)
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(96, 165, 250, .3)
  }
}

@keyframes gallery-glow {
  0% {
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, .3))
  }

  100% {
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, .4))
  }
}

.gallery-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(96, 165, 250, .2), rgba(167, 139, 250, .2));
  border: 1px solid rgba(96, 165, 250, .4);
  border-radius: 20px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
  animation: gallery-pulse 3s ease-in-out infinite
}

.gallery-main-title {
  margin: 0 0 16px;
  line-height: .9
}

.gallery-title-line1 {
  display: block;
  font-size: clamp(24px, 3.5vw, 42px);
  color: #93c5fd;
  text-shadow: 0 0 20px rgba(147, 197, 253, .5)
}

.gallery-title-line2 {
  display: block;
  font-size: clamp(32px, 4.8vw, 58px);
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gallery-glow 4s ease-in-out infinite alternate
}

.gallery-subtitle {
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  position: relative
}

.gallery-subtitle::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
  transform: translateX(-50%)
}

/* Arena gallery grid - FORCE FILL LAYOUT */
.arena-gallery {
  display: grid !important;
  gap: 16px !important;
  margin: 40px 0 !important;
  padding: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important
}

.arena-gallery.cols-2 {
  grid-template-columns: repeat(2, 1fr) !important
}

.arena-gallery.cols-3 {
  grid-template-columns: repeat(3, 1fr) !important
}

.arena-gallery.cols-4 {
  grid-template-columns: repeat(4, 1fr) !important
}

.arena-gallery.cols-5 {
  grid-template-columns: repeat(5, 1fr) !important
}

.arena-gallery.cols-6 {
  grid-template-columns: repeat(6, 1fr) !important
}

/* FORCE REMOVE ALL PADDING/MARGINS FROM GALLERY ITEMS */
.arena-gallery>* {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Gallery Photo Styling */
.arena-photo {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  background: rgba(15, 23, 42, 0.5);
  cursor: pointer;
}

.arena-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.arena-photo:hover img {
  transform: scale(1.05);
}

.photo-frame {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Allow clicks to pass through to the link */
}

.arena-photo:hover .photo-overlay {
  opacity: 1;
}

.photo-zoom {
  color: white;
  font-size: 24px;
  font-weight: bold;
  pointer-events: none; /* Allow clicks to pass through */
}

/* Arena photo items - FORCE FILL CONTAINERS */
.arena-photo {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 16px;
  background: rgba(15, 23, 42, .4);
  border: 1px solid rgba(96, 165, 250, .2);
  transition: all .3s ease;
  display: block !important;
  width: 100% !important;
  height: 250px !important;
  padding: 0 !important;
  margin: 0 !important
}

.arena-photo:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, .4);
  box-shadow: 0 12px 32px rgba(96, 165, 250, .2)
}

.arena-photo.arena-spotlight {
  grid-column: span 2;
  grid-row: span 2;
  height: 500px !important
}

.photo-frame {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  border-radius: 15px;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important
}

.photo-frame img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform .3s ease;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  display: block !important
}

.arena-photo:hover .photo-frame img {
  transform: scale(1.05)
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(96, 165, 250, .1), rgba(167, 139, 250, .1));
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: center;
  justify-content: center
}

.arena-photo:hover .photo-overlay {
  opacity: 1
}

.photo-zoom {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(96, 165, 250, .2);
  border: 2px solid rgba(96, 165, 250, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #60a5fa;
  backdrop-filter: blur(8px);
  transition: all .2s ease
}

.arena-photo:hover .photo-zoom {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(96, 165, 250, .4)
}

@media (prefers-reduced-motion: reduce) {

  .gallery-badge,
  .gallery-title-line2 {
    animation: none
  }

  .arena-photo,
  .photo-frame img,
  .photo-zoom {
    transition: none
  }
}

@media (max-width: 768px) {
  .ls-title--gallery {
    padding: 30px 15px
  }

  .gallery-badge {
    font-size: 11px;
    padding: 5px 12px
  }
}

/* Gallery Responsive - Override all column settings */
@media (max-width: 1024px) {
  .arena-gallery,
  .arena-gallery.cols-2,
  .arena-gallery.cols-3,
  .arena-gallery.cols-4,
  .arena-gallery.cols-5,
  .arena-gallery.cols-6 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px !important;
  }

  .arena-photo.arena-spotlight {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .arena-gallery,
  .arena-gallery.cols-2,
  .arena-gallery.cols-3,
  .arena-gallery.cols-4,
  .arena-gallery.cols-5,
  .arena-gallery.cols-6 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin: 30px 0 !important;
  }

  .arena-photo.arena-spotlight {
    grid-column: span 2;
    grid-row: span 1;
  }

  .ls-title--gallery {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .arena-gallery,
  .arena-gallery.cols-2,
  .arena-gallery.cols-3,
  .arena-gallery.cols-4,
  .arena-gallery.cols-5,
  .arena-gallery.cols-6 {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 20px 0 !important;
  }

  .arena-photo.arena-spotlight {
    grid-column: span 1;
    grid-row: span 1;
  }

  .arena-photo {
    min-height: 200px;
  }

  .ls-title--gallery {
    padding: 20px 10px;
  }

  .gallery-badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  /* Video Overlay Mobile */
  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button i {
    font-size: 20px;
  }

  .play-text {
    font-size: 12px;
  }
}