body{
  margin:0;
  font-family:"Segoe UI",sans-serif;
  background:#000;
  color:white;
  padding-bottom:env(safe-area-inset-bottom);
  overflow-x:hidden;
}

.container{
  width:1000px;
  margin:0 auto;
  position:relative;

  background:linear-gradient(
    90deg,
    rgba(255,0,204,0.18) 0%,
    rgba(255,0,204,0.28) 15%,
    rgba(255,0,204,0.45) 30%,
    rgba(255,0,204,0.7) 45%,
    rgba(255,0,204,0.7) 55%,
    rgba(255,0,204,0.45) 70%,
    rgba(255,0,204,0.28) 85%,
    rgba(255,0,204,0.18) 100%
  );

  animation:containerGlow 6s ease-in-out infinite;

  box-shadow:
    0 0 80px rgba(255,0,170,0.35),
    inset 0 0 120px rgba(255,0,170,0.25);
}

@keyframes containerGlow{
  0%{
    box-shadow:
      0 0 80px rgba(255,0,170,0.25),
      inset 0 0 120px rgba(255,0,170,0.15);
  }

  50%{
    box-shadow:
      0 0 120px rgba(255,0,170,0.5),
      inset 0 0 180px rgba(255,0,170,0.35);
  }

  100%{
    box-shadow:
      0 0 80px rgba(255,0,170,0.25),
      inset 0 0 120px rgba(255,0,170,0.15);
  }
}

.container::before,
.container::after{
  content:"";
  position:absolute;
  top:0;
  width:3px;
  height:100%;

  background:linear-gradient(
    90deg,
    #000 0%,
    #1a0012 15%,
    #5a003f 35%,
    #ff00cc 50%,
    #5a003f 65%,
    #1a0012 85%,
    #000 100%
  );

  box-shadow:
    0 0 10px rgba(255,0,204,0.4),
    0 0 20px rgba(255,0,204,0.3),
    0 0 40px rgba(255,0,204,0.2);
}

.container::before{
  left:0;
}

.container::after{
  right:0;
}

.ticker{
  position:relative;
  overflow:hidden;

  display:flex;

  padding:14px 0;

  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,0,204,0.12),
    rgba(255,0,204,0.25),
    rgba(255,0,204,0.12),
    transparent
  );

  backdrop-filter:blur(6px);

  border-top:1px solid rgba(255,0,204,0.2);
  border-bottom:1px solid rgba(255,0,204,0.2);
}

.ticker-track{
  white-space:nowrap;
  padding-right:80px;

  animation:tickerMove 35s linear infinite;

  font-weight:500;
  letter-spacing:1px;

  color:#ff8be8;

  text-shadow:
    0 0 6px #ff00cc,
    0 0 15px rgba(255,0,204,0.6);
}

@keyframes tickerMove{
  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-100%);
  }
}

.header{
  text-align:center;
  padding-top:60px;
}

