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

  background-color: var(--background-dark);
  color: var(--text-main-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__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(--background-dark);
  overflow: hidden;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: -50px; /* Overlap slightly with image for visual flow */
  padding: 30px;
  background-color: rgba(17, 39, 27, 0.9); /* Card BG with slight transparency */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__main-title {
  color: var(--gold-color);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__description {
  color: var(--text-secondary-color);
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-blog-hello88-exclusive-promotions-and-newbie-guide__btn-primary,
.page-blog-hello88-exclusive-promotions-and-newbie-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__btn-secondary {
  background-color: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__btn-secondary:hover {
  background-color: var(--glow-color);
  color: var(--background-dark);
  transform: translateY(-3px);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__section {
  padding: 60px 0;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__section-title {
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2em;
  font-weight: 700;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__sub-title {
  color: var(--text-main-color);
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__text-block {
  color: var(--text-secondary-color);
  margin-bottom: 20px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__text-main {
  color: var(--text-main-color);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__text-secondary {
  color: var(--text-secondary-color);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__text-link {
  color: var(--glow-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__text-link:hover {
  color: var(--gold-color);
  text-decoration: underline;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__list,
.page-blog-hello88-exclusive-promotions-and-newbie-guide__numbered-list,
.page-blog-hello88-exclusive-promotions-and-newbie-guide__nested-list {
  list-style-type: disc;
  color: var(--text-secondary-color);
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__numbered-list {
  list-style-type: decimal;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__list-item {
  margin-bottom: 10px;
  color: var(--text-secondary-color);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__image-text-block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__image-text-block--reversed {
  flex-direction: row-reverse;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__image-block {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Ensure minimum size */
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__text-content {
  flex: 1;
  max-width: 50%;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__card-bg {
  background-color: var(--card-background);
  color: var(--text-main-color);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-main-color);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__app-download-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__app-card {
  background-color: var(--background-dark);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__app-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__app-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__promo-grid,
.page-blog-hello88-exclusive-promotions-and-newbie-guide__game-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__promo-card,
.page-blog-hello88-exclusive-promotions-and-newbie-guide__game-card {
  background-color: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__promo-image,
.page-blog-hello88-exclusive-promotions-and-newbie-guide__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__promo-title,
.page-blog-hello88-exclusive-promotions-and-newbie-guide__game-title {
  font-size: 1.3em;
  font-weight: 600;
  padding: 15px 20px 10px;
  color: var(--text-main-color);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__promo-description,
.page-blog-hello88-exclusive-promotions-and-newbie-guide__game-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__promo-card .page-blog-hello88-exclusive-promotions-and-newbie-guide__btn-primary,
.page-blog-hello88-exclusive-promotions-and-newbie-guide__game-card .page-blog-hello88-exclusive-promotions-and-newbie-guide__btn-secondary {
  margin: 0 20px 20px;
  align-self: flex-start;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__transaction-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__transaction-card {
  background-color: var(--card-background);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
  text-align: center;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__support-item {
  background-color: var(--card-background);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__faq-list {
  margin-top: 30px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__faq-item {
  background-color: var(--card-background);
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: var(--text-main-color);
  list-style: none; /* For details/summary */
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color);
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__faq-item[open] .page-blog-hello88-exclusive-promotions-and-newbie-guide__faq-toggle {
  content: "−";
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__faq-answer {
  padding: 0 20px 20px;
  color: var(--text-secondary-color);
  font-size: 0.95em;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__faq-answer p {
  margin-bottom: 0;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__final-cta {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

.page-blog-hello88-exclusive-promotions-and-newbie-guide__final-cta-button {
  margin-top: 30px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-blog-hello88-exclusive-promotions-and-newbie-guide__hero-content {
    margin-top: -30px;
    padding: 25px;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__image-text-block {
    flex-direction: column;
    align-items: center;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__image-block,
  .page-blog-hello88-exclusive-promotions-and-newbie-guide__text-content {
    max-width: 100%;
    width: 100%;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__image-text-block--reversed {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-blog-hello88-exclusive-promotions-and-newbie-guide {
    font-size: 15px;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__container {
    padding: 0 15px;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__hero-image-wrapper {
    max-height: 300px;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__main-title {
    font-size: 1.8em;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__description {
    font-size: 1em;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__btn-primary,
  .page-blog-hello88-exclusive-promotions-and-newbie-guide__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__section {
    padding: 40px 0;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__sub-title {
    font-size: 1.3em;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__image-block,
  .page-blog-hello88-exclusive-promotions-and-newbie-guide__promo-image,
  .page-blog-hello88-exclusive-promotions-and-newbie-guide__game-image,
  .page-blog-hello88-exclusive-promotions-and-newbie-guide__app-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__app-download-section,
  .page-blog-hello88-exclusive-promotions-and-newbie-guide__promo-grid,
  .page-blog-hello88-exclusive-promotions-and-newbie-guide__game-category-grid,
  .page-blog-hello88-exclusive-promotions-and-newbie-guide__transaction-section,
  .page-blog-hello88-exclusive-promotions-and-newbie-guide__support-channels {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-hello88-exclusive-promotions-and-newbie-guide__faq-answer {
    padding: 0 15px 15px;
  }
}