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

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

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

.page-blog-bet68-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* body已承担 --header-offset */
  background-color: var(--page-background-color);
}

.page-blog-bet68-latest-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-bet68-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-blog-bet68-latest-promotions__hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  color: var(--page-text-main);
}

.page-blog-bet68-latest-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--page-text-main);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-bet68-latest-promotions__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--page-text-secondary);
}

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

.page-blog-bet68-latest-promotions__btn-primary,
.page-blog-bet68-latest-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-bet68-latest-promotions__btn-primary {
  background: var(--page-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-bet68-latest-promotions__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-bet68-latest-promotions__btn-secondary {
  background: transparent;
  color: var(--page-primary-color);
  border: 2px solid var(--page-primary-color);
}

.page-blog-bet68-latest-promotions__btn-secondary:hover {
  background-color: var(--page-primary-color);
  color: #ffffff;
}

.page-blog-bet68-latest-promotions__btn-inline {
  margin-top: 20px;
}

.page-blog-bet68-latest-promotions__content-area {
  padding: 60px 20px;
  background-color: var(--page-background-color);
}

.page-blog-bet68-latest-promotions__dark-bg {
  background-color: var(--page-card-bg);
  color: var(--page-text-main);
}

.page-blog-bet68-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog-bet68-latest-promotions__section-title {
  font-size: 2.2em;
  color: var(--page-gold-color);
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-bet68-latest-promotions__sub-title {
  font-size: 1.6em;
  color: var(--page-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-bet68-latest-promotions__paragraph {
  margin-bottom: 15px;
  color: var(--page-text-secondary);
}

.page-blog-bet68-latest-promotions__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-bet68-latest-promotions__ordered-list {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-blog-bet68-latest-promotions__list-item {
  margin-bottom: 10px;
  color: var(--page-text-main);
}

.page-blog-bet68-latest-promotions__list-item strong {
  color: var(--page-gold-color);
}

.page-blog-bet68-latest-promotions__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-blog-bet68-latest-promotions__promo-card {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-bet68-latest-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-bet68-latest-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-blog-bet68-latest-promotions__promo-date {
  font-size: 0.9em;
  color: var(--page-text-secondary);
  margin-bottom: 15px;
}

.page-blog-bet68-latest-promotions__promo-description {
  color: var(--page-text-main);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-bet68-latest-promotions__faq-list {
  margin-top: 40px;
}

.page-blog-bet68-latest-promotions__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-bet68-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: var(--page-text-main);
  background-color: var(--page-deep-green);
  list-style: none; /* For details/summary */
}

.page-blog-bet68-latest-promotions__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-bet68-latest-promotions__faq-qtext {
  flex-grow: 1;
  color: var(--page-gold-color);
}

.page-blog-bet68-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-gold-color);
}

.page-blog-bet68-latest-promotions__faq-answer {
  padding: 15px 25px 25px;
  color: var(--page-text-secondary);
  border-top: 1px solid var(--page-border-color);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-bet68-latest-promotions__main-title {
    font-size: 2.5em;
  }
  .page-blog-bet68-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-blog-bet68-latest-promotions__sub-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-blog-bet68-latest-promotions__hero-content {
    padding: 30px 15px;
  }
  .page-blog-bet68-latest-promotions__main-title {
    font-size: 2em;
  }
  .page-blog-bet68-latest-promotions__description {
    font-size: 1em;
  }
  .page-blog-bet68-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-bet68-latest-promotions__btn-primary,
  .page-blog-bet68-latest-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
  }
  .page-blog-bet68-latest-promotions__content-area,
  .page-blog-bet68-latest-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .page-blog-bet68-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-blog-bet68-latest-promotions__sub-title {
    font-size: 1.2em;
  }
  .page-blog-bet68-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: unset !important;
    min-height: unset !important;
  }
  .page-blog-bet68-latest-promotions__promo-image {
    height: 180px;
  }
  .page-blog-bet68-latest-promotions__promo-card {
    padding: 20px;
  }
  .page-blog-bet68-latest-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-blog-bet68-latest-promotions__faq-answer {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-bet68-latest-promotions__main-title {
    font-size: 1.8em;
  }
  .page-blog-bet68-latest-promotions__section-title {
    font-size: 1.5em;
  }
  .page-blog-bet68-latest-promotions__sub-title {
    font-size: 1.1em;
  }
}