:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg-color: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* Base styles for dark background */
.page-blog-choosing-reliable-betting {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* #F2FFF6 */
  background-color: var(--background-color); /* #08160F */
}

.page-blog-choosing-reliable-betting__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--deep-green-color); /* Use deep green for hero background */
  text-align: center;
}

.page-blog-choosing-reliable-betting__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    margin-bottom: 30px; /* Space between image and content */
}

.page-blog-choosing-reliable-betting__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-choosing-reliable-betting__hero-content {
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.page-blog-choosing-reliable-betting__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1, no fixed large size */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--gold-color); /* Use gold for H1 for prominence */
  margin-bottom: 20px;
}

.page-blog-choosing-reliable-betting__intro-text {
  font-size: 1.15rem;
  color: var(--text-secondary-color); /* A7D9B8 */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-choosing-reliable-betting__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-choosing-reliable-betting__btn-primary,
.page-blog-choosing-reliable-betting__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-blog-choosing-reliable-betting__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-choosing-reliable-betting__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-choosing-reliable-betting__btn-secondary {
  background-color: transparent;
  color: var(--primary-color); /* #11A84E */
  border: 2px solid var(--primary-color);
}

.page-blog-choosing-reliable-betting__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.page-blog-choosing-reliable-betting__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color); /* #08160F */
  color: var(--text-main-color); /* #F2FFF6 */
}

.page-blog-choosing-reliable-betting__section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-color); /* #F2C14E */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-choosing-reliable-betting__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-blog-choosing-reliable-betting__text-block {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: var(--text-secondary-color); /* A7D9B8 */
}

.page-blog-choosing-reliable-betting__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-choosing-reliable-betting__standards-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-choosing-reliable-betting__standard-item {
  background-color: var(--card-bg-color); /* #11271B */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color); /* #2E7A4E */
}

.page-blog-choosing-reliable-betting__standard-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color); /* #11A84E */
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-blog-choosing-reliable-betting__standard-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 4px;
  background-color: var(--gold-color);
  border-radius: 2px;
}

.page-blog-choosing-reliable-betting__advice-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-blog-choosing-reliable-betting__list-item {
  background-color: var(--card-bg-color); /* #11271B */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid var(--secondary-color); /* #22C768 */
  color: var(--text-secondary-color); /* A7D9B8 */
  font-size: 1.05rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-choosing-reliable-betting__faq-container {
  margin-top: 30px;
}

.page-blog-choosing-reliable-betting__faq-item {
  background-color: var(--card-bg-color); /* #11271B */
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color); /* #2E7A4E */
  overflow: hidden;
}

.page-blog-choosing-reliable-betting__faq-item summary {
  list-style: none; /* Hide default marker */
}
.page-blog-choosing-reliable-betting__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-blog-choosing-reliable-betting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color); /* #11A84E */
  cursor: pointer;
  background-color: var(--deep-green-color); /* #0A4B2C */
  border-bottom: 1px solid var(--divider-color); /* #1E3A2A */
  transition: background-color 0.3s ease;
}

.page-blog-choosing-reliable-betting__faq-question:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1); /* Lighter hover, define --primary-color-rgb if needed */
}

.page-blog-choosing-reliable-betting__faq-qtext {
  flex-grow: 1;
}

.page-blog-choosing-reliable-betting__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  width: 25px;
  text-align: center;
  color: var(--gold-color); /* #F2C14E */
}

.page-blog-choosing-reliable-betting__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary-color); /* A7D9B8 */
  background-color: var(--card-bg-color); /* #11271B */
}

.page-blog-choosing-reliable-betting__cta-section {
  background-color: var(--deep-green-color); /* #0A4B2C */
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color); /* #2E7A4E */
}

.page-blog-choosing-reliable-betting__cta-title {
  font-size: 2.2rem;
  color: var(--gold-color); /* #F2C14E */
  margin-bottom: 15px;
}

.page-blog-choosing-reliable-betting__cta-description {
  font-size: 1.1rem;
  color: var(--text-secondary-color); /* A7D9B8 */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure no filter on images */
.page-blog-choosing-reliable-betting img {
  filter: none !important;
}

/* Content area images CSS size lower bound (not by class name but by selector scope) */
.page-blog-choosing-reliable-betting img:not(.shared-header img):not(.shared-footer img) {
    min-width: 200px;
    min-height: 200px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-choosing-reliable-betting {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-choosing-reliable-betting__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Small top padding, body handles header offset */
  }

  .page-blog-choosing-reliable-betting__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.3;
  }

  .page-blog-choosing-reliable-betting__intro-text {
    font-size: 1rem;
  }

  .page-blog-choosing-reliable-betting__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-choosing-reliable-betting__btn-primary,
  .page-blog-choosing-reliable-betting__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-choosing-reliable-betting__content-area {
    padding: 40px 15px;
  }

  .page-blog-choosing-reliable-betting__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-blog-choosing-reliable-betting__text-block {
    font-size: 0.95rem;
  }

  .page-blog-choosing-reliable-betting__article-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Enforce min size */
    min-height: 200px !important; /* Enforce min size */
  }
  
  /* Ensure all image/content containers are responsive */
  .page-blog-choosing-reliable-betting__hero-image-wrapper,
  .page-blog-choosing-reliable-betting__standards-list,
  .page-blog-choosing-reliable-betting__advice-list,
  .page-blog-choosing-reliable-betting__faq-container,
  .page-blog-choosing-reliable-betting__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent content overflow */
  }

  .page-blog-choosing-reliable-betting__standard-title {
    font-size: 1.5rem;
    padding-left: 25px;
  }

  .page-blog-choosing-reliable-betting__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-choosing-reliable-betting__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .page-blog-choosing-reliable-betting__cta-title {
    font-size: 1.8rem;
  }

  .page-blog-choosing-reliable-betting__cta-description {
    font-size: 1rem;
  }
}