.page-ph365-mobile-app {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: 'Arial', sans-serif;
}

.page-ph365-mobile-app__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-ph365-mobile-app__hero-section {
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  text-align: center;
  background-color: #0A0A0A; /* Ensure consistency */
}

.page-ph365-mobile-app__hero-image {
  margin-bottom: 30px;
}

.page-ph365-mobile-app__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1920px; /* Ensure image scales down */
  margin: 0 auto;
}

.page-ph365-mobile-app__main-title {
  font-size: clamp(1.5rem, 4vw, 2rem); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-ph365-mobile-app__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-ph365-mobile-app__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-ph365-mobile-app__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  color: #FFF6D6; /* Text Main */
}

.page-ph365-mobile-app__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-ph365-mobile-app__button--primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
  transform: translateY(-2px);
}

.page-ph365-mobile-app__button--secondary {
  background: transparent;
  border: 2px solid #F2C14E; /* Main color */
}

.page-ph365-mobile-app__button--secondary:hover {
  background-color: rgba(242, 193, 78, 0.2);
  border-color: #FFD36B; /* Auxiliary color */
  transform: translateY(-2px);
}

.page-ph365-mobile-app__button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-ph365-mobile-app__section-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 25px;
  margin-top: 60px;
  font-weight: 700;
}

.page-ph365-mobile-app__section-description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-ph365-mobile-app__features-grid,
.page-ph365-mobile-app__download-steps,
.page-ph365-mobile-app__game-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-ph365-mobile-app__feature-card,
.page-ph365-mobile-app__step-card,
.page-ph365-mobile-app__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-ph365-mobile-app__feature-card img,
.page-ph365-mobile-app__step-card img,
.page-ph365-mobile-app__game-card img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Example size, adjust as needed */
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-ph365-mobile-app__feature-title,
.page-ph365-mobile-app__step-title,
.page-ph365-mobile-app__game-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-ph365-mobile-app__feature-text,
.page-ph365-mobile-app__step-text,
.page-ph365-mobile-app__game-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  flex-grow: 1;
}

.page-ph365-mobile-app__advantages-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 60px auto;
  text-align: left;
}

.page-ph365-mobile-app__advantages-list li {
  background-color: #111111; /* Card BG */
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  border-left: 5px solid #F2C14E; /* Main color for accent */
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-ph365-mobile-app__advantages-list li strong {
  color: #FFD36B; /* Auxiliary color */
}

.page-ph365-mobile-app__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-ph365-mobile-app__faq-section {
  padding: 60px 0;
}

.page-ph365-mobile-app__faq-item {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  border: 1px solid #3A2A12; /* Border color */
}

.page-ph365-mobile-app__faq-question {
  font-size: 1.2rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-ph365-mobile-app__faq-answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-ph365-mobile-app__hero-buttons,
  .page-ph365-mobile-app__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-ph365-mobile-app__button {
    width: 80%;
    max-width: 300px;
  }

  .page-ph365-mobile-app__features-grid,
  .page-ph365-mobile-app__download-steps,
  .page-ph365-mobile-app__game-types {
    grid-template-columns: 1fr;
  }

  .page-ph365-mobile-app__hero-image img,
  .page-ph365-mobile-app__feature-card img,
  .page-ph365-mobile-app__step-card img,
  .page-ph365-mobile-app__game-card img {
    max-width: 100%;
    height: auto;
  }

  .page-ph365-mobile-app__section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .page-ph365-mobile-app__hero-section {
    padding-bottom: 40px;
  }

  .page-ph365-mobile-app__main-title {
    font-size: 1.6rem;
  }

  .page-ph365-mobile-app__hero-description {
    font-size: 1rem;
  }

  .page-ph365-mobile-app__section-title {
    font-size: 1.5rem;
    margin-top: 40px;
  }

  .page-ph365-mobile-app__feature-title,
  .page-ph365-mobile-app__step-title,
  .page-ph365-mobile-app__game-title {
    font-size: 1.2rem;
  }

  .page-ph365-mobile-app__feature-text,
  .page-ph365-mobile-app__step-text,
  .page-ph365-mobile-app__game-text,
  .page-ph365-mobile-app__advantages-list li,
  .page-ph365-mobile-app__faq-answer {
    font-size: 0.9rem;
  }
}