.page-blog-online-betting-guide {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --background-color: #0D0E12;
  --card-background: #17191F;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;

  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--background-color);
  line-height: 1.6;
}

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

.page-blog-online-betting-guide__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding, relying on body padding for header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-main);
  overflow: hidden;
}

.page-blog-online-betting-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-online-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover for desktop to fill space */
  transition: transform 0.3s ease-in-out;
}

.page-blog-online-betting-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text readability */
  border-radius: 10px;
  z-index: 2;
}

.page-blog-online-betting-guide__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--text-main);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-online-betting-guide__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
  color: var(--text-main);
  opacity: 0.9;
}

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

.page-blog-online-betting-guide__btn-primary,
.page-blog-online-betting-guide__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-online-betting-guide__btn-primary {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-online-betting-guide__btn-primary:hover {
  background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-blog-online-betting-guide__btn-secondary {
  background: var(--card-background);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(255, 140, 26, 0.2);
}

.page-blog-online-betting-guide__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-online-betting-guide__content-section {
  padding: 60px 0;
}

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

.page-blog-online-betting-guide__light-bg {
  background-color: var(--card-background);
  color: var(--text-main);
}

.page-blog-online-betting-guide__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-blog-online-betting-guide__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
}

.page-blog-online-betting-guide__article-body p {
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-online-betting-guide__article-body strong {
  color: var(--primary-color);
}

.page-blog-online-betting-guide__sub-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-blog-online-betting-guide__list,
.page-blog-online-betting-guide__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-online-betting-guide__ordered-list {
  list-style-type: decimal;
}

.page-blog-online-betting-guide__list li,
.page-blog-online-betting-guide__ordered-list li {
  margin-bottom: 10px;
  color: var(--text-main);
}

.page-blog-online-betting-guide__article-figure {
  margin: 30px auto;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.page-blog-online-betting-guide__article-figure img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}

.page-blog-online-betting-guide__article-figure figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 243, 230, 0.7);
}

.page-blog-online-betting-guide__faq-section {
  padding: 60px 0;
}

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

details.page-blog-online-betting-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-background);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

details.page-blog-online-betting-guide__faq-item summary.page-blog-online-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main);
}

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

details.page-blog-online-betting-guide__faq-item summary.page-blog-online-betting-guide__faq-question:hover {
  background: rgba(255, 140, 26, 0.1);
}

.page-blog-online-betting-guide__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}

.page-blog-online-betting-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-blog-online-betting-guide__faq-item .page-blog-online-betting-guide__faq-answer {
  padding: 0 25px 20px;
  background: var(--background-color);
  border-top: 1px solid rgba(255, 140, 26, 0.2);
  border-radius: 0 0 8px 8px;
  color: var(--text-main);
}

.page-blog-online-betting-guide__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
  color: var(--text-main);
}

.page-blog-online-betting-guide__cta-buttons--faq {
  margin-top: 20px;
}

.page-blog-online-betting-guide__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

/* --- Media Queries --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .page-blog-online-betting-guide__container {
    padding: 15px;
  }

  .page-blog-online-betting-guide__hero-content {
    max-width: 90%;
    padding: 15px;
  }

  .page-blog-online-betting-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-online-betting-guide__subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  }

  .page-blog-online-betting-guide__btn-primary,
  .page-blog-online-betting-guide__btn-secondary {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .page-blog-online-betting-guide__section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
    margin-bottom: 30px;
  }

  .page-blog-online-betting-guide__article-body {
    font-size: 1rem;
    line-height: 1.7;
  }

  .page-blog-online-betting-guide__sub-title {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    margin-top: 25px;
    margin-bottom: 15px;
  }

  details.page-blog-online-betting-guide__faq-item summary.page-blog-online-betting-guide__faq-question {
    padding: 15px 20px;
  }

  .page-blog-online-betting-guide__faq-qtext {
    font-size: 1rem;
  }

  .page-blog-online-betting-guide__faq-toggle {
    font-size: 24px;
    width: 25px;
  }

  details.page-blog-online-betting-guide__faq-item .page-blog-online-betting-guide__faq-answer {
    padding: 0 20px 15px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .page-blog-online-betting-guide__container,
  .page-blog-online-betting-guide__hero-content,
  .page-blog-online-betting-guide__cta-buttons,
  .page-blog-online-betting-guide__article-body,
  .page-blog-online-betting-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-online-betting-guide__hero-section {
    padding-top: 10px; /* Ensure small top padding */
  }

  .page-blog-online-betting-guide__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
    height: auto !important;
  }

  .page-blog-online-betting-guide__hero-content {
    position: static;
    transform: none;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 15px;
    margin-top: 20px;
  }

  .page-blog-online-betting-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 10px;
  }

  .page-blog-online-betting-guide__subtitle {
    font-size: clamp(0.85rem, 3vw, 1rem);
    margin-bottom: 20px;
  }

  .page-blog-online-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-online-betting-guide__btn-primary,
  .page-blog-online-betting-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-online-betting-guide__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 25px;
  }

  .page-blog-online-betting-guide__article-body {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .page-blog-online-betting-guide__sub-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .page-blog-online-betting-guide__list,
  .page-blog-online-betting-guide__ordered-list {
    margin-left: 20px;
  }

  .page-blog-online-betting-guide__article-figure {
    margin: 20px auto;
  }

  .page-blog-online-betting-guide__article-figure img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  details.page-blog-online-betting-guide__faq-item summary.page-blog-online-betting-guide__faq-question {
    padding: 15px;
  }

  .page-blog-online-betting-guide__faq-qtext {
    font-size: 0.95rem;
  }

  .page-blog-online-betting-guide__faq-toggle {
    font-size: 22px;
    width: 24px;
  }

  details.page-blog-online-betting-guide__faq-item .page-blog-online-betting-guide__faq-answer {
    padding: 0 15px 15px;
  }

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