:root {
  --primary-color: #E53935; /* Red */
  --secondary-color: #FF5A4F; /* Lighter Red/Orange */
  --text-main-color: #333333;
  --card-bg-color: #FFFFFF;
  --section-bg-color: #F5F7FA;
  --border-color: #E0E0E0;
  --button-gradient: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
}

.page-blog-helo888-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color);
  line-height: 1.6;
  background-color: var(--section-bg-color); /* Default light background for body content */
}

/* --- HERO Section --- */
.page-blog-helo888-latest-promotions-analysis__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 */
  background-color: var(--primary-color); /* Added background for visual */
  color: #ffffff;
}

.page-blog-helo888-latest-promotions-analysis__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure flex items take full width */
}

.page-blog-helo888-latest-promotions-analysis__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-helo888-latest-promotions-analysis__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-helo888-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-helo888-latest-promotions-analysis__hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-blog-helo888-latest-promotions-analysis__hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-blog-helo888-latest-promotions-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  width: 100%; /* Ensure container takes full width for flex-wrap to work */
}

.page-blog-helo888-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Include padding and border in element's total width and height */
  max-width: 100%; /* Ensure button doesn't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

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

.page-blog-helo888-latest-promotions-analysis__btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-helo888-latest-promotions-analysis__btn-secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-helo888-latest-promotions-analysis__btn-secondary:hover {
  background: var(--section-bg-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* --- General Section Styling --- */
.page-blog-helo888-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-helo888-latest-promotions-analysis__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-blog-helo888-latest-promotions-analysis__light-bg {
  background-color: var(--section-bg-color);
  color: var(--text-main-color);
}

.page-blog-helo888-latest-promotions-analysis__dark-bg {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-blog-helo888-latest-promotions-analysis__dark-bg .page-blog-helo888-latest-promotions-analysis__section-title {
  color: #ffffff;
}

/* --- Introduction Section --- */
.page-blog-helo888-latest-promotions-analysis__introduction-section p {
  text-align: justify;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

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

.page-blog-helo888-latest-promotions-analysis__feature-item {
  background: var(--card-bg-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  min-height: 200px; /* Minimum height for better visual consistency */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-blog-helo888-latest-promotions-analysis__feature-item:hover {
  transform: translateY(-5px);
}

.page-blog-helo888-latest-promotions-analysis__feature-item h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* --- Quick Access Section --- */
.page-blog-helo888-latest-promotions-analysis__quick-access-section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.05rem;
  color: #f0f0f0;
}

.page-blog-helo888-latest-promotions-analysis__link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-blog-helo888-latest-promotions-analysis__link-card {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-blog-helo888-latest-promotions-analysis__link-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.page-blog-helo888-latest-promotions-analysis__link-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-blog-helo888-latest-promotions-analysis__link-card p {
  font-size: 0.95rem;
  color: #f0f0f0;
  margin-bottom: 0;
}

/* --- Games Section --- */
.page-blog-helo888-latest-promotions-analysis__games-section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

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

.page-blog-helo888-latest-promotions-analysis__game-card {
  background: var(--card-bg-color);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 400px; /* Ensure cards have a consistent height */
}

.page-blog-helo888-latest-promotions-analysis__game-card:hover {
  transform: translateY(-5px);
}

.page-blog-helo888-latest-promotions-analysis__game-card img {
  width: 100%;
  height: 200px; /* Fixed height for image consistency */
  object-fit: cover;
  display: block;
}

.page-blog-helo888-latest-promotions-analysis__game-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 20px 15px 10px;
}

.page-blog-helo888-latest-promotions-analysis__game-card p {
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1; /* Allow paragraph to take available space */
  text-align: justify;
}

.page-blog-helo888-latest-promotions-analysis__game-card .page-blog-helo888-latest-promotions-analysis__btn-primary {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
  max-width: none; /* Override max-width for full card width button */
}

/* --- Promotions Section --- */
.page-blog-helo888-latest-promotions-analysis__promotions-section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.05rem;
  color: #f0f0f0;
}

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

.page-blog-helo888-latest-promotions-analysis__promo-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  color: #ffffff;
}

.page-blog-helo888-latest-promotions-analysis__promo-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.page-blog-helo888-latest-promotions-analysis__promo-card img {
  width: 100%;
  
  object-fit: cover;
  display: block;
}

.page-blog-helo888-latest-promotions-analysis__promo-card h3 {
  font-size: 1.4rem;
  margin: 20px 15px 10px;
  flex-grow: 1;
  color: #ffffff;
}

.page-blog-helo888-latest-promotions-analysis__promo-card p {
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
  color: #f0f0f0;
}

.page-blog-helo888-latest-promotions-analysis__promo-card .page-blog-helo888-latest-promotions-analysis__btn-primary {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
  max-width: none;
}

.page-blog-helo888-latest-promotions-analysis__view-all-promos {
  text-align: center;
  margin-top: 50px;
}

/* --- Security Section --- */
.page-blog-helo888-latest-promotions-analysis__security-section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

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

.page-blog-helo888-latest-promotions-analysis__security-item {
  background: var(--card-bg-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 350px;
}

.page-blog-helo888-latest-promotions-analysis__security-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-blog-helo888-latest-promotions-analysis__security-item h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.page-blog-helo888-latest-promotions-analysis__security-item p {
  font-size: 1rem;
  text-align: justify;
  flex-grow: 1;
  margin-bottom: 0;
}

.page-blog-helo888-latest-promotions-analysis__contact-cta {
  text-align: center;
  margin-top: 50px;
}

/* --- FAQ Section --- */
.page-blog-helo888-latest-promotions-analysis__faq-section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.page-blog-helo888-latest-promotions-analysis__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-blog-helo888-latest-promotions-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg-color);
}

