/* style/app-download-ios-guide.css */
.page-app-download-ios-guide {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-app-download-ios-guide__hero-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-ios-guide__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-app-download-ios-guide__hero-section > div {
  position: relative;
  z-index: 1;
}

.page-app-download-ios-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-app-download-ios-guide__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-app-download-ios-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-app-download-ios-guide__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Deep blue text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-app-download-ios-guide__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-app-download-ios-guide__btn--secondary {
  background-color: #003366; /* Deep blue */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.page-app-download-ios-guide__btn--secondary:hover {
  background-color: #002244;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.5);
}

.page-app-download-ios-guide__intro-section,
.page-app-download-ios-guide__steps-section,
.page-app-download-ios-guide__faq-section,
.page-app-download-ios-guide__cta-section,
.page-app-download-ios-guide__responsible-gambling {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-app-download-ios-guide__intro-section {
  background-color: #fcfcfc;
}

.page-app-download-ios-guide__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.page-app-download-ios-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-app-download-ios-guide__description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-app-download-ios-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-app-download-ios-guide__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-app-download-ios-guide__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.page-app-download-ios-guide__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-app-download-ios-guide__feature-description {
  color: #666;
  font-size: 0.95em;
}

.page-app-download-ios-guide__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.page-app-download-ios-guide__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 40px;
  background-color: #fcfcfc;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.page-app-download-ios-guide__step-number {
  width: 60px;
  height: 60px;
  background-color: #003366;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 51, 102, 0.4);
}

.page-app-download-ios-guide__step-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-app-download-ios-guide__step-text {
  font-size: 1.1em;
  color: #444;
  max-width: 700px;
  margin-bottom: 30px;
}

.page-app-download-ios-guide__link {
  color: #003366;
  text-decoration: underline;
  font-weight: 600;
}

.page-app-download-ios-guide__link:hover {
  color: #FFD700;
  text-decoration: none;
}

.page-app-download-ios-guide__highlight-text {
  font-weight: 700;
  color: #003366;
}

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

.page-app-download-ios-guide__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-app-download-ios-guide__faq-item {
  background-color: #fcfcfc;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.page-app-download-ios-guide__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-app-download-ios-guide__faq-answer {
  color: #555;
  font-size: 1em;
}

.page-app-download-ios-guide__cta-section {
  background: linear-gradient(45deg, #003366, #004d99);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-app-download-ios-guide__section-title--cta {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-app-download-ios-guide__section-title--cta::after {
  background-color: #fff;
}

.page-app-download-ios-guide__description--cta {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-app-download-ios-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-app-download-ios-guide__responsible-gambling {
  background-color: #f0f3f2;
  text-align: center;
  padding: 60px 0;
  border-radius: 10px;
}

.page-app-download-ios-guide__image--small {
  max-width: 300px;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

  .page-app-download-ios-guide__section-title {
    font-size: 2em;
  }

  .page-app-download-ios-guide__intro-section,
  .page-app-download-ios-guide__steps-section,
  .page-app-download-ios-guide__faq-section,
  .page-app-download-ios-guide__cta-section,
  .page-app-download-ios-guide__responsible-gambling {
    padding: 40px 0;
  }

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

  .page-app-download-ios-guide__step-item {
    padding: 30px;
  }

  .page-app-download-ios-guide__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }

  .page-app-download-ios-guide__step-title {
    font-size: 1.5em;
  }

  .page-app-download-ios-guide__step-text {
    font-size: 1em;
  }

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

  .page-app-download-ios-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

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

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

  .page-app-download-ios-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-app-download-ios-guide__section-title {
    font-size: 1.8em;
  }

  .page-app-download-ios-guide__description {
    font-size: 0.95em;
  }
}