html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow-x: hidden;
}

* {
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Edge */
  user-select: none;         /* Standard */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  background:
    radial-gradient(circle at top, #1c1c1c, #000),
    repeating-linear-gradient(
      45deg,
      #111 0,
      #111 2px,
      #0e0e0e 2px,
      #0e0e0e 4px
    );
  color: #fff;
}

/* SLIDER */
#slider {
  height: 100svh;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}

/* SLIDE */
.slide {
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide h1 {
  font-size: 42px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.line {
  width: 260px;
  height: 3px;
  background: #C6A85B;
  margin: 14px auto 40px;
}

.slide img {
  width: 720px;
  max-width: 90%;
  filter: drop-shadow(0 40px 40px rgba(0,0,0,0.85));
}

/* STATS */
.stats {
  display: flex;
  gap: 22px;
  margin-top: 40px;
}

.stat {
  background: rgba(0,0,0,0.75);
  padding: 18px 28px;
  border-radius: 6px;
  min-width: 150px;
}

.stat strong {
  display: block;
  font-size: 26px;
}

.stat span {
  font-size: 12px;
  opacity: 0.7;
}

/* DOTS */
.dots {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #444;
  border-radius: 50%;
}

.dots .active {
  background: #C6A85B;
}

/* ACTIONS */
.actions {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.btn.whatsapp {
  background: #C6A85B;
  color: #000;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
  .slide h1 {
    font-size: 28px;
  }

  .stats {
    flex-direction: column;
    gap: 14px;
  }
}
.topbar {
  position: fixed;
  top: 20px;
  left: 40px;
  z-index: 10;
}

.logo {
  height: 65px;
}
.cta {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.info-btn {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #222;
  color: white;
  border: none;
  font-size: 18px;
}

.whatsapp-btn {
  background: #C6A85B;
  color: black;
  padding: 0 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.socials {
  position: fixed;
  right: 20px;
  top: 35%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.socials a {
  width: 42px;
  height: 42px;
  background: #111;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
}
/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.modal-box {
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
  border: 1px solid #C6A85B;
  padding: 30px;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  position: relative;
}

.modal-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

.modal-box input,
.modal-box textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  background: #000;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
}

.modal-box textarea {
  resize: none;
  height: 90px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.modal-actions button {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.modal-actions button:first-child {
  background: #25d366;
  color: #000;
}

.modal-actions button:last-child {
  background: #222;
  color: #fff;
}

.close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
}
/* =========================
   MOBILE COMPACT MODE
   ========================= */
@media (max-width: 480px) {

  .slide {
    justify-content: flex-start;
    padding-top: 80px;
  }

  .slide h1 {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .line {
    width: 160px;
    margin-bottom: 18px;
  }

  .slide img {
    width: 90%;
    max-width: 340px;
    margin-bottom: 16px;
  }

  .stats {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .stat {
    padding: 12px 16px;
    min-width: auto;
  }

  .stat strong {
    font-size: 20px;
  }

  .stat span {
    font-size: 11px;
  }

  .cta {
    margin-top: 14px;
    gap: 10px;
  }

  .info-btn,
  .whatsapp-btn {
    height: 42px;
  }

  .whatsapp-btn {
    padding: 0 16px;
    font-size: 14px;
  }

  .dots {
    right: 10px;
  }
}
@media (max-width: 480px) {

  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat {
    padding: 12px 14px;
    text-align: center;
  }

  .stat:nth-child(3) {
    grid-column: 1 / -1; /* volle Breite */
  }

}


.slide {
  opacity: 0.6;
  transform: scale(0.96);
  transition: all 0.6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}
/* =========================
   MOBILE CENTER ALIGN FIX
   ========================= */
@media (max-width: 480px) {

  .slide {
    align-items: center;
    text-align: center;
  }

  .slide img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .stats {
    justify-items: center;
    align-items: center;
  }

  .stat {
    width: 100%;
    max-width: 240px;
  }

  .cta {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .cta button,
  .cta a {
    margin: 0 auto;
  }

}
/* =========================
   MOBILE – LEEREN PLATZ UNTEN ENTFERNEN
   ========================= */
@media (max-width: 480px) {

  .slide {
    justify-content: center;   /* statt flex-start */
    padding-top: 40px;
    padding-bottom: 40px;
  }

}
/* INFO SLIDE */
.info-slide {
  justify-content: center;
  padding: 60px 20px;
}

.info-content {
  max-width: 620px;
  background: rgba(0,0,0,0.65);
  border: 1px solid #222;
  border-radius: 14px;
  padding: 30px;
  text-align: left;
}

.info-content h3 {
  margin-top: 20px;
  color: #C6A85B;
  font-size: 16px;
}

.info-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}
/* =========================
   LEGAL BUTTONS (INFO SLIDE)
   ========================= */
.legal-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.legal-buttons button {
  background: #111;
  border: 1px solid #333;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.legal-buttons button:hover {
  border-color: #C6A85B;
  color: #C6A85B;
}
/* LEGAL MODAL */
#legalModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#legalModal .modal-box {
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

#legalModal button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #C6A85B;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
/* ===== LEGAL TEXT FORMAT ===== */
.legal-text {
  font-size: 14px;
  line-height: 1.7;
  color: #eaeaea;
}

.legal-text h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 16px;
  color: #C6A85B;
}

.legal-text p {
  margin-bottom: 10px;
  opacity: 0.9;
}

.legal-text ul {
  margin-left: 18px;
  margin-bottom: 12px;
}

.legal-text li {
  margin-bottom: 6px;
}

.legal-footer {
  margin-top: 30px;
  font-size: 12px;
  opacity: 0.6;
  text-align: center;
}
.slide img {
  max-width: 75%;
  margin: 30px auto 0;
  display: block;
  transform: translateY(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  border-radius: 12px;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 60%);
  z-index: 0;
}
.slide > * {
  position: relative;
  z-index: 1;
}
.side-spec {
  position: absolute;
  top: 45%;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
}
.side-spec strong {
  display: block;
  color: #fff;
  font-size: 14px;
}
.side-spec.left { left: 60px; }
.side-spec.right { right: 60px; text-align: right; }
.admin-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all .25s ease;
  z-index: 9999;
}

.admin-btn:hover {
  color: #fff;
  border-color: #d4af37;
}
.side-spec {
  position: absolute;
  top: 32%;
  transform: translateY(-50%);
  font-size: 12px;
  opacity: .85;
  z-index: 2;
}

.side-spec span {
  display: block;
  font-size: 10px;
  letter-spacing: .1em;
  opacity: .6;
}

.side-spec.left {
  left: 20px;
  text-align: left;
}

.side-spec.right {
  right: 20px;
  text-align: right;
}


/* Standard: Desktop */
.mobile-specs {
  display: none;
}


.hero-claim {
  margin-top: 80px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  color: rgba(201, 179, 126, 0.85); /* Gold */
}
.badges {
  margin-top: 30px;
  margin-left: 32% ;
  display: flex;
  gap: 8px;
}

.badge {
  font-size: 8px;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.08);
  color: #d6b36a; /* Gold vom Logo */
  border: 1px solid rgba(214,179,106,0.35);
}

.badge.sport {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
/* .slide::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 10%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(214,179,106,0.18),
    transparent 70%
  );
  pointer-events: none;
} */
@supports (-webkit-touch-callout: none) {
  body {
    min-height: -webkit-fill-available;
  }
}

html, body {
  overscroll-behavior: none;
}
