  :root {
    --mystique-gold: #B58A3B;
    --mystique-gold-light: #D7B56D;
    --mystique-ivory: #E9DFC9;
    --mystique-soft: #CDBF9E;
    --mystique-divider: rgba(181, 138, 59, 0.34);
    --mystique-glow: rgba(181, 138, 59, 0.18);
    --mystique-glow-soft: rgba(181, 138, 59, 0.08);
  }


/*
  html, body {
    margin: 0;
    padding: 0;
    background: transparent !important;
  }

*/


  .mystique-faq-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
    background: transparent !important;
  }

  .mystique-faq-item {
    position: relative;
    border-bottom: 1px solid var(--mystique-divider);
    background: transparent !important;
    box-shadow:
      0 1px 0 rgba(0, 0, 0, 0.75),
      0 -1px 0 rgba(215, 181, 109, 0.08),
      0 0 10px var(--mystique-glow-soft);
  }

  .mystique-faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 88px;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(215,181,109,0.72),
      rgba(181,138,59,0.18),
      transparent
    );
    opacity: 0.72;
    pointer-events: none;
  }

  .mystique-faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    display: block;
    padding: 21px 48px 21px 4px;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: 0.28px;
    color: var(--mystique-gold);
    background: transparent !important;
    transition:
      color 320ms ease,
      text-shadow 320ms ease,
      padding-left 320ms ease;
  }

  .mystique-faq-item summary::-webkit-details-marker {
    display: none;
  }

  .mystique-faq-item summary:hover,
  .mystique-faq-item summary:focus {
    color: var(--mystique-gold-light);
    text-shadow:
      0 0 10px rgba(181, 138, 59, 0.22),
      0 0 22px rgba(181, 138, 59, 0.10);
    outline: none;
  }

  .mystique-faq-item summary::after {
    content: " ";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 25px;
    line-height: 1;
    font-weight: 400;
    color: var(--mystique-gold);
    opacity: 0.92;
    transition:
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      color 300ms ease,
      opacity 300ms ease;
  }

  .mystique-faq-item[open] summary {
    color: var(--mystique-gold-light);
    padding-left: 10px;
    text-shadow:
      0 0 10px rgba(181, 138, 59, 0.18),
      0 0 24px rgba(181, 138, 59, 0.08);
  }

  .mystique-faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    color: var(--mystique-gold-light);
    opacity: 1;
  }

  .mystique-faq-answer {
    color: var(--mystique-ivory);
    font-size: 16px;
    line-height: 1.68;
    padding: 0 44px 24px 10px;
    background: transparent !important;
    animation: mystiqueReveal 420ms ease;
  }

  @keyframes mystiqueReveal {
    from {
      opacity: 0;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mystique-faq-answer p {
    margin: 0;
  }

  .mystique-faq-answer strong {
    color: var(--mystique-gold-light);
    font-weight: 600;
  }

  @media (max-width: 700px) {
    .mystique-faq-container {
      max-width: 100%;
      padding: 0 14px;
    }

    .mystique-faq-item summary {
      font-size: 17px;
      line-height: 1.35;
      padding: 17px 40px 17px 0;
      letter-spacing: 0.15px;
    }

    .mystique-faq-item[open] summary {
      padding-left: 5px;
    }

    .mystique-faq-item summary::after {
      right: 3px;
      font-size: 23px;
    }

    .mystique-faq-answer {
      font-size: 15px;
      line-height: 1.58;
      padding: 0 28px 19px 2px;
    }

    .mystique-faq-item::before {
      width: 60px;
    }
  }

  @media (max-width: 420px) {
    .mystique-faq-container {
      padding: 0 10px;
    }

    .mystique-faq-item summary {
      font-size: 16.5px;
      padding-top: 15px;
      padding-bottom: 15px;
    }

    .mystique-faq-answer {
      font-size: 14.75px;
    }
  }


#showback {
    background-image: linear-gradient(#000000, #3f0307);
}