/* style/responsible-gaming-seeking-help-resources.css */

:root {
  --primary-color: #1A1A2E;
  --secondary-color: #E6B325;
  --text-light: #F5F5F5;
  --text-dark: #1A1A2E;
  --background-dark: #1A1A2E;
  --background-light: #f0f2f5;
  --accent-red: #e74c3c; /* Example for action calls */
  --border-color: #333;
}

.page-responsible-gaming-seeking-help-resources {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark background */
  background-color: var(--background-dark);
}

.page-responsible-gaming-seeking-help-resources .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-responsible-gaming-seeking-help-resources h1,
.page-responsible-gaming-seeking-help-resources h2,
.page-responsible-gaming-seeking-help-resources h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-responsible-gaming-seeking-help-resources h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--secondary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gaming-seeking-help-resources h2 {
  font-size: 2.2em;
  margin-top: 40px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.page-responsible-gaming-seeking-help-resources h3 {
  font-size: 1.6em;
  color: var(--text-light);
}

.page-responsible-gaming-seeking-help-resources p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-responsible-gaming-seeking-help-resources ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--text-light);
}

.page-responsible-gaming-seeking-help-resources ul li {
  margin-bottom: 8px;
}

.page-responsible-gaming-seeking-help-resources .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.page-responsible-gaming-seeking-help-resources .btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
}

.page-responsible-gaming-seeking-help-resources .btn-primary:hover {
  background-color: #f0c242; /* Slightly lighter gold */
  transform: translateY(-2px);
}

.page-responsible-gaming-seeking-help-resources .btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.page-responsible-gaming-seeking-help-resources .btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Hero Section */
.page-responsible-gaming-seeking-help-resources .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a3a5a 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 5px solid var(--secondary-color);
}

.page-responsible-gaming-seeking-help-resources .hero-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 40px;
  color: var(--text-light);
}

/* Info Section */
.page-responsible-gaming-seeking-help-resources .info-section {
  padding: 60px 0;
  background-color: var(--primary-color);
}

.page-responsible-gaming-seeking-help-resources .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-responsible-gaming-seeking-help-resources .info-card {
  background-color: #2a2a4a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-responsible-gaming-seeking-help-resources .info-card .card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(50%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold effect */
}

.page-responsible-gaming-seeking-help-resources .info-card h2 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.page-responsible-gaming-seeking-help-resources .info-card h3 {
  font-size: 1.4em;
  color: var(--text-light);
  margin-top: 20px;
}

.page-responsible-gaming-seeking-help-resources .info-card ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.page-responsible-gaming-seeking-help-resources .info-card ul li {
  color: var(--text-light);
}

/* AX88 Tools Section */
.page-responsible-gaming-seeking-help-resources .ax88-tools-section {
  background-color: #15152a;
  padding: 60px 0;
  text-align: center;
}

.page-responsible-gaming-seeking-help-resources .ax88-tools-section h2 {
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.page-responsible-gaming-seeking-help-resources .ax88-tools-section p {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.1em;
}

.page-responsible-gaming-seeking-help-resources .tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-responsible-gaming-seeking-help-resources .tool-item {
  background-color: #2a2a4a;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-responsible-gaming-seeking-help-resources .tool-item .tool-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: invert(80%) sepia(50%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold effect */
}

.page-responsible-gaming-seeking-help-resources .tool-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 0;
}

.page-responsible-gaming-seeking-help-resources .tool-item p {
  font-size: 0.95em;
  color: var(--text-light);
}

.page-responsible-gaming-seeking-help-resources .ax88-tools-section .cta-text {
  margin-top: 40px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--text-light);
}

/* FAQ Section */
.page-responsible-gaming-seeking-help-resources .faq-section {
  padding: 60px 0;
  background-color: var(--primary-color);
}

.page-responsible-gaming-seeking-help-resources .faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.page-responsible-gaming-seeking-help-resources .faq-item {
  background-color: #2a2a4a;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming-seeking-help-resources .faq-item h3 {
  color: var(--secondary-color);
  margin-top: 0;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-responsible-gaming-seeking-help-resources .faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-responsible-gaming-seeking-help-resources .faq-item.active h3::after {
  content: '-';
  transform: rotate(0deg);
}

.page-responsible-gaming-seeking-help-resources .faq-item p {
  color: var(--text-light);
  margin-top: 15px;
  display: none; /* Hidden by default */
}

.page-responsible-gaming-seeking-help-resources .faq-item.active p {
  display: block;
}

/* Contact CTA Section */
.page-responsible-gaming-seeking-help-resources .contact-cta-section {
  background-color: #15152a;
  padding: 60px 0;
  text-align: center;
  border-top: 5px solid var(--secondary-color);
}

.page-responsible-gaming-seeking-help-resources .contact-cta-section h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-responsible-gaming-seeking-help-resources .contact-cta-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gaming-seeking-help-resources .button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-responsible-gaming-seeking-help-resources h1 {
    font-size: 2em;
  }

  .page-responsible-gaming-seeking-help-resources h2 {
    font-size: 1.8em;
  }

  .page-responsible-gaming-seeking-help-resources .hero-section {
    padding: 60px 0;
  }

  .page-responsible-gaming-seeking-help-resources .info-grid,
  .page-responsible-gaming-seeking-help-resources .tools-grid {
    grid-template-columns: 1fr;
  }

  .page-responsible-gaming-seeking-help-resources .info-card,
  .page-responsible-gaming-seeking-help-resources .tool-item {
    padding: 20px;
  }

  .page-responsible-gaming-seeking-help-resources .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-responsible-gaming-seeking-help-resources .button-group {
    flex-direction: column;
    align-items: center;
  }

  .page-responsible-gaming-seeking-help-resources .button-group .btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-responsible-gaming-seeking-help-resources h1 {
    font-size: 1.8em;
  }

  .page-responsible-gaming-seeking-help-resources h2 {
    font-size: 1.6em;
  }

  .page-responsible-gaming-seeking-help-resources .hero-section p {
    font-size: 1em;
  }

  .page-responsible-gaming-seeking-help-resources .info-card h2 {
    font-size: 1.5em;
  }

  .page-responsible-gaming-seeking-help-resources .tool-item h3 {
    font-size: 1.3em;
  }
}