.page-blog-u888-new-user-promo {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--background);
  line-height: 1.6;
}

/* Color contrast logic */
.page-blog-u888-new-user-promo {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-u888-new-user-promo__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 40px;
  padding-top: 10px;
}

.page-blog-u888-new-user-promo__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 0;
  margin-bottom: 20px;
}

.page-blog-u888-new-user-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

.page-blog-u888-new-user-promo__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: var(--text-main);
}

.page-blog-u888-new-user-promo__main-title {
  font-size: clamp(2em, 5vw, 3em);
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-main);
  line-height: 1.2;
}

.page-blog-u888-new-user-promo__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-u888-new-user-promo__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.page-blog-u888-new-user-promo__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
}

.page-blog-u888-new-user-promo__btn--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-blog-u888-new-user-promo__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-u888-new-user-promo__btn--secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-u888-new-user-promo__btn--secondary:hover {
  transform: translateY(-2px);
  background-color: #1E3A2A; /* Darker Deep Green */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-u888-new-user-promo__section {
  padding: 60px 0;
}

.page-blog-u888-new-user-promo__section--intro {
  background-color: #08160F; /* Background */
}

.page-blog-u888-new-user-promo__section--benefits {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-u888-new-user-promo__section--how-to {
  background-color: #08160F; /* Background */
}

.page-blog-u888-new-user-promo__section--terms {
  background-color: #11271B; /* Card BG */
}

.page-blog-u888-new-user-promo__section--games {
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-u888-new-user-promo__section--why-choose {
  background-color: #08160F; /* Background */
}

.page-blog-u888-new-user-promo__section--faq {
  background-color: #11271B; /* Card BG */
}

.page-blog-u888-new-user-promo__section--cta-final {
  background: linear-gradient(180deg, #11A84E 0%, #22C768 100%); /* Main/Aux color gradient */
  color: #ffffff;
}

.page-blog-u888-new-user-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-u888-new-user-promo__heading {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-main);
}

.page-blog-u888-new-user-promo__section--cta-final .page-blog-u888-new-user-promo__heading {
  color: #ffffff;
}

.page-blog-u888-new-user-promo__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-u888-new-user-promo__section--cta-final .page-blog-u888-new-user-promo__paragraph {
  color: #f0f0f0;
}

.page-blog-u888-new-user-promo__keyword {
  font-weight: bold;
  color: var(--gold-color);
}

.page-blog-u888-new-user-promo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-u888-new-user-promo__card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-main);
}

.page-blog-u888-new-user-promo__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-blog-u888-new-user-promo__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--gold-color);
}

.page-blog-u888-new-user-promo__card-description {
  font-size: 0.95em;
  color: var(--text-secondary);
}

.page-blog-u888-new-user-promo__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-u888-new-user-promo__list-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-u888-new-user-promo__list-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--gold-color);
}

.page-blog-u888-new-user-promo__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  padding: 25px;
  background-color: #0A4B2C;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-u888-new-user-promo__image-text-block-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  min-width: 200px;
}

.page-blog-u888-new-user-promo__image-text-block-content {
  flex: 1;
  color: #F2FFF6;
}

.page-blog-u888-new-user-promo__image-text-block-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-blog-u888-new-user-promo__bullet-list {
  list-style: disc;
  padding-left: 25px;
  color: var(--text-secondary);
}

.page-blog-u888-new-user-promo__bullet-list li {
  margin-bottom: 10px;
}

.page-blog-u888-new-user-promo__game-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-u888-new-user-promo__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-blog-u888-new-user-promo__game-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--gold-color);
}

.page-blog-u888-new-user-promo__game-description {
  font-size: 0.9em;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-blog-u888-new-user-promo__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  background: var(--button-gradient);
  color: #ffffff;
}

.page-blog-u888-new-user-promo__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-u888-new-user-promo__feature-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-u888-new-user-promo__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-blog-u888-new-user-promo__feature-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--gold-color);
}

.page-blog-u888-new-user-promo__feature-description {
  font-size: 0.9em;
  color: var(--text-secondary);
}

.page-blog-u888-new-user-promo__faq-list {
  margin-top: 30px;
}

.page-blog-u888-new-user-promo__faq-item {
  background-color: #0A4B2C;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-u888-new-user-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  background-color: #11A84E;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.page-blog-u888-new-user-promo__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-u888-new-user-promo__faq-qtext {
  flex-grow: 1;
}

.page-blog-u888-new-user-promo__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

.page-blog-u888-new-user-promo__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #F2FFF6;
  background-color: #0A4B2C;
}

.page-blog-u888-new-user-promo__faq-answer p {
  margin-bottom: 0;
  color: #F2FFF6;
}

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

