:root {
  --red: rgba(218, 30, 40, 0.8);
  --yellow: rgba(241, 194, 27, 0.8);
  --green: rgba(36, 161, 72, 0.8);
}

.jugendschutz-container {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.jugendschutz-container__content {
  padding-top: 180px;
  padding-left: 250px;
  flex: 0.65;
  display: flex;
  flex-direction: column;
}

.jugendschutz-container__text {
  display: flex;
  flex-direction: column;
  width: 85%;
  gap: 12px;
  color: var(--text-color);
  font-size: var(--text-sm);
}

.jugendschutz-container__text td {
  width: 16%;
  padding: 1.2%;
  border-top: 1px solid var(--border-tab-color);
  border-right: 1px solid var(--border-tab-color);
  color: #fff;
}

.jugendschutz-container .fsk {
  margin: 50px 0px;
}

.jugendschutz-container__image {
  position: relative;
  display: flex;
  flex: 0.35;
  overflow: hidden;
}

.jugendschutz-container__image img {
  width: 100%;
  object-fit: cover;
}

.fsk th {
  text-align: center;
}

.img-fluid {
  width: 85%;
  max-width: 85%;
  height: auto;
  vertical-align: middle;
  margin-bottom: 5px;
}

.jugendschutz-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to right,
      #161b21 0%,
      #161b21fa 10%,
      #161b21f1 20%,
      #161b21e7 30%,
      #161b21ab 50%,
      #161b2198 100%
    ),
    linear-gradient(
      to top,
      #161b21 0%,
      #161b21fa 10%,
      #161b21f1 20%,
      #161b21e7 30%,
      #161b21ab 50%,
      #161b2198 100%
    );
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
}

.fsk-wrapper {
  width: 100%;
  height: auto;
}

.fsk-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.fsk-container__title {
  font-size: var(--text-lg);
}

.fsk-container__content {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.fsk-legende {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 50px;
}

.fsk-legende__item {
  display: flex;
  gap: 8px;
  background-color: var(--dark-card-backgroundcolor);
  border-radius: 8px;
}

.fsk-legende__item1 {
  width: 8px;
  background-color: var(--green);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.fsk-legende__item2 {
  width: 8px;
  background-color: var(--yellow);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.fsk-legende__item3 {
  width: 8px;
  background-color: var(--red);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.color_1 {
  background-color: var(--green);
}

.color_3 {
  background-color: var(--yellow);
}

.color_4 {
  background-color: var(--red);
}

/* FAQ FSK */
.fsk-faq-container {
  width: 100%;
  max-width: 100%;
  margin: 100px 0px 75px 0px;
}

/* Accordion styles */
.fsk-accordion .fsk-accordion-item {
  border-bottom: 1px solid var(--border-tab-color);
}

.fsk-accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: var(--text-color);
  font-size: var(--text-sm);
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.fsk-accordion button:hover,
.fsk-accordion button:focus {
  cursor: pointer;
  color: var(--ticket-color);
}

.fsk-accordion .fsk-accordion-title {
  padding: 1em 1.5em 1em 0;
  max-width: 90%;
}

.fsk-accordion .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
}

.fsk-accordion button[aria-expanded="true"] {
  color: var(--ticket-color);
}

.fsk-accordion button[aria-expanded="true"] + .fsk-accordion-content {
  opacity: 1;
  max-height: 1000px; /* Allow the content to expand fully */
  transition: max-height 0.5s ease, opacity 0.5s ease; /* Smooth transition */
}

.fsk-accordion .fsk-accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease; /* Smooth transition */
}

.fsk-accordion .fsk-accordion-content p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 1em !important;
}

/* FSK Links */
.fsk-links-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: var(--text-color);
  font-size: var(--text-sm);
}

.fsk-youthprotection-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text-color);
  font-size: var(--text-sm);
  margin-bottom: 75px;
}

.fsk-youthprotection-container p,
.fsk-links-container p {
  margin: 0 !important;
}

.fsk-links-container a {
  color: var(--text-color);
  font-size: var(--text-sm);
}

@media (max-width: 1024px) {
  .jugendschutz-container__content {
    flex: 1;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-left: 0px;
  }

  .jugendschutz-container__image {
    display: none;
  }
}

@media (max-width: 768px) {
  .fsk-container__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
