.page-blog-u888-vip-platform-deep-dive {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Main Text */
  background-color: #08160F; /* Background */
}

.page-blog-u888-vip-platform-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-u888-vip-platform-deep-dive__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #08160F; /* Ensure dark background */
}

.page-blog-u888-vip-platform-deep-dive__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-u888-vip-platform-deep-dive__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-blog-u888-vip-platform-deep-dive__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
  color: #F2FFF6;
}

.page-blog-u888-vip-platform-deep-dive__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6;
  line-height: 1.2;
}

.page-blog-u888-vip-platform-deep-dive__description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-u888-vip-platform-deep-dive__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-u888-vip-platform-deep-dive__cta-buttons--center {
  margin-top: 30px;
}

.page-blog-u888-vip-platform-deep-dive__btn-primary,
.page-blog-u888-vip-platform-deep-dive__btn-secondary {
  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;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-u888-vip-platform-deep-dive__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6;
  border: none;
}

.page-blog-u888-vip-platform-deep-dive__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.4);
}

.page-blog-u888-vip-platform-deep-dive__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F; /* Deep Green */
}

.page-blog-u888-vip-platform-deep-dive__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-blog-u888-vip-platform-deep-dive__content-section {
  padding: 60px 0;
}

.page-blog-u888-vip-platform-deep-dive__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #F2FFF6; /* Main Text */
}

.page-blog-u888-vip-platform-deep-dive__light-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-u888-vip-platform-deep-dive__dark-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
}

.page-blog-u888-vip-platform-deep-dive p {
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-blog-u888-vip-platform-deep-dive a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-blog-u888-vip-platform-deep-dive a:hover {
  text-decoration: underline;
}

.page-blog-u888-vip-platform-deep-dive__game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-u888-vip-platform-deep-dive__game-card {
  background-color: #08160F; /* Background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-u888-vip-platform-deep-dive__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-blog-u888-vip-platform-deep-dive__game-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 15px 10px;
  color: #F2C14E; /* Gold */
}

.page-blog-u888-vip-platform-deep-dive__game-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin: 0 15px 20px;
  flex-grow: 1;
}

.page-blog-u888-vip-platform-deep-dive__btn-text {
  color: #57E38D;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid #57E38D;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin: 0 15px;
  display: inline-block;
}

.page-blog-u888-vip-platform-deep-dive__btn-text:hover {
  background-color: rgba(87, 227, 141, 0.1);
  text-decoration: none;
}

.page-blog-u888-vip-platform-deep-dive__promotion-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-u888-vip-platform-deep-dive__promotion-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-u888-vip-platform-deep-dive__promotion-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-blog-u888-vip-platform-deep-dive__promotion-title a {
  color: #F2C14E; /* Gold */
}

.page-blog-u888-vip-platform-deep-dive__promotion-title a:hover {
  text-decoration: underline;
}

.page-blog-u888-vip-platform-deep-dive__info-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-blog-u888-vip-platform-deep-dive__info-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-blog-u888-vip-platform-deep-dive__info-text {
  flex: 1;
  min-width: 300px;
}

.page-blog-u888-vip-platform-deep-dive__sub-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-blog-u888-vip-platform-deep-dive__step-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-blog-u888-vip-platform-deep-dive__step-list li {
  margin-bottom: 8px;
}

.page-blog-u888-vip-platform-deep-dive__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-blog-u888-vip-platform-deep-dive__feature-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-u888-vip-platform-deep-dive__feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

.page-blog-u888-vip-platform-deep-dive__feature-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-blog-u888-vip-platform-deep-dive__advice-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-u888-vip-platform-deep-dive__advice-item {
  background-color: #08160F; /* Background */
  border-left: 5px solid #2AD16F;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #F2FFF6;
}

.page-blog-u888-vip-platform-deep-dive__advice-item strong {
  color: #F2C14E;
}

.page-blog-u888-vip-platform-deep-dive__review-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-blog-u888-vip-platform-deep-dive__faq-list {
  margin-top: 30px;
}

