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

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

.page-blog-latest-promotions-hitclub88 {
  background-color: var(--hitclub88-background);
  color: var(--hitclub88-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-latest-promotions-hitclub88__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
  background-color: var(--hitclub88-deep-green);
}

.page-blog-latest-promotions-hitclub88__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
}

.page-blog-latest-promotions-hitclub88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
}

.page-blog-latest-promotions-hitclub88__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-latest-promotions-hitclub88__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: var(--hitclub88-gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-blog-latest-promotions-hitclub88__subtitle {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: var(--hitclub88-text-main);
  margin-bottom: 30px;
}

.page-blog-latest-promotions-hitclub88__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--hitclub88-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-latest-promotions-hitclub88__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

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

.page-blog-latest-promotions-hitclub88__article {
  background-color: var(--hitclub88-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--hitclub88-border-color);
}

.page-blog-latest-promotions-hitclub88__section-title {
  font-size: 2.2em;
  color: var(--hitclub88-gold-color);
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--hitclub88-divider-color);
  padding-bottom: 10px;
}

.page-blog-latest-promotions-hitclub88__paragraph {
  font-size: 1.05em;
  color: var(--hitclub88-text-main);
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-blog-latest-promotions-hitclub88__promo-card {
  background-color: var(--hitclub88-deep-green);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--hitclub88-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-latest-promotions-hitclub88__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-latest-promotions-hitclub88__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid var(--hitclub88-border-color);
}

.page-blog-latest-promotions-hitclub88__card-title {
  font-size: 1.4em;
  color: var(--hitclub88-gold-color);
  margin-bottom: 10px;
}

.page-blog-latest-promotions-hitclub88__card-text {
  font-size: 0.95em;
  color: var(--hitclub88-text-secondary);
}

.page-blog-latest-promotions-hitclub88__promo-details {
  margin-top: 30px;
}

.page-blog-latest-promotions-hitclub88__detail-item {
  background-color: var(--hitclub88-deep-green);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 1px solid var(--hitclub88-border-color);
}

.page-blog-latest-promotions-hitclub88__detail-title {
  font-size: 1.8em;
  color: var(--hitclub88-gold-color);
  margin-bottom: 15px;
}

.page-blog-latest-promotions-hitclub88__list {
  list-style: disc;
  margin-left: 25px;
  color: var(--hitclub88-text-main);
  margin-bottom: 20px;
}

.page-blog-latest-promotions-hitclub88__list li {
  margin-bottom: 8px;
  font-size: 1.0em;
}

.page-blog-latest-promotions-hitclub88__list--numbered {
  list-style: decimal;
}

.page-blog-latest-promotions-hitclub88__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: var(--hitclub88-gold-color);
  border: 2px solid var(--hitclub88-gold-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
  cursor: pointer;
}

.page-blog-latest-promotions-hitclub88__btn-secondary:hover {
  background: var(--hitclub88-gold-color);
  color: var(--hitclub88-deep-green);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-blog-latest-promotions-hitclub88__faq-item {
  background-color: var(--hitclub88-deep-green);
  border: 1px solid var(--hitclub88-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-latest-promotions-hitclub88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: var(--hitclub88-primary-color);
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For <details> summary */
}

.page-blog-latest-promotions-hitclub88__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-latest-promotions-hitclub88__faq-question:hover {
  background-color: var(--hitclub88-secondary-color);
}

.page-blog-latest-promotions-hitclub88__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-blog-latest-promotions-hitclub88__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #ffffff;
}

.page-blog-latest-promotions-hitclub88__faq-answer {
  padding: 15px 25px;
  background-color: var(--hitclub88-card-bg);
  color: var(--hitclub88-text-secondary);
  font-size: 1.0em;
}

.page-blog-latest-promotions-hitclub88__faq-item[open] .page-blog-latest-promotions-hitclub88__faq-question {
  background-color: var(--hitclub88-secondary-color);
}

.page-blog-latest-promotions-hitclub88__cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--hitclub88-divider-color);
}