/* Apply color variables */
.page-blog-u888-new-user-promo__hero-content { color: var(--text-main); }
.page-blog-u888-new-user-promo__main-title { color: var(--text-main); }
.page-blog-u888-new-user-promo__description { color: var(--text-secondary); }
.page-blog-u888-new-user-promo__btn--primary { background: var(--button-gradient); color: #ffffff; }
.page-blog-u888-new-user-promo__btn--secondary { background: var(--card-bg); color: var(--text-main); border-color: var(--border-color); }
.page-blog-u888-new-user-promo__btn--secondary:hover { background-color: var(--divider-color); }
.page-blog-u888-new-user-promo__section--intro { background-color: var(--background); }
.page-blog-u888-new-user-promo__section--benefits { background-color: var(--deep-green); }
.page-blog-u888-new-user-promo__section--how-to { background-color: var(--background); }
.page-blog-u888-new-user-promo__section--terms { background-color: var(--card-bg); }
.page-blog-u888-new-user-promo__section--games { background-color: var(--deep-green); }
.page-blog-u888-new-user-promo__section--why-choose { background-color: var(--background); }
.page-blog-u888-new-user-promo__section--faq { background-color: var(--card-bg); }
.page-blog-u888-new-user-promo__section--cta-final { background: linear-gradient(180deg, var(--main-color) 0%, var(--accent-color) 100%); color: #ffffff; }
.page-blog-u888-new-user-promo__section--cta-final .page-blog-u888-new-user-promo__heading { color: #ffffff; }
.page-blog-u888-new-user-promo__section--cta-final .page-blog-u888-new-user-promo__paragraph { color: #f0f0f0; }
.page-blog-u888-new-user-promo__heading { color: var(--text-main); }
.page-blog-u888-new-user-promo__paragraph { color: var(--text-secondary); }
.page-blog-u888-new-user-promo__keyword { color: var(--gold-color); }
.page-blog-u888-new-user-promo__card { background-color: var(--card-bg); border-color: var(--border-color); color: var(--text-main); }
.page-blog-u888-new-user-promo__card-title { color: var(--gold-color); }
.page-blog-u888-new-user-promo__card-description { color: var(--text-secondary); }
.page-blog-u888-new-user-promo__list-item { background-color: var(--card-bg); border-color: var(--border-color); color: var(--text-main); }
.page-blog-u888-new-user-promo__list-title { color: var(--gold-color); }
.page-blog-u888-new-user-promo__image-text-block { background-color: var(--deep-green); }
.page-blog-u888-new-user-promo__image-text-block-content { color: var(--text-main); }
.page-blog-u888-new-user-promo__image-text-block-title { color: var(--gold-color); }
.page-blog-u888-new-user-promo__bullet-list { color: var(--text-secondary); }
.page-blog-u888-new-user-promo__bullet-list li { color: var(--text-secondary); }
.page-blog-u888-new-user-promo__game-card { background-color: var(--card-bg); border-color: var(--border-color); color: var(--text-main); }
.page-blog-u888-new-user-promo__game-title { color: var(--gold-color); }
.page-blog-u888-new-user-promo__game-description { color: var(--text-secondary); }
.page-blog-u888-new-user-promo__btn--small { background: var(--button-gradient); color: #ffffff; }
.page-blog-u888-new-user-promo__features-grid { background-color: transparent; } /* Ensure transparent if on main background */
.page-blog-u888-new-user-promo__feature-item { background-color: var(--card-bg); border-color: var(--border-color); color: var(--text-main); }
.page-blog-u888-new-user-promo__feature-title { color: var(--gold-color); }
.page-blog-u888-new-user-promo__feature-description { color: var(--text-secondary); }
.page-blog-u888-new-user-promo__faq-list { background-color: transparent; } /* Ensure transparent if on main background */
.page-blog-u888-new-user-promo__faq-item { background-color: var(--deep-green); border-color: var(--border-color); color: var(--text-main); }
.page-blog-u888-new-user-promo__faq-question { background-color: var(--main-color); color: #ffffff; border-color: var(--divider-color); }
.page-blog-u888-new-user-promo__faq-toggle { color: #ffffff; }
.page-blog-u888-new-user-promo__faq-answer { color: var(--text-main); background-color: var(--deep-green); }
.page-blog-u888-new-user-promo__faq-answer p { color: var(--text-main); }

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-blog-u888-new-user-promo {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-u888-new-user-promo__hero-image {
    max-height: 400px;
  }

  .page-blog-u888-new-user-promo__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-blog-u888-new-user-promo__heading {
    font-size: 1.8em;
  }

  .page-blog-u888-new-user-promo__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-u888-new-user-promo__btn {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-u888-new-user-promo__section,
  .page-blog-u888-new-user-promo__container,
  .page-blog-u888-new-user-promo__grid,
  .page-blog-u888-new-user-promo__card,
  .page-blog-u888-new-user-promo__list-item,
  .page-blog-u888-new-user-promo__game-card,
  .page-blog-u888-new-user-promo__feature-item,
  .page-blog-u888-new-user-promo__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-u888-new-user-promo img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-u888-new-user-promo__card-image,
  .page-blog-u888-new-user-promo__game-image {
    height: auto;
    max-height: 250px;
  }

  .page-blog-u888-new-user-promo__feature-icon {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
  }

  .page-blog-u888-new-user-promo__image-text-block {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-u888-new-user-promo__image-text-block-image {
    width: 100%;
    min-width: unset;
  }

  .page-blog-u888-new-user-promo__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-u888-new-user-promo__faq-answer {
    padding: 15px 20px;
  }
}

/* Ensure minimum image size for content area */
.page-blog-u888-new-user-promo img:not(.page-blog-u888-new-user-promo__feature-icon) {
  min-width: 200px;
  min-height: 200px;
}

.page-blog-u888-new-user-promo__feature-icon {
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
}