/* style/blog-safe-betting-guide.css */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg-color: #17191F;
  --background-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
  --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-blog-safe-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Body background is dark, so text is light */
  background-color: var(--background-color);
}

.page-blog-safe-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is for visual spacing */
  overflow: hidden;
  background-color: var(--background-color);
}

.page-blog-safe-betting-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.page-blog-safe-betting-guide__hero-content {
  position: relative;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
  z-index: 2;
  margin-top: -100px; /* Adjust to layer content over the image slightly */
  background: rgba(13, 14, 18, 0.7); /* Semi-transparent background for readability */
  border-radius: 10px;
  padding: 30px;
}

.page-blog-safe-betting-guide__main-title {
  font-size: clamp(2em, 4vw, 3em);
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 165, 58, 0.5);
}

.page-blog-safe-betting-guide__description {
  font-size: 1.1em;
  color: var(--text-main-color);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-safe-betting-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-safe-betting-guide__btn-primary,
.page-blog-safe-betting-guide__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-safe-betting-guide__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* Forced white text for contrast */
  border: 2px solid var(--primary-color);
}

.page-blog-safe-betting-guide__btn-primary:hover {
  box-shadow: 0 0 15px var(--glow-color);
  transform: translateY(-3px);
}

.page-blog-safe-betting-guide__btn-secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-safe-betting-guide__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--background-color);
}

.page-blog-safe-betting-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-safe-betting-guide__section-title {
  font-size: 2.2em;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid var(--deep-orange);
  padding-bottom: 15px;
}

.page-blog-safe-betting-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-safe-betting-guide__highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-blog-safe-betting-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-safe-betting-guide__card {
  background: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: var(--text-main-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-safe-betting-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 165, 58, 0.2);
}

.page-blog-safe-betting-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  max-width: 100%;
}

.page-blog-safe-betting-guide__card-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-safe-betting-guide__card-text {
  font-size: 1em;
  color: var(--text-main-color);
}

.page-blog-safe-betting-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-safe-betting-guide__list-item {
  background: rgba(255, 165, 58, 0.1);
  border-left: 5px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: var(--text-main-color);
  font-size: 1.05em;
}

.page-blog-safe-betting-guide__list-item strong {
  color: var(--secondary-color);
}

.page-blog-safe-betting-guide__content-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  max-width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-blog-safe-betting-guide__faq-list {
  margin-top: 40px;
}

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

.page-blog-safe-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--secondary-color);
  cursor: pointer;
  background: rgba(255, 165, 58, 0.15);
  border-bottom: 1px solid var(--border-color);
  list-style: none; /* For details/summary */
}

.page-blog-safe-betting-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-blog-safe-betting-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-safe-betting-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--text-main-color);
}

.page-blog-safe-betting-guide__faq-item[open] .page-blog-safe-betting-guide__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-blog-safe-betting-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--text-main-color);
}

.page-blog-safe-betting-guide__faq-answer .page-blog-safe-betting-guide__paragraph {
  margin-bottom: 0;
}

.page-blog-safe-betting-guide__link {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-blog-safe-betting-guide__link:hover {
  color: var(--primary-color);
}

.page-blog-safe-betting-guide__cta-buttons--bottom {
  margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-safe-betting-guide__hero-content {
    margin-top: -80px;
  }
  .page-blog-safe-betting-guide__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }
  .page-blog-safe-betting-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-safe-betting-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-safe-betting-guide__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-blog-safe-betting-guide__hero-content {
    margin-top: -60px;
    padding: 20px;
  }
  .page-blog-safe-betting-guide__main-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-blog-safe-betting-guide__description {
    font-size: 1em;
  }
  .page-blog-safe-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-safe-betting-guide__btn-primary,
  .page-blog-safe-betting-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-safe-betting-guide__content-area {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-safe-betting-guide__section-title {
    font-size: 1.8em;
  }
  .page-blog-safe-betting-guide__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-safe-betting-guide__card {
    padding: 20px;
  }
  .page-blog-safe-betting-guide__card-image,
  .page-blog-safe-betting-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-safe-betting-guide__list-item {
    font-size: 0.95em;
  }
  .page-blog-safe-betting-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-blog-safe-betting-guide__faq-answer {
    padding: 15px 20px;
  }
}