.logo img{
  max-width:750px;
  width:100%;
  height:auto;

  display:block;
  margin:auto;

  filter:
    drop-shadow(0 0 5px #ff00cc)
    drop-shadow(0 0 15px #ff00cc)
    drop-shadow(0 0 30px #ff00cc);
}

.subtitle{
  margin-top:5px;
  font-size:22px;
  color:#ff66cc;
}

.nav{
  text-align:center;
  margin-top:15px;
}

.nav button{
  background:#2a0022;
  border:none;
  color:white;

  padding:14px 26px;
  margin:10px;

  border-radius:12px;

  font-size:16px;
  font-weight:500;

  letter-spacing:.5px;

  transition:.3s;
  cursor:pointer;
}

.nav button:hover{
  background:#ff00aa;

  box-shadow:
    0 0 15px #ff00aa,
    0 0 30px #ff00aa;
}

.divider{
  display:flex;
  align-items:center;
  justify-content:center;

  width:70%;
  margin:12px auto;
}

.divider::before,
.divider::after{
  content:"";
  flex:1;
  height:2px;

  background:linear-gradient(
    90deg,
    transparent,
    #ff00cc,
    #ffffff 50%,
    #ff00cc,
    transparent
  );

  box-shadow:
    0 0 6px #ff00cc,
    0 0 15px #ff00cc,
    0 0 30px #ff00cc,
    0 0 60px rgba(255,0,204,0.5);

  animation:neonLine 2.5s infinite alternate;
}

.divider::before{
  margin-right:15px;
}

.divider::after{
  margin-left:15px;
}

.divider-img{
  height:20px;
  width:auto;
  display:block;
  margin:0 auto;
}

@keyframes neonLine{
  0%{
    box-shadow:
      0 0 6px #ff00cc,
      0 0 15px #ff00cc,
      0 0 25px #ff00cc;
  }

  100%{
    box-shadow:
      0 0 10px #ff00cc,
      0 0 25px #ff00cc,
      0 0 40px #ff00cc;
  }
}

.social{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin:40px 0;
}

.social a{
  width:60px;
  height:60px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:10px;

  background:rgba(255,255,255,0.05);

  transition:.3s;
}

.social img{
  width:28px;
}

.social a:hover{
  transform:scale(1.2);

  box-shadow:
    0 0 10px #ff00cc,
    0 0 25px #ff00cc,
    0 0 50px #ff00cc;
}

.info-text{
  width:85%;
  margin:50px auto;
  padding:40px;

  border-radius:15px;

  background:rgba(0,0,0,0.4);

  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 0 25px rgba(255,0,204,0.2),
    inset 0 0 40px rgba(255,0,204,0.1);
}

.info-text p{
  line-height:1.8;
  color:#ddd;
  margin-bottom:18px;
  text-align:center;
}

.info-text strong{
  color:#ff66dd;

  text-shadow:
    0 0 8px #ff00cc,
    0 0 20px #ff00cc;
}

.gallery-title{
  text-align:center;
  font-size:28px;
  margin:40px 0 20px;
  color:#ff66dd;

  text-shadow:
    0 0 10px #ff00cc,
    0 0 25px #ff00cc,
    0 0 50px rgba(255,0,204,0.6);
}

.gallery-slider{
  width:100%;
  max-width:900px;
  margin:60px auto;
  position:relative;
  overflow:hidden;
}

.gallery-track{
  display:flex;
  width:100%;
  transition:transform .4s ease;
}

.gallery-item{
  flex:0 0 33.33%;
  padding:10px;
  transition:.4s;
}

.gallery-item img{
  width:100%;
  height:220px;
  object-fit:cover;

  border-radius:12px;

  opacity:.6;
  transform:scale(.9);

  transition:.4s;
}

.gallery-item.active img{
  opacity:1;
  transform:scale(1);

  box-shadow:
    0 0 20px #ff00cc,
    0 0 50px #ff00cc;
}

.gallery-item:hover img{
  transform:scale(1.05);
  opacity:1;
}

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  background:rgba(255,0,204,0.25);

  border:none;
  color:white;

  font-size:28px;

  padding:12px 16px;

  cursor:pointer;

  border-radius:10px;

  z-index:10;

  backdrop-filter:blur(6px);
}

.arrow.left{
  left:10px;
}

.arrow.right{
  right:10px;
}

.arrow:hover{
  background:#ff00cc;

  box-shadow:
    0 0 10px #ff00cc,
    0 0 30px #ff00cc;

  transform:translateY(-50%) scale(1.1);
}

.lightbox{
  display:none;
  position:fixed;
  inset:0;

  background:rgba(0,0,0,0.95);

  z-index:9999;

  justify-content:center;
  align-items:center;
}

.lightbox.active{
  display:flex;
}

.lightbox img{
  max-width:90%;
  max-height:80%;
  border-radius:12px;
}

.lightbox .close{
  position:absolute;
  top:20px;
  right:30px;

  font-size:30px;
  cursor:pointer;
}

.lb-left,
.lb-right{
  position:absolute;
  top:50%;

  transform:translateY(-50%);

  background:rgba(255,0,204,0.3);

  border:none;
  color:white;

  font-size:30px;

  padding:10px;

  cursor:pointer;
}

.lb-left{
  left:20px;
}

.lb-right{
  right:20px;
}

.modal{
  display:none;
  position:fixed;
  inset:0;

  background:rgba(0,0,0,0.85);

  z-index:999;

  align-items:center;
  justify-content:center;

  padding:20px;
}

.modal.active{
  display:flex;
}

.modal-content{
  background:#0a0a0a;

  padding:30px;

  width:90%;
  max-width:700px;
  max-height:85vh;

  border-radius:12px;

  overflow-y:auto;
  position:relative;

  border:1px solid rgba(255,0,204,0.4);

  box-shadow:
    0 0 20px rgba(255,0,204,0.3),
    0 0 60px rgba(255,0,204,0.2);
}

.close{
  position:absolute;
  top:10px;
  right:15px;

  font-size:24px;

  cursor:pointer;

  color:#ff66dd;
}

.map-buttons{
  display:flex;
  gap:15px;
  justify-content:center;
  margin-top:20px;
  flex-wrap:wrap;
}

.map-btn,
.event-btn,
.reviews-btn,
.partner-card,
footer button,
#newsletterForm button,
#kontaktForm button{
  transition:.3s;
}

.map-btn,
.event-btn,
.reviews-btn,
.partner-card{
  display:inline-block;

  padding:12px 18px;

  background:rgba(255,255,255,0.08);

  color:white;

  text-decoration:none;

  border-radius:8px;
}

.map-btn:hover,
.event-btn:hover,
.reviews-btn:hover,
.partner-card:hover,
footer button:hover,
#newsletterForm button:hover,
#kontaktForm button:hover{
  background:#ff00cc;

  transform:translateY(-2px);

  box-shadow:
    0 0 10px #ff00cc,
    0 0 30px #ff00cc,
    0 0 60px #ff00cc;
}