/* --- Responsive Design --- */

/* All images basic responsive style */
.page-blog-latest-promotions-hitclub88 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* All video basic responsive style */
.page-blog-latest-promotions-hitclub88 video,
.page-blog-latest-promotions-hitclub88__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Video container basic responsive style */
.page-blog-latest-promotions-hitclub88__video-section,
.page-blog-latest-promotions-hitclub88__video-container,
.page-blog-latest-promotions-hitclub88__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* All buttons basic responsive style */
.page-blog-latest-promotions-hitclub88__btn-primary,
.page-blog-latest-promotions-hitclub88__btn-secondary,
.page-blog-latest-promotions-hitclub88 a[class*="button"],
.page-blog-latest-promotions-hitclub88 a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Button container basic responsive style */
.page-blog-latest-promotions-hitclub88__cta-buttons,
.page-blog-latest-promotions-hitclub88__button-group,
.page-blog-latest-promotions-hitclub88__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .page-blog-latest-promotions-hitclub88__hero-content {
    padding: 30px;
  }
  .page-blog-latest-promotions-hitclub88__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-blog-latest-promotions-hitclub88__section-title {
    font-size: 1.8em;
  }
  .page-blog-latest-promotions-hitclub88__detail-title {
    font-size: 1.5em;
  }
}

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

  .page-blog-latest-promotions-hitclub88__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset, this is decorative */
  }

  .page-blog-latest-promotions-hitclub88__hero-content {
    padding: 20px;
    max-width: 100%;
  }

  .page-blog-latest-promotions-hitclub88__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-blog-latest-promotions-hitclub88__subtitle {
    font-size: clamp(0.9em, 2.5vw, 1.1em);
  }

  .page-blog-latest-promotions-hitclub88__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-blog-latest-promotions-hitclub88__content-area {
    padding: 30px 15px;
  }

  .page-blog-latest-promotions-hitclub88__article {
    padding: 20px;
  }

  .page-blog-latest-promotions-hitclub88__section-title {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

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

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

  .page-blog-latest-promotions-hitclub88__detail-title {
    font-size: 1.3em;
  }

  .page-blog-latest-promotions-hitclub88__list {
    margin-left: 20px;
  }

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

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

  .page-blog-latest-promotions-hitclub88__cta-bottom {
    margin-top: 40px;
    padding-top: 20px;
  }

  /* Mobile responsive for images */
  .page-blog-latest-promotions-hitclub88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  /* Mobile responsive for video */
  .page-blog-latest-promotions-hitclub88 video,
  .page-blog-latest-promotions-hitclub88__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Video containers mobile adaptation */
  .page-blog-latest-promotions-hitclub88__video-section,
  .page-blog-latest-promotions-hitclub88__video-container,
  .page-blog-latest-promotions-hitclub88__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile responsive for buttons */
  .page-blog-latest-promotions-hitclub88__btn-primary,
  .page-blog-latest-promotions-hitclub88__btn-secondary,
  .page-blog-latest-promotions-hitclub88 a[class*="button"],
  .page-blog-latest-promotions-hitclub88 a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Button containers mobile adaptation */
  .page-blog-latest-promotions-hitclub88__cta-buttons,
  .page-blog-latest-promotions-hitclub88__button-group,
  .page-blog-latest-promotions-hitclub88__btn-container,
  .page-blog-latest-promotions-hitclub88__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important; /* Allow buttons to wrap */
    gap: 10px;
  }
  .page-blog-latest-promotions-hitclub88__cta-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-promotions-hitclub88__main-title {
    font-size: clamp(1.6em, 8vw, 2em);
  }
  .page-blog-latest-promotions-hitclub88__section-title {
    font-size: 1.4em;
  }
  .page-blog-latest-promotions-hitclub88__detail-title {
    font-size: 1.2em;
  }
  .page-blog-latest-promotions-hitclub88__faq-question {
    font-size: 1em;
  }
  .page-blog-latest-promotions-hitclub88__hero-content {
    padding: 15px;
  }
}