.page-resources-hm888-platform-deep-dive {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A1A; /* Very dark background */
  line-height: 1.7;
}

.page-resources-hm888-platform-deep-dive__hero {
  background: linear-gradient(135deg, #0D47A1 0%, #1A237E 100%); /* Dark blue gradient */
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-resources-hm888-platform-deep-dive__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-resources-hm888-platform-deep-dive__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.2;
}

.page-resources-hm888-platform-deep-dive__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-hm888-platform-deep-dive__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-hm888-platform-deep-dive__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
  z-index: 0;
}

.page-resources-hm888-platform-deep-dive__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-hm888-platform-deep-dive__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  background-color: #263238; /* Slightly lighter dark background for sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-resources-hm888-platform-deep-dive__section:last-of-type {
  border-bottom: none;
}

.page-resources-hm888-platform-deep-dive__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources-hm888-platform-deep-dive__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for subtitles */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-resources-hm888-platform-deep-dive__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-resources-hm888-platform-deep-dive__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-resources-hm888-platform-deep-dive__button.--primary {
  background-color: #FFD700; /* Gold button */
  color: #0D47A1; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-resources-hm888-platform-deep-dive__button.--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-hm888-platform-deep-dive__button.--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-resources-hm888-platform-deep-dive__button.--secondary:hover {
  background-color: #FFD700;
  color: #0D47A1;
  transform: translateY(-3px);
}

.page-resources-hm888-platform-deep-dive__button.--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-resources-hm888-platform-deep-dive__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-hm888-platform-deep-dive__feature-item {
  background-color: #1A237E; /* Darker blue background for feature items */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-resources-hm888-platform-deep-dive__feature-item:hover {
  transform: translateY(-5px);
}

.page-resources-hm888-platform-deep-dive__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-resources-hm888-platform-deep-dive__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-hm888-platform-deep-dive__feature-description {
  font-size: 1em;
  color: #B0BEC5;
}

.page-resources-hm888-platform-deep-dive__section.--promotions {
  background-color: #0D47A1; /* Main blue for promotions section */
  text-align: center;
  color: #FFFFFF;
}

.page-resources-hm888-platform-deep-dive__promo-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-resources-hm888-platform-deep-dive__promo-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #E0E0E0;
}

.page-resources-hm888-platform-deep-dive__promo-list li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-resources-hm888-platform-deep-dive__cta-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-resources-hm888-platform-deep-dive__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-hm888-platform-deep-dive__ordered-list,
.page-resources-hm888-platform-deep-dive__unordered-list {
  margin: 20px 0;
  padding-left: 25px;
  color: #E0E0E0;
}