#newsletterForm input,
#kontaktForm input:not([type="checkbox"]),
#kontaktForm textarea{
  width:100%;

  margin-bottom:12px;
  padding:14px;

  border:none;
  border-radius:10px;

  background:#1a1a1a;
  color:white;

  outline:none;

  transition:.3s;
}

#newsletterForm input:focus,
#kontaktForm input:not([type="checkbox"]):focus,
#kontaktForm textarea:focus{
  box-shadow:
    0 0 5px #ff00cc,
    0 0 15px #ff00cc,
    0 0 30px rgba(255,0,204,0.5);
}

#kontaktForm textarea{
  min-height:120px;
  resize:none;
}

.newsletter-consent{
  display:flex;
  align-items:center;
  gap:10px;

  margin:15px 0;

  font-size:14px;
  color:#ccc;
}

.newsletter-consent input{
  width:auto !important;
  accent-color:#ff00cc;
}

#newsletterForm button,
#kontaktForm button{
  width:100%;

  background:#ff00cc;
  border:none;

  padding:14px;

  border-radius:12px;

  color:white;

  cursor:pointer;
}

.partner-grid{
  display:grid;
  gap:20px;
  margin-top:30px;
}

.partner-card{
  display:flex;
  align-items:center;
  justify-content:center;

  padding:22px;

  border-radius:14px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(10px);
}

.partner-card img{
  max-width:220px;
  width:100%;

  max-height:70px;

  object-fit:contain;

  transition:.3s;
}

.footer-section{
  margin-top:50px;

  padding:40px 20px 80px;

  text-align:center;

  background:linear-gradient(
    180deg,
    transparent,
    rgba(0,0,0,0.6)
  );
}

.footer-section::before{
  content:"";

  display:block;

  width:60%;
  height:2px;

  margin:0 auto 30px;

  background:linear-gradient(
    90deg,
    transparent,
    #ff00cc,
    #ff66dd,
    #ff00cc,
    transparent
  );

  box-shadow:
    0 0 10px #ff00cc,
    0 0 25px #ff00cc;
}

.banner img{
  max-width:728px;
  width:100%;

  border-radius:10px;

  box-shadow:
    0 0 15px rgba(255,0,204,0.3);
}

footer{
  margin-top:25px;
}

footer button{
  padding:10px 16px;
  margin:6px;

  border:none;
  border-radius:8px;

  background:rgba(255,255,255,0.08);

  color:white;

  cursor:pointer;
}

.footer-copy{
  margin-top:20px;
  font-size:14px;
  color:#aaa;

  text-shadow:
    0 0 5px rgba(255,0,204,0.3);
}

#loader{
  position:fixed;
  inset:0;

  background:#000;

  display:flex;
  align-items:center;
  justify-content:center;

  z-index:9999;

  transition:opacity .6s ease;
}

#loader.hidden{
  opacity:0;
  pointer-events:none;
}

.loader-inner{
  text-align:center;
}

.loader-logo{
  font-size:48px;
  font-weight:800;

  letter-spacing:6px;

  color:#ff00cc;

  text-shadow:
    0 0 10px #ff00cc,
    0 0 25px #ff00cc,
    0 0 50px #ff00cc;

  margin-bottom:30px;

  animation:pulseLogo 1.5s infinite;
}

