/* === FAQ Stake Black Edition === */

.faq__block {
  background: #0b0b0b; 
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__block + .faq__block {
  margin-top: 14px;
}


label.faq__question {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 18px 22px !important;
  color: #d8dee7;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #111111 0%, #161616 100%);
  transition: background 0.35s ease, color 0.35s ease;
}

label.faq__question:hover {
  background: linear-gradient(90deg, #151515 0%, #1b1b1b 100%);
  color: #ffffff;
}

.faq__question:before {
  content: '';
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #9ba4b0;
  border-left: 2px solid #9ba4b0;
  transform: rotateZ(-45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
  opacity: 0.8;
}

.faq__question.open:before {
  transform: rotate(135deg);
  border-color: #ffffff;
}

.faq__answer {
  display: none;
  padding: 20px 22px 14px;
  background: #0f0f0f;
  color: #cfd5de;
  line-height: 1.6;
  font-size: 15px;
  letter-spacing: 0.2px;
  animation: fadeIn 0.3s ease;
}

.faq__answer p {
  color: #e4e8ed;
  margin: 0 0 14px;
}

.faq__answer a {
  color: #bfc8d2;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.faq__answer a:hover {
  color: #ffffff;
  text-decoration: none;
}


.fag-checkbox {
  position: absolute;
  left: -9999px;
}

.fag-checkbox:checked ~ .faq__answer {
  display: block;
}

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