.page-blog {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main for dark background */
  background-color: #08160F; /* Background color */
}

.page-blog__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as per instruction */
  background-color: #08160F;
}

.page-blog__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page-blog__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up over the image, but not on top of it */
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%);
  border-radius: 15px;
}

.page-blog__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold for main title */
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.page-blog__subtitle {
  font-size: clamp(1em, 2.5vw, 1.3em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.page-blog__btn-primary,
.page-blog__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-blog__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px rgba(87, 227, 141, 0.7); /* Glow color */
}

.page-blog__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-blog__btn-secondary:hover {
  background-color: #2E7A4E; /* Border color */
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 0 15px rgba(46, 122, 78, 0.7);
}

.page-blog__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-blog__section {
  padding: 60px 20px;
  background-color: #08160F;
  color: #F2FFF6; /* Text Main */
}

.page-blog__introduction-section {
  background-color: #08160F;
}

.page-blog__benefits-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-blog__download-guide-section {
  background-color: #08160F;
}

.page-blog__features-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-blog__betting-experience-section {
  background-color: #08160F;
}

.page-blog__faq-section {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-blog__conclusion-section {
  background-color: #08160F;
}

.page-blog__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-blog__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog__subsection-title {
  font-size: clamp(1.4em, 3vw, 2em);
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog__paragraph {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #F2FFF6; /* Text Main */
}

.page-blog__paragraph strong {
  color: #57E38D; /* Glow */
}

.page-blog__unordered-list,
.page-blog__ordered-list {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #F2FFF6; /* Text Main */
}

.page-blog__list-item strong {
  color: #57E38D; /* Glow */
}

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

.page-blog__card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(87, 227, 141, 0.5); /* Glow color */
}

.page-blog__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.page-blog__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-blog__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Styles */
.page-blog__faq-list {
  margin-top: 30px;
}

.page-blog__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
  list-style: none; /* For details tag */
}

.page-blog__faq-question::-webkit-details-marker {
  display: none; /* For details tag */
}

.page-blog__faq-question:hover {
  background-color: #2E7A4E; /* Border color */
}

.page-blog__faq-qtext {
  flex-grow: 1;
}

.page-blog__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-blog__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  background-color: #0A4B2C; /* Deep Green */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }

  .page-blog__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-blog__subtitle {
    font-size: clamp(1em, 2.5vw, 1.2em);
  }

  .page-blog__section-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
  }
}

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

  .page-blog__hero-content {
    margin-top: 0; /* Remove negative margin on mobile to prevent overlay */
    padding: 25px 15px;
  }

  .page-blog__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog__btn-primary,
  .page-blog__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog__btn-large {
    padding: 15px 25px;
    font-size: 1.1em;
  }

  .page-blog__section {
    padding: 40px 15px;
  }

  .page-blog__container {
    padding: 0 15px;
  }

  .page-blog__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
    margin-bottom: 30px;
  }

  .page-blog__subsection-title {
    font-size: clamp(1.2em, 4vw, 1.7em);
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-blog__paragraph,
  .page-blog__list-item,
  .page-blog__card-text {
    font-size: 0.95em;
  }

  .page-blog__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog__card {
    padding: 20px;
  }

  .page-blog__card-title {
    font-size: 1.3em;
  }

  .page-blog__card-image,
  .page-blog__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-blog__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog__hero-content {
    padding: 20px 10px;
  }

  .page-blog__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog__subtitle {
    font-size: clamp(0.9em, 3vw, 1.1em);
  }

  .page-blog__btn-primary,
  .page-blog__btn-secondary {
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .page-blog__section {
    padding: 30px 10px;
  }

  .page-blog__container {
    padding: 0 10px;
  }

  .page-blog__section-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-blog__faq-question {
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-blog__faq-toggle {
    font-size: 1.3em;
  }

  .page-blog__faq-answer {
    padding: 0 15px 10px;
  }
}