.loader-bar{
  width:200px;
  height:4px;

  background:rgba(255,255,255,0.1);

  border-radius:10px;

  overflow:hidden;

  position:relative;

  margin:0 auto;
}

.loader-bar::after{
  content:"";

  position:absolute;
  top:0;
  left:-100%;

  width:100%;
  height:100%;

  background:linear-gradient(
    90deg,
    transparent,
    #ff00cc,
    #ffffff,
    #ff00cc,
    transparent
  );

  animation:loading 1.5s infinite;
}

@keyframes loading{
  0%{
    left:-100%;
  }

  100%{
    left:100%;
  }
}

@keyframes pulseLogo{
  0%{
    transform:scale(1);
    opacity:.8;
  }

  50%{
    transform:scale(1.1);
    opacity:1;
  }

  100%{
    transform:scale(1);
    opacity:.8;
  }
}

@media (max-width:1100px){
  .container{
    width:95%;
  }
}

@media (max-width:768px){

  .container{
    width:100%;
  }

  .logo img{
    max-width:90%;
  }

  .subtitle{
    font-size:16px;
  }

  .nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
  }

  .nav button{
    flex:1 1 40%;
    max-width:160px;

    padding:14px;

    font-size:15px;
  }

  .divider{
    width:90%;
  }

  .ticker-track{
    font-size:14px;
    animation:tickerMove 20s linear infinite;
  }

  .social a{
    width:50px;
    height:50px;
  }

  .social img{
    width:24px;
  }

  .info-text{
    width:90%;
    padding:25px;
  }

  .info-text p{
    font-size:14px;
  }

  .gallery-slider{
  overflow:hidden;
  margin:40px auto;
}

.gallery-track{
  display:flex;
  transition:transform .35s ease;
}

.gallery-item{
  flex:0 0 33.33%;
  padding:10px;
  transition:.4s;
}

.gallery-item img{
  width:100%;
  height:auto;

  border-radius:14px;

  object-fit:cover;

  opacity:1;
  transform:scale(1);
}

.arrow{
  width:44px;
  height:44px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;

  padding:0;

  border-radius:12px;
}

  .footer-section{
    padding:30px 15px 60px;
  }
}
.faq-wrapper{
  width:85%;
  margin:60px auto;
}

.faq-hero{
  text-align:center;
  margin-bottom:60px;
}

.faq-hero h1{
  font-size:48px;
  color:#ff66dd;

  margin-bottom:20px;

  text-shadow:
    0 0 10px #ff00cc,
    0 0 25px #ff00cc,
    0 0 50px rgba(255,0,204,0.6);
}

.faq-hero p{
  color:#ccc;
  font-size:18px;
  line-height:1.7;

  max-width:700px;
  margin:auto;
}

.faq-category{
  margin-bottom:50px;
}

.faq-category h2{
  color:#ff8be8;

  margin-bottom:25px;

  font-size:28px;

  text-shadow:
    0 0 8px rgba(255,0,204,0.5);
}

.faq-item{
  margin-bottom:18px;

  border-radius:16px;

  overflow:hidden;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(10px);

  box-shadow:
    0 0 15px rgba(255,0,204,0.12);

  transition:.3s;
}

.faq-item:hover{
  box-shadow:
    0 0 20px rgba(255,0,204,0.25),
    0 0 50px rgba(255,0,204,0.15);
}

.faq-question{
  width:100%;

  background:none;
  border:none;

  color:white;

  padding:22px 25px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  font-size:18px;
  font-weight:500;

  cursor:pointer;
}

.faq-question span{
  color:#ff66dd;
  font-size:28px;
  transition:.3s;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;

  transition:max-height .4s ease;
}

.faq-answer p{
  padding:0 25px 25px 25px;

  color:#ddd;

  line-height:1.8;
}

.faq-item.active .faq-answer{
  max-height:300px;
}
.faq-end{
  text-align:center;
  margin-top:90px;
}

.faq-end h3{
  font-size:38px;
  color:#ff66dd;

  margin-bottom:18px;

  text-shadow:
    0 0 10px #ff00cc,
    0 0 25px rgba(255,0,204,0.6);
}

.faq-end p{
  color:#ddd;

  font-size:18px;
  line-height:1.8;

  margin-bottom:35px;
}

@media(max-width:768px){

  .faq-wrapper{
    width:90%;
  }

  .faq-hero h1{
    font-size:36px;
  }

  .faq-category h2{
    font-size:24px;
  }

  .faq-question{
    font-size:16px;
    padding:20px;
  }

}