.asshole{
  background: url(../../../images/style/leere/nightfall1.png) no-repeat center center;
  background-size: cover;
}
#flasche{
    text-align: left;
    line-height: 1.8;
    margin: 0;
    font-family: Tahoma, Verdana, Arial, Sans-Serif;
    background-color: #111111;
    font-size: 1.3rem;
    margin: 0 auto;
    max-width: 1200px;
    padding: 34px 36px;
    width: 98%;
}
/**/
.menuslider-wrapper {
  width: 100%;
  height: 500px;
  background: url(../../../images/style/leere/nightfall1.png) no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.menuslider-tabs {
  position: relative;
  height: 100%;
  width: 1270px;
  background: rgba(0, 0, 0, 0.5); /* optional dunkler Overlay */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 36px;
  box-sizing: border-box;
 margin: auto auto;
}

.menuslider-tabs input[type="radio"] {
  display: none;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-buttons label {
  background: var(--background);
  color: var(--white2);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--fontgen);
  cursor: pointer;
  border: 1px solid var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.tab-buttons label:hover {
  background: var(--main);
  color: var(--white);
}

.tab-buttons label i {
  color: var(--main);
  font-size: 16px;
}

/* Inhaltsbereich */
.tab-content {
  position: relative;
  height: 100%;
  margin-top: 20px;
}

.tab-content .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  display: none;
  padding: 20px;
  box-sizing: border-box;
  animation: slideIn 0.5s ease;
}

.tab-content .inner {
  color: var(--white3);
  padding: 30px;
  border-radius: 12px;
  font-family: var(--fontgen);
  font-size: 16px;
}

/* Sichtbarmachen je nach Tab */
#tab0:checked ~ .tab-content #content0,
#tab1:checked ~ .tab-content #content1,
#tab2:checked ~ .tab-content #content2,
#tab3:checked ~ .tab-content #content3,
#tab4:checked ~ .tab-content #content4 {
  display: block;
}

/* Slide-Effekt */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiveness */
@media (max-width: 768px) {
  .menuslider-wrapper {
    height: auto;
  }

  .tab-content .content {
    position: relative;
    height: auto;
  }

  .tab-buttons {
    flex-direction: column;
    align-items: center;
  }
}
