/* style/blog-online-gambling-safety-guide.css */

:root {
  --spinplus-primary-color: #F2C14E;
  --spinplus-secondary-color: #FFD36B;
  --spinplus-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --spinplus-card-bg: #111111;
  --spinplus-background: #0A0A0A;
  --spinplus-text-main: #FFF6D6;
  --spinplus-border-color: #3A2A12;
  --spinplus-glow-color: #FFD36B;
  --header-offset: 120px; /* Default for desktop, adjusted by shared.css media queries */
}

.page-blog-online-gambling-safety-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--spinplus-text-main); /* Light text for dark body background */
  background-color: var(--spinplus-background); /* Matches body background from shared.css */
}

.page-blog-online-gambling-safety-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-online-gambling-safety-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-offset); /* Ensure content is below fixed header */
  padding-bottom: 60px;
  background: var(--spinplus-background);
  position: relative;
  overflow: hidden;
}

.page-blog-online-gambling-safety-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width */
  margin-top: 30px;
}

.page-blog-online-gambling-safety-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-online-gambling-safety-guide__hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.page-blog-online-gambling-safety-guide__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: bold;
  color: var(--spinplus-secondary-color);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-online-gambling-safety-guide__hero-description {
  font-size: 1.25rem;
  color: var(--spinplus-text-main);
  margin-bottom: 30px;
}

.page-blog-online-gambling-safety-guide__hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-blog-online-gambling-safety-guide__btn-primary,
.page-blog-online-gambling-safety-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons adapt to mobile */
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-online-gambling-safety-guide__btn-primary {
  background: var(--spinplus-button-gradient);
  color: #ffffff; /* White text for primary button */
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-online-gambling-safety-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-online-gambling-safety-guide__btn-secondary {
  background: transparent;
  color: var(--spinplus-secondary-color); /* Brand color text for secondary button */
  border: 2px solid var(--spinplus-secondary-color);
}

.page-blog-online-gambling-safety-guide__btn-secondary:hover {
  background: var(--spinplus-secondary-color);
  color: var(--spinplus-background); /* Dark text for secondary button on hover */
}

.page-blog-online-gambling-safety-guide__section-title {
  font-size: 2.5rem;
  color: var(--spinplus-primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-online-gambling-safety-guide__introduction-section,
.page-blog-online-gambling-safety-guide__responsible-gaming-section,
.page-blog-online-gambling-safety-guide__payment-safety-section,
.page-blog-online-gambling-safety-guide__customer-support-section,
.page-blog-online-gambling-safety-guide__conclusion-section {
  padding: 60px 0;
}

.page-blog-online-gambling-safety-guide__features-section,
.page-blog-online-gambling-safety-guide__account-protection-section,
.page-blog-online-gambling-safety-guide__fair-play-section,
.page-blog-online-gambling-safety-guide__compliance-section,
.page-blog-online-gambling-safety-guide__faq-section {
  padding: 60px 0;
  background-color: var(--spinplus-card-bg);
}

.page-blog-online-gambling-safety-guide__dark-bg {
  background-color: var(--spinplus-background);
  color: var(--spinplus-text-main);
}

.page-blog-online-gambling-safety-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-online-gambling-safety-guide p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--spinplus-text-main);
}

.page-blog-online-gambling-safety-guide strong {
  color: var(--spinplus-primary-color);
}

.page-blog-online-gambling-safety-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-online-gambling-safety-guide__feature-card {
  background-color: var(--spinplus-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--spinplus-border-color);
}

.page-blog-online-gambling-safety-guide__feature-image,
.page-blog-online-gambling-safety-guide__content-image,
.page-blog-online-gambling-safety-guide__payment-icon {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

/* Ensure images are at least 200x200px or larger for content */
.page-blog-online-gambling-safety-guide__feature-image,
.page-blog-online-gambling-safety-guide__content-image {
  min-width: 200px;
  min-height: 200px;
}

.page-blog-online-gambling-safety-guide__card-title {
  font-size: 1.5rem;
  color: var(--spinplus-primary-color);
  margin-bottom: 15px;
}

.page-blog-online-gambling-safety-guide__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: var(--spinplus-text-main);
}

.page-blog-online-gambling-safety-guide__list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-blog-online-gambling-safety-guide__link {
  color: var(--spinplus-secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-online-gambling-safety-guide__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-blog-online-gambling-safety-guide__payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-blog-online-gambling-safety-guide__payment-method-card {
  background-color: var(--spinplus-card-bg);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--spinplus-border-color);
}

.page-blog-online-gambling-safety-guide__payment-icon {
  max-width: 200px; /* Specific size for payment icons */
  height: auto;
  margin-bottom: 15px;
}

.page-blog-online-gambling-safety-guide__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-blog-online-gambling-safety-guide__faq-list {
  margin-top: 40px;
}

.page-blog-online-gambling-safety-guide__faq-item {
  background-color: var(--spinplus-card-bg);
  border: 1px solid var(--spinplus-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-online-gambling-safety-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.page-blog-online-gambling-safety-guide__faq-question:hover {
  background-color: #2a2a2a;
}

.page-blog-online-gambling-safety-guide__faq-question h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--spinplus-primary-color);
}

.page-blog-online-gambling-safety-guide__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--spinplus-secondary-color);
  transition: transform 0.3s ease;
}

.page-blog-online-gambling-safety-guide__faq-item.active .page-blog-online-gambling-safety-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-online-gambling-safety-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--spinplus-text-main);
}

.page-blog-online-gambling-safety-guide__faq-item.active .page-blog-online-gambling-safety-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-online-gambling-safety-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Mobile: Ensure content is below fixed header */
    padding-bottom: 40px;
  }
}