.page-resources-hm888-platform-deep-dive__ordered-list li,
.page-resources-hm888-platform-deep-dive__unordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-hm888-platform-deep-dive__app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-hm888-platform-deep-dive__qr-code {
  width: 150px;
  height: 150px;
  border: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-resources-hm888-platform-deep-dive__blockquote {
  background-color: #1A237E; /* Darker blue for blockquote */
  border-left: 5px solid #FFD700; /* Gold border */
  padding: 20px 30px;
  margin: 40px auto;
  font-style: italic;
  font-size: 1.15em;
  color: #B0BEC5;
  max-width: 900px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-hm888-platform-deep-dive__blockquote cite {
  display: block;
  margin-top: 15px;
  text-align: right;
  font-style: normal;
  color: #FFD700; /* Gold for cite */
  font-weight: 500;
}

.page-resources-hm888-platform-deep-dive__image-full-width {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-hm888-platform-deep-dive__section.--faq {
  background-color: #263238;
}

.page-resources-hm888-platform-deep-dive__faq-item {
  background-color: #1A237E;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-hm888-platform-deep-dive__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-hm888-platform-deep-dive__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-resources-hm888-platform-deep-dive__faq-question.active::after {
  transform: rotate(45deg);
}

.page-resources-hm888-platform-deep-dive__faq-answer {
  font-size: 1.05em;
  color: #B0BEC5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-resources-hm888-platform-deep-dive__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-resources-hm888-platform-deep-dive__section.--conclusion {
  background-color: #0D47A1;
  text-align: center;
  padding-bottom: 80px;
}

.page-resources-hm888-platform-deep-dive__cta-final {
  margin-top: 50px;
}

.page-resources-hm888-platform-deep-dive a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-hm888-platform-deep-dive a:hover {
  text-decoration: underline;
  color: #e6c200;
}

.page-resources-hm888-platform-deep-dive .highlight {
  color: #FFD700;
}

.page-resources-hm888-platform-deep-dive .keyword-emphasis {
  color: #FFD700;
  font-weight: bold;
}

/* Floating Ad Menu */
.page-resources-hm888-platform-deep-dive__floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFD700; /* Gold background */
  color: #0D47A1; /* Dark blue text */
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  transform: translateX(120%);
  transition: transform 0.5s ease-out;
}

.page-resources-hm888-platform-deep-dive__floating-ad.active {
  transform: translateX(0);
}

.page-resources-hm888-platform-deep-dive__floating-ad a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0D47A1; /* Dark blue text for link */
}

.page-resources-hm888-platform-deep-dive__floating-ad a:hover {
  text-decoration: none;
  color: #1A237E; /* Slightly darker blue on hover */
}

.page-resources-hm888-platform-deep-dive__floating-ad-icon {
  width: 30px;
  height: 30px;
  filter: brightness(0.8) saturate(1.5);
}

.page-resources-hm888-platform-deep-dive__floating-ad-text {
  font-weight: bold;
  font-size: 1em;
  white-space: nowrap;
}

.page-resources-hm888-platform-deep-dive__floating-ad-close {
  background: none;
  border: none;
  color: #0D47A1;
  font-size: 1.5em;
  cursor: pointer;
  margin-left: 10px;
  padding: 0 5px;
  line-height: 1;
}

.page-resources-hm888-platform-deep-dive__floating-ad-close:hover {
  color: #1A237E;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-hm888-platform-deep-dive__hero {
    flex-direction: column;
    padding: 60px 20px;
  }

  .page-resources-hm888-platform-deep-dive__hero-title {
    font-size: 2.5em;
  }

  .page-resources-hm888-platform-deep-dive__hero-description {
    font-size: 1em;
  }

  .page-resources-hm888-platform-deep-dive__section {
    padding: 40px 20px;
  }

  .page-resources-hm888-platform-deep-dive__section-title {
    font-size: 2em;
  }

  .page-resources-hm888-platform-deep-dive__sub-title {
    font-size: 1.5em;
  }

  .page-resources-hm888-platform-deep-dive__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-resources-hm888-platform-deep-dive__floating-ad {
    bottom: 10px;
    right: 10px;
    padding: 8px 15px;
  }

  .page-resources-hm888-platform-deep-dive__floating-ad-text {
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .page-resources-hm888-platform-deep-dive__hero-actions {
    flex-direction: column;
  }

  .page-resources-hm888-platform-deep-dive__button {
    width: 100%;
    max-width: 300px;
  }

  .page-resources-hm888-platform-deep-dive__hero-title {
    font-size: 2em;
  }

  .page-resources-hm888-platform-deep-dive__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-resources-hm888-platform-deep-dive__hero {
    padding: 40px 15px;
  }

  .page-resources-hm888-platform-deep-dive__hero-title {
    font-size: 1.8em;
  }

  .page-resources-hm888-platform-deep-dive__hero-description {
    font-size: 0.9em;
  }

  .page-resources-hm888-platform-deep-dive__section {
    padding: 30px 15px;
  }

  .page-resources-hm888-platform-deep-dive__section-title {
    font-size: 1.5em;
  }

  .page-resources-hm888-platform-deep-dive__sub-title {
    font-size: 1.3em;
  }

  .page-resources-hm888-platform-deep-dive__faq-question {
    font-size: 1.1em;
  }

  .page-resources-hm888-platform-deep-dive__floating-ad {
    bottom: 5px;
    right: 5px;
    padding: 5px 10px;
    gap: 5px;
  }

  .page-resources-hm888-platform-deep-dive__floating-ad-icon {
    width: 25px;
    height: 25px;
  }

  .page-resources-hm888-platform-deep-dive__floating-ad-text {
    font-size: 0.8em;
  }

  .page-resources-hm888-platform-deep-dive__floating-ad-close {
    font-size: 1.2em;
    margin-left: 5px;
  }
}