.page-blog-hy88-app-ios-game-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main on Background #0D0E12 */
  background-color: #0D0E12; /* Overall page background */
  padding-bottom: 50px;
}

.page-blog-hy88-app-ios-game-features__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 as per instruction */
  background: linear-gradient(180deg, #17191F 0%, #0D0E12 100%); /* Card BG to Background gradient */
  border-bottom: 1px solid #A84F0C;
}

.page-blog-hy88-app-ios-game-features__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure it takes full width within max-width */
}

.page-blog-hy88-app-ios-game-features__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-hy88-app-ios-game-features__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-blog-hy88-app-ios-game-features__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-blog-hy88-app-ios-game-features__main-title {
  font-size: clamp(2em, 5vw, 2.5em); /* H1 font size constraint */
  font-weight: 700;
  line-height: 1.2;
  color: #FFF3E6;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-hy88-app-ios-game-features__intro-text {
  font-size: 1.1em;
  color: #FFB04D; /* Glow color for intro text */
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-hy88-app-ios-game-features__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  max-width: 100%; /* Ensure responsive */
  box-sizing: border-box; /* Ensure responsive */
  white-space: normal; /* Ensure responsive */
  word-wrap: break-word; /* Ensure responsive */
}

.page-blog-hy88-app-ios-game-features__cta-button:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%); /* Hover effect */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.page-blog-hy88-app-ios-game-features__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
  margin-top: 20px;
}

.page-blog-hy88-app-ios-game-features__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
  margin-top: 40px;
}

.page-blog-hy88-app-ios-game-features__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #0D0E12; /* Dark background */
  color: #FFF3E6; /* Light text */
}

.page-blog-hy88-app-ios-game-features__section-wrapper {
  padding: 20px 0;
}

.page-blog-hy88-app-ios-game-features__section-title {
  font-size: 2.2em;
  color: #FF8C1A; /* Primary color for section titles */
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  border-bottom: 2px solid #D96800; /* Deep Orange underline */
  padding-bottom: 10px;
}

.page-blog-hy88-app-ios-game-features__section-title:first-of-type {
    margin-top: 0;
}

.page-blog-hy88-app-ios-game-features__content-area p {
  margin-bottom: 1em;
  font-size: 1.05em;
  color: #FFF3E6;
}

.page-blog-hy88-app-ios-game-features__content-area p a {
  color: #FFA53A;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-blog-hy88-app-ios-game-features__content-area p a:hover {
  color: #FFB04D;
}

.page-blog-hy88-app-ios-game-features__feature-card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border color */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-hy88-app-ios-game-features__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.page-blog-hy88-app-ios-game-features__feature-card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Min image size */
  min-height: 200px; /* Min image size */
}

.page-blog-hy88-app-ios-game-features__card-title {
  font-size: 1.6em;
  color: #FF8C1A; /* Primary color for card titles */
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-hy88-app-ios-game-features__cta-section {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

/* FAQ styles */
.page-blog-hy88-app-ios-game-features__faq-list {
  margin-top: 40px;
}

details.page-blog-hy88-app-ios-game-features__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #A84F0C; /* Border color */
  overflow: hidden;
  background: #17191F; /* Card BG */
  color: #FFF3E6; /* Text Main */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

details.page-blog-hy88-app-ios-game-features__faq-item summary.page-blog-hy88-app-ios-game-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFB04D; /* Glow color for question */
  font-weight: 600;
}

details.page-blog-hy88-app-ios-game-features__faq-item summary.page-blog-hy88-app-ios-game-features__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-hy88-app-ios-game-features__faq-item summary.page-blog-hy88-app-ios-game-features__faq-question:hover {
  background: rgba(255, 132, 26, 0.1); /* Subtle hover effect using primary color */
}

.page-blog-hy88-app-ios-game-features__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF3E6; /* Text Main */
}

.page-blog-hy88-app-ios-game-features__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FF8C1A; /* Primary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-hy88-app-ios-game-features__faq-item .page-blog-hy88-app-ios-game-features__faq-answer {
  padding: 0 20px 20px;
  background: rgba(23, 25, 31, 0.8); /* Slightly transparent Card BG */
  border-radius: 0 0 5px 5px;
  color: #FFF3E6; /* Text Main */
}

/* Responsive design */
@media (max-width: 768px) {
  .page-blog-hy88-app-ios-game-features {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-blog-hy88-app-ios-game-features__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* Ensure small top padding */
  }

  .page-blog-hy88-app-ios-game-features__hero-image {
    margin-bottom: 20px;
  }

  .page-blog-hy88-app-ios-game-features__main-title {
    font-size: clamp(1.8em, 8vw, 2.2em);
    margin-bottom: 15px;
  }

  .page-blog-hy88-app-ios-game-features__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-hy88-app-ios-game-features__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    margin-top: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-hy88-app-ios-game-features__cta-button--small {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 15px;
  }

  .page-blog-hy88-app-ios-game-features__cta-button--large {
    padding: 15px 35px;
    font-size: 18px;
    margin-top: 30px;
  }
  
  .page-blog-hy88-app-ios-game-features__content-area {
    padding: 20px 15px;
  }

  .page-blog-hy88-app-ios-game-features__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-blog-hy88-app-ios-game-features__feature-card {
    padding: 20px;
    margin-bottom: 30px;
  }

  .page-blog-hy88-app-ios-game-features__card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
  }

  .page-blog-hy88-app-ios-game-features__content-area img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }

  .page-blog-hy88-app-ios-game-features__section,
  .page-blog-hy88-app-ios-game-features__card,
  .page-blog-hy88-app-ios-game-features__container,
  .page-blog-hy88-app-ios-game-features__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  details.page-blog-hy88-app-ios-game-features__faq-item summary.page-blog-hy88-app-ios-game-features__faq-question { 
    padding: 15px; 
  }
  .page-blog-hy88-app-ios-game-features__faq-qtext { 
    font-size: 1em; 
  }
}

/* Ensure all images within content area adhere to min size */
.page-blog-hy88-app-ios-game-features__content-area img {
  min-width: 200px;
  min-height: 200px;
}

/* Button container responsive styles (if multiple buttons) */
.page-blog-hy88-app-ios-game-features__cta-buttons,
.page-blog-hy88-app-ios-game-features__button-group,
.page-blog-hy88-app-ios-game-features__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-blog-hy88-app-ios-game-features__cta-buttons,
  .page-blog-hy88-app-ios-game-features__button-group,
  .page-blog-hy88-app-ios-game-features__btn-container {
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-hy88-app-ios-game-features__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}