.page-blog-hi88823-game-experience {
  color: #ffffff; /* Body background is dark, so text is light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Inherit from body or shared, ensuring contrast */
}

.page-blog-hi88823-game-experience__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-hi88823-game-experience__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-hi88823-game-experience__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #26A9E0; /* Brand color for titles */
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-blog-hi88823-game-experience__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for readability */
}

/* Hero Section */
.page-blog-hi88823-game-experience__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  background-color: #0d0d0d; /* Slightly darker than body for visual separation if needed */
  overflow: hidden;
}

.page-blog-hi88823-game-experience__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height */
  margin-bottom: 30px;
}

.page-blog-hi88823-game-experience__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-hi88823-game-experience__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em); /* H1 font size with clamp */
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-hi88823-game-experience__hero-description {
  font-size: 1.2em;
  color: #f8f8f8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-blog-hi88823-game-experience__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-hi88823-game-experience__btn-primary,
.page-blog-hi88823-game-experience__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-hi88823-game-experience__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-blog-hi88823-game-experience__btn-primary:hover {
  background-color: #1a8cc2;
  border-color: #1a8cc2;
}

.page-blog-hi88823-game-experience__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-hi88823-game-experience__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* Game Grid Section */
.page-blog-hi88823-game-experience__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-hi88823-game-experience__game-card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  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: #ffffff;
}

.page-blog-hi88823-game-experience__game-card-image {
  width: 100%;
  max-width: 400px; /* Ensure images don't stretch too wide in cards */
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-height: 200px; /* Minimum size for content images */
}

.page-blog-hi88823-game-experience__game-card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-blog-hi88823-game-experience__game-card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-blog-hi88823-game-experience__game-card-title a:hover {
  text-decoration: underline;
}

.page-blog-hi88823-game-experience__game-card-description {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-blog-hi88823-game-experience__cta-center {
  margin-top: 40px;
}

/* Feature Grid (Why Choose Us) Section */
.page-blog-hi88823-game-experience__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hi88823-game-experience__feature-card {
  background: rgba(255, 255, 255, 0.08);
  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: #ffffff;
}

.page-blog-hi88823-game-experience__feature-icon {
  width: 100%;
  max-width: 300px; /* Max width for feature icons */
  height: auto;
  margin-bottom: 15px;
  min-height: 200px; /* Minimum size for content images */
  object-fit: cover;
}

.page-blog-hi88823-game-experience__feature-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-blog-hi88823-game-experience__feature-description {
  font-size: 0.95em;
  color: #e0e0e0;
}

/* Access Guide Section */
.page-blog-hi88823-game-experience__steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-hi88823-game-experience__step-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-blog-hi88823-game-experience__step-title {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-blog-hi88823-game-experience__step-description {
  font-size: 0.95em;
  color: #e0e0e0;
}

/* FAQ Section */
.page-blog-hi88823-game-experience__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-blog-hi88823-game-experience__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-blog-hi88823-game-experience__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  color: #FFFFFF;
  background-color: #26A9E0; /* Brand color for question */
  border-radius: 10px;
}

.page-blog-hi88823-game-experience__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hi88823-game-experience__faq-question::marker {
  display: none;
}

.page-blog-hi88823-game-experience__faq-qtext {
  flex-grow: 1;
  color: #FFFFFF;
}

.page-blog-hi88823-game-experience__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFFFFF;
}

.page-blog-hi88823-game-experience__faq-answer {
  padding: 20px;
  padding-top: 0;
  font-size: 1em;
  color: #e0e0e0;
}

.page-blog-hi88823-game-experience__faq-answer p {
  margin-bottom: 0;
  color: #e0e0e0;
}

/* Final CTA Section */
.page-blog-hi88823-game-experience__cta-final {
  background-color: #0d0d0d;
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-hi88823-game-experience__section {
    padding: 40px 0;
  }

  .page-blog-hi88823-game-experience__container {
    padding: 0 15px; /* Add padding to container on mobile */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-hi88823-game-experience__section-title {
    font-size: 2em;
  }

  .page-blog-hi88823-game-experience__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-blog-hi88823-game-experience__hero-description {
    font-size: 1em;
  }

  .page-blog-hi88823-game-experience__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-hi88823-game-experience__btn-primary,
  .page-blog-hi88823-game-experience__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Images and Videos */
  .page-blog-hi88823-game-experience img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Enforce minimum size for content images */
    min-height: 200px !important; /* Enforce minimum size for content images */
    box-sizing: border-box !important;
  }

  .page-blog-hi88823-game-experience__hero-image {
    max-height: 400px;
  }

  .page-blog-hi88823-game-experience__game-card-image,
  .page-blog-hi88823-game-experience__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  /* Ensure all containers for images/videos are responsive */
  .page-blog-hi88823-game-experience__section,
  .page-blog-hi88823-game-experience__card,
  .page-blog-hi88823-game-experience__container,
  .page-blog-hi88823-game-experience__game-card,
  .page-blog-hi88823-game-experience__feature-card,
  .page-blog-hi88823-game-experience__step-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent content overflow */
  }

  .page-blog-hi88823-game-experience__video-section {
    padding-top: 10px !important;
  }

  .page-blog-hi88823-game-experience video,
  .page-blog-hi88823-game-experience__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hi88823-game-experience__video-container,
  .page-blog-hi88823-game-experience__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-hi88823-game-experience__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-hi88823-game-experience__faq-answer {
    padding: 15px;
  }
}