/* style/download-center-ios.css */
.page-download-center-ios {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-download-center-ios__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-download-center-ios__section {
  padding: 60px 0;
  text-align: center;
}

.page-download-center-ios__section-title {
  font-size: 2.5em;
  color: #0A246A;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-download-center-ios__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F39C12;
  border-radius: 2px;
}

.page-download-center-ios__description {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-download-center-ios__hero {
  background: linear-gradient(135deg, #0A246A 0%, #0A246A 60%, #F39C12 100%);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-download-center-ios__hero-image {
  max-width: 450px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.page-download-center-ios__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-download-center-ios__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-ios__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-download-center-ios__btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-ios__btn i {
  margin-right: 10px;
  font-size: 1.2em;
}

.page-download-center-ios__btn--primary {
  background-color: #F39C12;
  color: #0A246A;
  border: 2px solid #F39C12;
}

.page-download-center-ios__btn--primary:hover {
  background-color: #e08e0b;
  border-color: #e08e0b;
  transform: translateY(-3px);
}

.page-download-center-ios__btn--secondary {
  background-color: transparent;
  color: #F39C12;
  border: 2px solid #F39C12;
}

.page-download-center-ios__btn--secondary:hover {
  background-color: #F39C12;
  color: #0A246A;
  transform: translateY(-3px);
}

/* Intro Section */
.page-download-center-ios__section--intro .page-download-center-ios__content-block {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05em;
  color: #444;
}

.page-download-center-ios__section--intro .page-download-center-ios__content-block p {
  margin-bottom: 1em;
}

.page-download-center-ios__section--intro .page-download-center-ios__content-block strong {
  color: #0A246A;
}

/* Benefits Section */
.page-download-center-ios__section--benefits {
  background-color: #fff;
}

.page-download-center-ios__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download-center-ios__benefit-card {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-download-center-ios__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-download-center-ios__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-download-center-ios__card-title {
  font-size: 1.4em;
  color: #0A246A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download-center-ios__benefit-card p {
  color: #666;
  font-size: 0.95em;
}

/* Guide Section */
.page-download-center-ios__section--guide {
  background-color: #f0f4f8;
}

.page-download-center-ios__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download-center-ios__step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-download-center-ios__step-number {
  background-color: #F39C12;
  color: #0A246A;
  font-size: 1.8em;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
}

.page-download-center-ios__step-card p {
  color: #555;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-download-center-ios__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-ios__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.page-download-center-ios__note {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  border-radius: 8px;
  padding: 20px;
  margin-top: 50px;
  font-size: 1.05em;
  text-align: left;
}

.page-download-center-ios__note strong {
  color: #856404;
}

/* Features Section */
.page-download-center-ios__section--features {
  background-color: #fff;
}

.page-download-center-ios__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-download-center-ios__feature-list li {
  background-color: #f7f7f7;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-download-center-ios__feature-list li i {
  color: #F39C12;
  margin-right: 15px;
  font-size: 1.3em;
}

.page-download-center-ios__feature-list li strong {
  color: #0A246A;
}

.page-download-center-ios__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Games Section */
.page-download-center-ios__section--games {
  background-color: #e6eef5;
}

.page-download-center-ios__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download-center-ios__game-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-ios__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-download-center-ios__game-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-download-center-ios__section--faq {
  background-color: #fff;
}

.page-download-center-ios__faq-accordion {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-download-center-ios__faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-download-center-ios__faq-question {
  background-color: #0A246A;
  color: #fff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-download-center-ios__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-download-center-ios__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-download-center-ios__faq-question:hover {
  background-color: #1a3c7a;
}

.page-download-center-ios__faq-answer {
  padding: 0 25px;
  background-color: #f7f7f7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-download-center-ios__faq-answer p {
  padding: 15px 0;
  color: #555;
}

/* CTA Section */
.page-download-center-ios__section--cta {
  background-color: #0A246A;
  color: #fff;
  padding: 80px 0;
}

.page-download-center-ios__cta-content {
  max-width: 900px;
}

.page-download-center-ios__section--cta .page-download-center-ios__section-title {
  color: #fff;
}

.page-download-center-ios__section--cta .page-download-center-ios__section-title::after {
  background-color: #F39C12;
}

.page-download-center-ios__section--cta .page-download-center-ios__description {
  color: #eee;
  margin-bottom: 50px;
}

.page-download-center-ios__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-download-center-ios__small-text {
  margin-top: 20px;
  font-size: 0.95em;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-download-center-ios__title {
    font-size: 2.8em;
  }
  .page-download-center-ios__section-title {
    font-size: 2em;
  }
  .page-download-center-ios__benefits-grid, .page-download-center-ios__guide-steps, .page-download-center-ios__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-download-center-ios__hero-image {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .page-download-center-ios__hero {
    padding: 80px 0;
  }
  .page-download-center-ios__title {
    font-size: 2.2em;
  }
  .page-download-center-ios__subtitle {
    font-size: 1.1em;
  }
  .page-download-center-ios__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-center-ios__cta-group {
    flex-direction: column;
    align-items: center;
  }
  .page-download-center-ios__section {
    padding: 40px 0;
  }
  .page-download-center-ios__section-title {
    font-size: 1.8em;
  }
  .page-download-center-ios__description {
    font-size: 1em;
  }
  .page-download-center-ios__hero-image {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .page-download-center-ios__title {
    font-size: 1.8em;
  }
  .page-download-center-ios__subtitle {
    font-size: 0.95em;
  }
  .page-download-center-ios__btn--large {
    width: 90%;
  }
  .page-download-center-ios__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-download-center-ios__faq-answer p {
    padding: 10px 0;
  }
}