/* style/blog-latest-promotions-h3bet.css */

/* Base styles for the page, ensuring text is light on dark background */
.page-blog-latest-promotions-h3bet {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-blog-latest-promotions-h3bet__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px; /* Space below content */
}

.page-blog-latest-promotions-h3bet__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.page-blog-latest-promotions-h3bet__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-top: -150px; /* Overlap with image slightly for visual effect */
  background: rgba(17, 39, 27, 0.85); /* Card B G with transparency */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-latest-promotions-h3bet__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-latest-promotions-h3bet__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-latest-promotions-h3bet__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

.page-blog-latest-promotions-h3bet__btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-blog-latest-promotions-h3bet__btn-secondary {
  background: #11271B; /* Card B G */
  color: #2AD16F; /* Green from button gradient */
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-latest-promotions-h3bet__btn-secondary:hover {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  border-color: #57E38D; /* Glow */
}

.page-blog-latest-promotions-h3bet__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-latest-promotions-h3bet__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-latest-promotions-h3bet__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-blog-latest-promotions-h3bet__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-blog-latest-promotions-h3bet__card {
  background: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-latest-promotions-h3bet__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 10px #57E38D; /* Glow */
}

.page-blog-latest-promotions-h3bet__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #1E3A2A; /* Divider */
}

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

.page-blog-latest-promotions-h3bet__card-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-latest-promotions-h3bet__btn-text {
  display: inline-block;
  color: #2AD16F; /* Green from button gradient */
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.page-blog-latest-promotions-h3bet__btn-text:hover {
  color: #57E38D; /* Glow */
  border-color: #57E38D; /* Glow */
}

.page-blog-latest-promotions-h3bet__guide-list,
.page-blog-latest-promotions-h3bet__text-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-latest-promotions-h3bet__guide-list li,
.page-blog-latest-promotions-h3bet__text-list li {
  background: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #2AD16F; /* Green accent */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-promotions-h3bet__guide-list li strong {
  color: #F2C14E; /* Gold */
}

.page-blog-latest-promotions-h3bet__faq-list {
  margin-top: 30px;
}

.page-blog-latest-promotions-h3bet__faq-item {
  background: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-latest-promotions-h3bet__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;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-latest-promotions-h3bet__faq-item[open] .page-blog-latest-promotions-h3bet__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-latest-promotions-h3bet__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-latest-promotions-h3bet__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F; /* Green */
  transition: transform 0.3s ease;
}

.page-blog-latest-promotions-h3bet__faq-item[open] .page-blog-latest-promotions-h3bet__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-latest-promotions-h3bet__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* Remove default marker for details/summary */
.page-blog-latest-promotions-h3bet__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-latest-promotions-h3bet__faq-item summary {
  list-style: none;
}

.page-blog-latest-promotions-h3bet__cta-bottom {
  text-align: center;
  padding-bottom: 60px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-h3bet__hero-content {
    margin-top: -100px;
    padding: 25px;
  }
}

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

  .page-blog-latest-promotions-h3bet__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-blog-latest-promotions-h3bet__hero-content {
    margin-top: -80px; /* Adjust overlap for mobile */
    padding: 20px;
    max-width: 95%;
  }

  .page-blog-latest-promotions-h3bet__main-title {
    font-size: 2em; /* Ensure readability on smaller screens */
  }

  .page-blog-latest-promotions-h3bet__hero-description {
    font-size: 1em;
  }

  .page-blog-latest-promotions-h3bet__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box !important;
  }

  .page-blog-latest-promotions-h3bet__btn-primary,
  .page-blog-latest-promotions-h3bet__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-latest-promotions-h3bet__content-area {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-latest-promotions-h3bet__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-latest-promotions-h3bet__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-latest-promotions-h3bet__card,
  .page-blog-latest-promotions-h3bet__faq-item,
  .page-blog-latest-promotions-h3bet__guide-list li,
  .page-blog-latest-promotions-h3bet__text-list li {
    padding: 15px;
  }

  .page-blog-latest-promotions-h3bet__card-image {
    height: 180px;
  }

  .page-blog-latest-promotions-h3bet__image-inline {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-blog-latest-promotions-h3bet__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-blog-latest-promotions-h3bet__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-promotions-h3bet__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

  .page-blog-latest-promotions-h3bet__main-title {
    font-size: 1.6em;
  }

  .page-blog-latest-promotions-h3bet__section-title {
    font-size: 1.5em;
  }
}