/* style/blog-safe-online-betting-guide.css */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --background-color: #0D0E12;
  --text-main-color: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange-color: #D96800;
}

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

.page-blog-safe-online-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-safe-online-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is for decor */
  overflow: hidden;
}

.page-blog-safe-online-betting-guide__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

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

.page-blog-safe-online-betting-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
  border-radius: 8px;
}

.page-blog-safe-online-betting-guide__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--text-main-color);
  margin-bottom: 15px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-safe-online-betting-guide__description {
  font-size: 1.1rem;
  color: var(--text-main-color);
  margin-bottom: 30px;
}

.page-blog-safe-online-betting-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-safe-online-betting-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-safe-online-betting-guide__cta-button--large {
  font-size: 1.2rem;
  padding: 18px 35px;
}

.page-blog-safe-online-betting-guide__content-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-blog-safe-online-betting-guide__dark-bg {
  background-color: var(--card-bg);
}

.page-blog-safe-online-betting-guide__section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-safe-online-betting-guide__subsection {
  margin-bottom: 40px;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.page-blog-safe-online-betting-guide__subsection-title {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-safe-online-betting-guide p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--text-main-color);
}

.page-blog-safe-online-betting-guide ul,
.page-blog-safe-online-betting-guide ol {
  margin-bottom: 15px;
  padding-left: 25px;
  color: var(--text-main-color);
}

.page-blog-safe-online-betting-guide li {
  margin-bottom: 10px;
  color: var(--text-main-color);
}

.page-blog-safe-online-betting-guide__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-safe-online-betting-guide__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg);
}

.page-blog-safe-online-betting-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-blog-safe-online-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-main-color);
  cursor: pointer;
  background-color: var(--background-color);
  list-style: none;
}

.page-blog-safe-online-betting-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-safe-online-betting-guide__faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-blog-safe-online-betting-guide__faq-item[open] .page-blog-safe-online-betting-guide__faq-toggle {
  transform: rotate(45deg);
}

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

.page-blog-safe-online-betting-guide__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-blog-safe-online-betting-guide__cta-section .page-blog-safe-online-betting-guide__section-title {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-blog-safe-online-betting-guide__cta-section .page-blog-safe-online-betting-guide__description {
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-safe-online-betting-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-safe-online-betting-guide__section-title {
    font-size: 2rem;
  }
  .page-blog-safe-online-betting-guide__subsection-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-blog-safe-online-betting-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-safe-online-betting-guide__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-safe-online-betting-guide__hero-content {
    padding: 15px;
  }

  .page-blog-safe-online-betting-guide__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-safe-online-betting-guide__description {
    font-size: 1rem;
  }

  .page-blog-safe-online-betting-guide__cta-button,
  .page-blog-safe-online-betting-guide__cta-button--large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
  }

  .page-blog-safe-online-betting-guide__content-section,
  .page-blog-safe-online-betting-guide__faq-section,
  .page-blog-safe-online-betting-guide__cta-section {
    padding: 40px 0;
  }

  .page-blog-safe-online-betting-guide__container,
  .page-blog-safe-online-betting-guide__subsection,
  .page-blog-safe-online-betting-guide__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-safe-online-betting-guide__section-title {
    font-size: 1.8rem;
  }

  .page-blog-safe-online-betting-guide__subsection-title {
    font-size: 1.4rem;
  }

  .page-blog-safe-online-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-safe-online-betting-guide__hero-image-wrapper {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .page-blog-safe-online-betting-guide__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-blog-safe-online-betting-guide__section-title {
    font-size: 1.5rem;
  }
  .page-blog-safe-online-betting-guide__subsection-title {
    font-size: 1.2rem;
  }
  .page-blog-safe-online-betting-guide__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-blog-safe-online-betting-guide__faq-answer {
    padding: 0 15px 15px 15px;
  }
}