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

body {
  font-family: 'Montserrat', sans-serif;
  background: #f4f4f4;
  color: #111;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  width: 100%;
  padding: 60px 20px;
}

.section-dark {
  background: #111;
  color: #fff;
}

.section-light {
  background: #f4f4f4;
  color: #111;
}

.section-accent {
  background: #1f6f6d;
  color: #fff;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.header {
  background: #1f6f6d;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav a {
  color: #fff;
  margin-left: 20px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}

nav a:hover,
nav a.cta {
  background: #1f6f6d;
  color: #fff;
}

/* =========================
   INFO SECTION
========================= */
.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.video-card {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-video {
  width: 100%;
  max-width: 600px;
  margin-bottom: 20px;
  object-fit: contain;
}

.video-card iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
}

.text-left {
  flex: 1 1 500px;
}

/* =========================
   HIGHLIGHTS CARDS
========================= */
.highlights-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.highlight-card {
  flex: 1 1 120px;
  background: #1f6f6d;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card i {
  font-size: 24px;
  margin-bottom: 8px;
}

.highlight-card h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.highlight-card p {
  font-size: 0.85rem;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* =========================
   GAME SECTIONS
========================= */
.content.game {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card.slider {
  flex: 1 1 400px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.card.slider img {
  width: 100%;
  display: none;
}

.card.slider img.active {
  display: block;
}

.card.slider button.prev,
.card.slider button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(31,111,109,0.8);
  color: #fff;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
}

.card.slider button.prev { left: 10px; }
.card.slider button.next { right: 10px; }

.card.slider .dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.card.slider .dots span {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 3px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.card.slider .dots span.active {
  background: #1f6f6d;
}

.game-text {
  flex: 1 1 400px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.stat {
  flex: 1 1 120px;
  padding: 10px;
  background: #1f6f6d;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}

.stat.pop {
  transform: scale(1.05);
}

.stat .label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.stat .value {
  font-size: 1.1rem;
  font-weight: bold;
}

.stat.highlight .value {
  color: #6fd98f;
}

.stars i {
  color: #ffd700;
  margin-right: 2px;
}

/* =========================
   CODE FORM
========================= */
.code-form input {
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-right: 0.5rem;
}

.code-form button {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 6px;
  background: #1f6f6d;
  color: #fff;
  cursor: pointer;
}

.knopf{
  background-color: #000;   /* schwarz */
  color: #fff;              /* weißer Text */
  padding: 10px 18px;       /* Größe des Buttons */
  border: none;
  border-radius: 8px;       /* leicht abgerundet */
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.knopf2{
  background-color: #1f6f6d;  /* schwarz */
  color: #fff;              /* weißer Text */
  padding: 10px 18px;       /* Größe des Buttons */
  border: none;
  border-radius: 8px;       /* leicht abgerundet */
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease;
}


/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .two-col, .content.game {
    flex-direction: column;
  }
  .video-card iframe {
    height: 250px;
  }


/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-color: #1f6f6d;

    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

/* Links / Icons */
.bottom-nav a {
    flex: 1;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 26px;
    padding: 12px 0;

    /* Sanfte Tap-Animation */
    transition:
        transform 0.12s cubic-bezier(.4,0,.2,1),
        opacity 0.12s ease-out;
}

/* Tap-Effekt */
.bottom-nav a:active {
    transform: scale(0.88);
    opacity: 0.7;
}



  .raetsel-hinweis {
    font-size: 8rem;   
    text-align: center;
    margin: 40px 0 60px;
    letter-spacing: 15px;
  }


}

/* =========================
   HERO HEADER
========================= */

.hero {
  width: 100%;
  position: relative;
}

.hero-slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-overlay {
  position: absolute;
  bottom: 12%;
  left: 8%;
  max-width: 480px;
  background: rgba(31, 111, 109, 0.85);
  padding: 25px 30px;
  border-radius: 14px;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.hero-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.hero-dots span.active {
  background: #1f6f6d;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-slider {
    height: 60vh;
  }

  .hero-overlay {
    left: 5%;
    right: 5%;
    bottom: 10%;
    max-width: unset;
  }

  .hero-overlay h1 {
    font-size: 1.6rem;
  }
}



/* =========================
   MODERN CONTACT SECTION
========================= */

.contact-modern {
  text-align: center;
}

.contact-subline {
  max-width: 620px;
  margin: 12px auto 40px;
  font-size: 1.05rem;
  opacity: 0.85;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact-card {
  width: 260px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card i {
  font-size: 30px;
  margin-bottom: 10px;
  color: #6fd98f;
}

.contact-card .fa-whatsapp {
  color: #25D366;
}

.contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.contact-card a {
  color: #fff;
  text-decoration: underline;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.contact-hint {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 28px;
}

.contact-cta {
  font-size: 1.05rem;
}

.nav-item {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Tooltip */
.nav-tooltip {
  position: absolute;
  bottom: -38px;
  background: rgba(31, 111, 109, 0.95);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 2000;
}

/* Hover anzeigen */
.nav-item:hover .nav-tooltip {
  opacity: 1;
  transform: translateY(0);
}

