.page-blog-hot51-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background from shared.css */
}

.page-blog-hot51-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding for content */
  background-color: #0a0a0a; /* Match body background */
  overflow: hidden;
}

.page-blog-hot51-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-hot51-promotions-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-blog-hot51-promotions-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.2rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(38, 169, 224, 0.5);
}

.page-blog-hot51-promotions-guide__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

.page-blog-hot51-promotions-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-hot51-promotions-guide__btn-primary:hover {
  background-color: #1a7fb0;
  border-color: #1a7fb0;
}

.page-blog-hot51-promotions-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-hot51-promotions-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-hot51-promotions-guide__content-area,
.page-blog-hot51-promotions-guide__promotions-section,
.page-blog-hot51-promotions-guide__cta-section,
.page-blog-hot51-promotions-guide__faq-section,
.page-blog-hot51-promotions-guide__game-types-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-hot51-promotions-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-hot51-promotions-guide__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter dark for sections */
  color: #ffffff;
}

.page-blog-hot51-promotions-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
}

.page-blog-hot51-promotions-guide__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-blog-hot51-promotions-guide__text-block p {
  margin-bottom: 1.2em;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-blog-hot51-promotions-guide__text-block a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-hot51-promotions-guide__text-block a:hover {
  text-decoration: underline;
}

.page-blog-hot51-promotions-guide__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-blog-hot51-promotions-guide__list,
.page-blog-hot51-promotions-guide__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-hot51-promotions-guide__ordered-list {
  list-style-type: decimal;
}

.page-blog-hot51-promotions-guide__list li,
.page-blog-hot51-promotions-guide__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-blog-hot51-promotions-guide__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-hot51-promotions-guide__card {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark bg */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
  min-height: 400px; /* Ensure cards have minimum height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-hot51-promotions-guide__card:hover {
  transform: translateY(-5px);
}

.page-blog-hot51-promotions-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-hot51-promotions-guide__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-blog-hot51-promotions-guide__card-text {
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.page-blog-hot51-promotions-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-hot51-promotions-guide__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-hot51-promotions-guide__faq-item {
  background-color: #f8f8f8; /* Light background for FAQ items */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333333; /* Dark text for light background */
}

.page-blog-hot51-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  color: #333333;
  list-style: none;
}

.page-blog-hot51-promotions-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hot51-promotions-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

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

.page-blog-hot51-promotions-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-blog-hot51-promotions-guide__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-hot51-promotions-guide__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-hot51-promotions-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-hot51-promotions-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-hot51-promotions-guide__btn-primary,
  .page-blog-hot51-promotions-guide__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-hot51-promotions-guide__content-area,
  .page-blog-hot51-promotions-guide__promotions-section,
  .page-blog-hot51-promotions-guide__cta-section,
  .page-blog-hot51-promotions-guide__faq-section,
  .page-blog-hot51-promotions-guide__game-types-section {
    padding: 40px 15px;
  }

  .page-blog-hot51-promotions-guide__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-blog-hot51-promotions-guide__section-description {
    font-size: 0.95rem;
  }

  .page-blog-hot51-promotions-guide__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }

  .page-blog-hot51-promotions-guide__text-block p,
  .page-blog-hot51-promotions-guide__list li,
  .page-blog-hot51-promotions-guide__ordered-list li {
    font-size: 0.95rem;
  }

  .page-blog-hot51-promotions-guide__promotions-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-hot51-promotions-guide__card {
    padding: 20px;
  }

  .page-blog-hot51-promotions-guide__card-title {
    font-size: 1.2rem;
  }

  .page-blog-hot51-promotions-guide__card-text {
    font-size: 0.9rem;
  }

  .page-blog-hot51-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hot51-promotions-guide__hero-image,
  .page-blog-hot51-promotions-guide__image-full-width,
  .page-blog-hot51-promotions-guide__card-image {
    min-width: unset;
    min-height: unset;
  }

  /* Video and image containers for mobile */
  .page-blog-hot51-promotions-guide__hero-section,
  .page-blog-hot51-promotions-guide__content-area,
  .page-blog-hot51-promotions-guide__promotions-section,
  .page-blog-hot51-promotions-guide__cta-section,
  .page-blog-hot51-promotions-guide__faq-section,
  .page-blog-hot51-promotions-guide__game-types-section,
  .page-blog-hot51-promotions-guide__cta-buttons,
  .page-blog-hot51-promotions-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-blog-hot51-promotions-guide__video-section {
    padding-top: 10px !important;
  }

  .page-blog-hot51-promotions-guide__video-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}