details.page-blog-helo888-latest-promotions-analysis__faq-item summary.page-blog-helo888-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--primary-color);
}

details.page-blog-helo888-latest-promotions-analysis__faq-item summary.page-blog-helo888-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-helo888-latest-promotions-analysis__faq-item summary.page-blog-helo888-latest-promotions-analysis__faq-question:hover {
  background: var(--section-bg-color);
}

.page-blog-helo888-latest-promotions-analysis__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color);
}

.page-blog-helo888-latest-promotions-analysis__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-helo888-latest-promotions-analysis__faq-item .page-blog-helo888-latest-promotions-analysis__faq-answer {
  padding: 0 20px 20px;
  background: var(--section-bg-color);
  border-radius: 0 0 5px 5px;
  font-size: 1rem;
  color: var(--text-main-color);
  text-align: justify;
}

/* --- Blog Section --- */
.page-blog-helo888-latest-promotions-analysis__blog-section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

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

.page-blog-helo888-latest-promotions-analysis__blog-card {
  background: var(--card-bg-color);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.page-blog-helo888-latest-promotions-analysis__blog-card:hover {
  transform: translateY(-5px);
}

.page-blog-helo888-latest-promotions-analysis__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-blog-helo888-latest-promotions-analysis__blog-card h3 {
  font-size: 1.3rem;
  margin: 20px 15px 10px;
  flex-grow: 1;
}

.page-blog-helo888-latest-promotions-analysis__blog-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-helo888-latest-promotions-analysis__blog-card h3 a:hover {
  color: var(--secondary-color);
}

.page-blog-helo888-latest-promotions-analysis__blog-card p {
  padding: 0 15px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  text-align: justify;
}

.page-blog-helo888-latest-promotions-analysis__blog-date {
  display: block;
  font-size: 0.85rem;
  color: #777777;
  padding: 0 15px 20px;
  text-align: right;
}

.page-blog-helo888-latest-promotions-analysis__view-all-posts {
  text-align: center;
  margin-top: 50px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .page-blog-helo888-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-blog-helo888-latest-promotions-analysis__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-helo888-latest-promotions-analysis__hero-image img {
    border-radius: 4px;
  }

  .page-blog-helo888-latest-promotions-analysis__hero-content h1 {
    font-size: 2rem;
  }

  .page-blog-helo888-latest-promotions-analysis__hero-content p {
    font-size: 1rem;
  }

  .page-blog-helo888-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-helo888-latest-promotions-analysis__cta-button,
  .page-blog-helo888-latest-promotions-analysis__btn-primary,
  .page-blog-helo888-latest-promotions-analysis__btn-secondary,
  .page-blog-helo888-latest-promotions-analysis a[class*="button"],
  .page-blog-helo888-latest-promotions-analysis 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: 12px 25px;
    font-size: 16px;
  }

  .page-blog-helo888-latest-promotions-analysis__cta-buttons,
  .page-blog-helo888-latest-promotions-analysis__button-group,
  .page-blog-helo888-latest-promotions-analysis__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    gap: 15px;
  }

  .page-blog-helo888-latest-promotions-analysis__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-helo888-latest-promotions-analysis__feature-item,
  .page-blog-helo888-latest-promotions-analysis__link-card,
  .page-blog-helo888-latest-promotions-analysis__game-card,
  .page-blog-helo888-latest-promotions-analysis__promo-card,
  .page-blog-helo888-latest-promotions-analysis__security-item,
  .page-blog-helo888-latest-promotions-analysis__blog-card {
    min-height: auto; /* Reset min-height for mobile */
  }

  .page-blog-helo888-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-helo888-latest-promotions-analysis__game-card img,
  .page-blog-helo888-latest-promotions-analysis__promo-card img,
  .page-blog-helo888-latest-promotions-analysis__blog-card img {
     /* Maintain a reasonable height for card images */
  }

  details.page-blog-helo888-latest-promotions-analysis__faq-item summary.page-blog-helo888-latest-promotions-analysis__faq-question { padding: 15px; }
  .page-blog-helo888-latest-promotions-analysis__faq-qtext { font-size: 15px; }
  .page-blog-helo888-latest-promotions-analysis__faq-answer { padding: 0 15px 15px; }
}