.page-blog-u888-vip-platform-deep-dive__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-u888-vip-platform-deep-dive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15rem;
  color: #F2C14E; /* Gold */
  background-color: #1E3A2A; /* Divider */
  border-bottom: 1px solid #2E7A4E; /* Border */
}

.page-blog-u888-vip-platform-deep-dive__faq-item[open] .page-blog-u888-vip-platform-deep-dive__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-blog-u888-vip-platform-deep-dive__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-u888-vip-platform-deep-dive__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-u888-vip-platform-deep-dive__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8;
}

/* Details element specific styling */
.page-blog-u888-vip-platform-deep-dive__faq-item summary {
  list-style: none;
}

.page-blog-u888-vip-platform-deep-dive__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-blog-u888-vip-platform-deep-dive__hero-content {
    max-width: 700px;
  }

  .page-blog-u888-vip-platform-deep-dive__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-u888-vip-platform-deep-dive__description {
    font-size: 1.1rem;
  }

  .page-blog-u888-vip-platform-deep-dive__info-block {
    flex-direction: column;
  }

  .page-blog-u888-vip-platform-deep-dive__info-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-u888-vip-platform-deep-dive__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-u888-vip-platform-deep-dive__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-blog-u888-vip-platform-deep-dive__hero-content {
    padding: 15px;
  }

  .page-blog-u888-vip-platform-deep-dive__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-u888-vip-platform-deep-dive__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-u888-vip-platform-deep-dive__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-u888-vip-platform-deep-dive__btn-primary,
  .page-blog-u888-vip-platform-deep-dive__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 15px;
    font-size: 0.95rem;
  }

  .page-blog-u888-vip-platform-deep-dive__content-section {
    padding: 40px 0;
  }

  .page-blog-u888-vip-platform-deep-dive__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-blog-u888-vip-platform-deep-dive__game-showcase {
    gap: 20px;
  }

  .page-blog-u888-vip-platform-deep-dive__game-title {
    font-size: 1.2rem;
  }

  .page-blog-u888-vip-platform-deep-dive__game-description {
    font-size: 0.9rem;
  }

  .page-blog-u888-vip-platform-deep-dive__promotion-item,
  .page-blog-u888-vip-platform-deep-dive__feature-item {
    padding: 20px;
  }

  .page-blog-u888-vip-platform-deep-dive__promotion-title,
  .page-blog-u888-vip-platform-deep-dive__feature-title {
    font-size: 1.3rem;
  }

  .page-blog-u888-vip-platform-deep-dive__info-block {
    gap: 20px;
  }

  .page-blog-u888-vip-platform-deep-dive__sub-title {
    font-size: 1.5rem;
  }

  .page-blog-u888-vip-platform-deep-dive__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-u888-vip-platform-deep-dive__faq-answer {
    padding: 15px 20px;
  }

  /* Image and Video Responsive */
  .page-blog-u888-vip-platform-deep-dive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-u888-vip-platform-deep-dive__hero-image-wrapper,
  .page-blog-u888-vip-platform-deep-dive__game-card,
  .page-blog-u888-vip-platform-deep-dive__info-image,
  .page-blog-u888-vip-platform-deep-dive__feature-image,
  .page-blog-u888-vip-platform-deep-dive__review-image,
  .page-blog-u888-vip-platform-deep-dive__promotion-item,
  .page-blog-u888-vip-platform-deep-dive__feature-item,
  .page-blog-u888-vip-platform-deep-dive__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-blog-u888-vip-platform-deep-dive__hero-image {
    filter: brightness(0.5) !important; /* Make hero image darker on mobile */
  }

}

@media (max-width: 480px) {
  .page-blog-u888-vip-platform-deep-dive__hero-section {
    padding-bottom: 30px;
  }

  .page-blog-u888-vip-platform-deep-dive__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .page-blog-u888-vip-platform-deep-dive__description {
    font-size: 0.9rem;
  }

  .page-blog-u888-vip-platform-deep-dive__section-title {
    font-size: 1.6rem;
  }

  .page-blog-u888-vip-platform-deep-dive__game-showcase {
    grid-template-columns: 1fr;
  }
}