/* style/index-game-fairness-technical-guarantee.css */
.page-index-game-fairness-technical-guarantee {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray text for contrast on dark background */
  background-color: #000000; /* Black background */
  line-height: 1.6;
}

.page-index-game-fairness-technical-guarantee .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-game-fairness-technical-guarantee .hero-section {
  background: linear-gradient(135deg, #000000, #333333);
  color: #FFD700;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-game-fairness-technical-guarantee .hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 0;
}

.page-index-game-fairness-technical-guarantee .hero-section h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 1;
}

.page-index-game-fairness-technical-guarantee .hero-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #F0F0F0;
  position: relative;
  z-index: 1;
}

.page-index-game-fairness-technical-guarantee .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-index-game-fairness-technical-guarantee .btn-primary {
  background-color: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
}

.page-index-game-fairness-technical-guarantee .btn-primary:hover {
  background-color: #E0B500;
  transform: translateY(-2px);
}

.page-index-game-fairness-technical-guarantee .btn-secondary {
  background-color: #DC143C;
  color: #FFFFFF;
  border: 2px solid #DC143C;
  margin-top: 20px;
}

.page-index-game-fairness-technical-guarantee .btn-secondary:hover {
  background-color: #C00028;
  transform: translateY(-2px);
}

.page-index-game-fairness-technical-guarantee .content-block {
  padding: 60px 0;
  border-bottom: 1px solid #333333;
}

.page-index-game-fairness-technical-guarantee .content-block:last-of-type {
  border-bottom: none;
}

.page-index-game-fairness-technical-guarantee h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-game-fairness-technical-guarantee h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #DC143C;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-index-game-fairness-technical-guarantee h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-game-fairness-technical-guarantee p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-index-game-fairness-technical-guarantee strong {
  color: #FFD700;
}

.page-index-game-fairness-technical-guarantee em {
  font-style: italic;
  color: #F0F0F0;
}

.page-index-game-fairness-technical-guarantee .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-game-fairness-technical-guarantee .feature-item {
  background-color: #1A1A1A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-game-fairness-technical-guarantee .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-index-game-fairness-technical-guarantee .feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-index-game-fairness-technical-guarantee .feature-item p {
  color: #C0C0C0;
}

.page-index-game-fairness-technical-guarantee .feature-image {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 8px;
}

.page-index-game-fairness-technical-guarantee ol {
  list-style: decimal;
  padding-left: 25px;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-index-game-fairness-technical-guarantee ol li {
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-index-game-fairness-technical-guarantee .faq-section {
  background-color: #0A0A0A;
}

.page-index-game-fairness-technical-guarantee .faq-item {
  background-color: #1A1A1A;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-game-fairness-technical-guarantee .faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.page-index-game-fairness-technical-guarantee .faq-item h3::after {
  content: '+';
  margin-left: auto;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-game-fairness-technical-guarantee .faq-item.active h3::after {
  transform: rotate(45deg);
}

.page-index-game-fairness-technical-guarantee .faq-item p {
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 10px;
}

.page-index-game-fairness-technical-guarantee .faq-item.active p {
  max-height: 200px; /* Adjust as needed */
  padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-game-fairness-technical-guarantee .hero-section h1 {
    font-size: 2.5em;
  }

  .page-index-game-fairness-technical-guarantee .hero-section p {
    font-size: 1em;
  }

  .page-index-game-fairness-technical-guarantee h2 {
    font-size: 2em;
  }

  .page-index-game-fairness-technical-guarantee h3 {
    font-size: 1.5em;
  }

  .page-index-game-fairness-technical-guarantee .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-game-fairness-technical-guarantee .hero-section h1 {
    font-size: 2em;
  }

  .page-index-game-fairness-technical-guarantee .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-index-game-fairness-technical-guarantee .content-block {
    padding: 40px 0;
  }
}