/* Ensure all content area images are at least 200px wide */
.page-blog-helo888-latest-promotions-analysis__game-card img,
.page-blog-helo888-latest-promotions-analysis__promo-card img,
.page-blog-helo888-latest-promotions-analysis__security-item img,
.page-blog-helo888-latest-promotions-analysis__blog-card img {
  min-width: 200px;
  min-height: 200px;
}

/* Color contrast fixes based on body background (assuming light) */
.page-blog-helo888-latest-promotions-analysis {
  color: var(--text-main-color); /* #333333 */
}

.page-blog-helo888-latest-promotions-analysis__card,
.page-blog-helo888-latest-promotions-analysis__feature-item,
.page-blog-helo888-latest-promotions-analysis__security-item,
.page-blog-helo888-latest-promotions-analysis__blog-card {
  background: var(--card-bg-color); /* #FFFFFF */
  color: var(--text-main-color); /* #333333 */
  border: 1px solid var(--border-color); /* #E0E0E0 */
}

.page-blog-helo888-latest-promotions-analysis__dark-bg {
  background: var(--primary-color); /* #E53935 */
  color: #ffffff;
}

.page-blog-helo888-latest-promotions-analysis__dark-bg .page-blog-helo888-latest-promotions-analysis__section-title {
  color: #ffffff;
}

.page-blog-helo888-latest-promotions-analysis__dark-bg .page-blog-helo888-latest-promotions-analysis__link-card {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.page-blog-helo888-latest-promotions-analysis__dark-bg .page-blog-helo888-latest-promotions-analysis__link-card:hover {
  background: rgba(255, 255, 255, 0.25);
}

.page-blog-helo888-latest-promotions-analysis__dark-bg .page-blog-helo888-latest-promotions-analysis__promo-card {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.page-blog-helo888-latest-promotions-analysis__dark-bg .page-blog-helo888-latest-promotions-analysis__promo-card:hover {
  background: rgba(255, 255, 255, 0.25);
}

.page-blog-helo888-latest-promotions-analysis__dark-bg .page-blog-helo888-latest-promotions-analysis__promo-card h3 {
  color: #ffffff;
}

/* Button text contrast is handled by specific button styles */
.page-blog-helo888-latest-promotions-analysis__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
}

.page-blog-helo888-latest-promotions-analysis__btn-secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}