/* style/hi88-download-ios-app-guide.css */

.page-hi88-download-ios-app-guide {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
}

.page-hi88-download-ios-app-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hi88-download-ios-app-guide__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A2B47 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hi88-download-ios-app-guide__hero-image-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-hi88-download-ios-app-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hi88-download-ios-app-guide__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.page-hi88-download-ios-app-guide__subtitle {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-hi88-download-ios-app-guide__heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section headings */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.page-hi88-download-ios-app-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-hi88-download-ios-app-guide__section:last-of-type {
  border-bottom: none;
}

.page-hi88-download-ios-app-guide__text {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-hi88-download-ios-app-guide__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-hi88-download-ios-app-guide__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-hi88-download-ios-app-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-hi88-download-ios-app-guide__button--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #0A192F; /* Dark blue text on gold */
}

.page-hi88-download-ios-app-guide__button--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-hi88-download-ios-app-guide__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-hi88-download-ios-app-guide__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-hi88-download-ios-app-guide__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-hi88-download-ios-app-guide__step-item {
  background-color: #1A2B47; /* Slightly lighter dark blue for step cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hi88-download-ios-app-guide__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-hi88-download-ios-app-guide__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #B0B0B0;
  flex-grow: 1;
}

.page-hi88-download-ios-app-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-hi88-download-ios-app-guide__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-hi88-download-ios-app-guide__link:hover {
  text-decoration: underline;
}

.page-hi88-download-ios-app-guide__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-hi88-download-ios-app-guide__benefit-item {
  background-color: #1A2B47;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  text-align: left;
}

.page-hi88-download-ios-ios-app-guide__benefit-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-hi88-download-ios-app-guide__full-width-image {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-hi88-download-ios-app-guide__faq-item {
  background-color: #1A2B47;
  padding: 20px 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-hi88-download-ios-app-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-hi88-download-ios-app-guide__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #B0B0B0;
}

.page-hi88-download-ios-app-guide__section--cta {
  text-align: center;
  background-color: #0A192F;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hi88-download-ios-app-guide__image-bottom {
  max-width: 80%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-hi88-download-ios-app-guide__section--conclusion {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-hi88-download-ios-app-guide__title {
    font-size: 2.5em;
  }

  .page-hi88-download-ios-app-guide__subtitle {
    font-size: 1.1em;
  }

  .page-hi88-download-ios-app-guide__heading {
    font-size: 2em;
  }

  .page-hi88-download-ios-app-guide__button-group {
    flex-direction: column;
  }

  .page-hi88-download-ios-app-guide__button {
    width: 100%;
  }

  .page-hi88-download-ios-app-guide__step-grid {
    grid-template-columns: 1fr;
  }

  .page-hi88-download-ios-app-guide__benefit-grid {
    grid-template-columns: 1fr;
  }

  .page-hi88-download-ios-app-guide__full-width-image,
  .page-hi88-download-ios-app-guide__image-bottom {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .page-hi88-download-ios-app-guide__title {
    font-size: 2em;
  }

  .page-hi88-download-ios-app-guide__subtitle {
    font-size: 1em;
  }

  .page-hi88-download-ios-app-guide__heading {
    font-size: 1.8em;
  }

  .page-hi88-download-ios-app-guide__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}