/* style/app-download-installation-steps.css */
.page-app-download-installation-steps {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f0f2f5;
}

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

.page-app-download-installation-steps__hero {
  background: linear-gradient(135deg, #FF0055, #00FFEE);
  color: #ffffff;
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-installation-steps__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:hiphop_pattern,geometric,abstract]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-app-download-installation-steps__hero > * {
  position: relative;
  z-index: 1;
}

.page-app-download-installation-steps__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-app-download-installation-steps__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-app-download-installation-steps__hero-image-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.page-app-download-installation-steps__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid #00FFEE;
}

.page-app-download-installation-steps__section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.page-app-download-installation-steps__section--dark {
  background-color: #2a2a2a;
  color: #f0f0f0;
}

.page-app-download-installation-steps__section--dark .page-app-download-installation-steps__section-title,
.page-app-download-installation-steps__section--dark .page-app-download-installation-steps__heading-3 {
  color: #00FFEE;
}

.page-app-download-installation-steps__section-title {
  font-size: 2.5em;
  color: #FF0055;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-app-download-installation-steps__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-app-download-installation-steps__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-app-download-installation-steps__feature-list li {
  background-color: #f9f9f9;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  font-size: 1.05em;
  color: #444;
}

.page-app-download-installation-steps__section--dark .page-app-download-installation-steps__feature-list li {
  background-color: #3a3a3a;
  color: #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-app-download-installation-steps__icon {
  margin-right: 15px;
  font-size: 1.4em;
  color: #FF0055;
}

.page-app-download-installation-steps__icon--check::before {
  content: '✔'; /* Unicode checkmark */
  display: inline-block;
  font-weight: bold;
}

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

.page-app-download-installation-steps__grid-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-app-download-installation-steps__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-app-download-installation-steps__section--dark .page-app-download-installation-steps__grid-item {
  background-color: #3a3a3a;
  color: #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-app-download-installation-steps__heading-3 {
  font-size: 1.6em;
  color: #FF0055;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-app-download-installation-steps__section--dark .page-app-download-installation-steps__heading-3 {
  color: #00FFEE;
}

.page-app-download-installation-steps__image--small {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-app-download-installation-steps__step-by-step {
  margin-top: 40px;
}

.page-app-download-installation-steps__step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 30px;
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.page-app-download-installation-steps__section--dark .page-app-download-installation-steps__step {
  background-color: #333333;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-app-download-installation-steps__step:nth-child(even) {
  flex-direction: row-reverse;
}

.page-app-download-installation-steps__step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #FF0055;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(255, 0, 85, 0.4);
  position: sticky;
  top: 20px; /* For fixed position during scroll */
  z-index: 2;
}

.page-app-download-installation-steps__section--dark .page-app-download-installation-steps__step-number {
  background-color: #00FFEE;
  box-shadow: 0 4px 10px rgba(0, 255, 238, 0.4);
}

.page-app-download-installation-steps__step-content {
  flex-grow: 1;
}

.page-app-download-installation-steps__step-image {
  flex-shrink: 0;
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid #00FFEE;
}

.page-app-download-installation-steps__step:nth-child(even) .page-app-download-installation-steps__step-image {
  border: 2px solid #FF0055;
}

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

.page-app-download-installation-steps__faq-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-app-download-installation-steps__section--dark .page-app-download-installation-steps__faq-item {
  background-color: #3a3a3a;
  color: #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-app-download-installation-steps__section--cta {
  background: linear-gradient(45deg, #FF0055, #00FFEE);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid #e0e0e0;
}

.page-app-download-installation-steps__section--cta .page-app-download-installation-steps__section-title {
  color: #ffffff;
}

.page-app-download-installation-steps__section--cta .page-app-download-installation-steps__section-title::after {
  background-color: #ffffff;
}

.page-app-download-installation-steps__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-app-download-installation-steps__responsible-gaming {
  margin-top: 30px;
  font-size: 0.9em;
  opacity: 0.8;
}

/* Buttons */
.page-app-download-installation-steps__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-app-download-installation-steps__btn--primary {
  background-color: #FF0055;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
}

.page-app-download-installation-steps__btn--primary:hover {
  background-color: #e6004d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 0, 85, 0.6);
}

.page-app-download-installation-steps__btn--secondary {
  background-color: #00FFEE;
  color: #2a2a2a;
  box-shadow: 0 4px 15px rgba(0, 255, 238, 0.4);
}

.page-app-download-installation-steps__btn--secondary:hover {
  background-color: #00e6d5;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 255, 238, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-app-download-installation-steps__title {
    font-size: 2.5em;
  }
  .page-app-download-installation-steps__section-title {
    font-size: 2em;
  }
  .page-app-download-installation-steps__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-app-download-installation-steps__step:nth-child(even) {
    flex-direction: column;
  }
  .page-app-download-installation-steps__step-image {
    order: -1; /* Image appears above content on small screens */
    margin-bottom: 20px;
  }
  .page-app-download-installation-steps__step-number {
    margin-bottom: 20px;
    position: static;
  }
}

@media (max-width: 768px) {
  .page-app-download-installation-steps__hero {
    padding: 60px 0 30px;
  }
  .page-app-download-installation-steps__title {
    font-size: 2em;
  }
  .page-app-download-installation-steps__subtitle {
    font-size: 1.1em;
  }
  .page-app-download-installation-steps__section {
    padding: 40px 0;
  }
  .page-app-download-installation-steps__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-app-download-installation-steps__text {
    font-size: 1em;
  }
  .page-app-download-installation-steps__grid-item {
    padding: 25px;
  }
  .page-app-download-installation-steps__heading-3 {
    font-size: 1.4em;
  }
  .page-app-download-installation-steps__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-app-download-installation-steps__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-app-download-installation-steps__cta-buttons .page-app-download-installation-steps__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-app-download-installation-steps__title {
    font-size: 1.8em;
  }
  .page-app-download-installation-steps__section-title {
    font-size: 1.5em;
  }
  .page-app-download-installation-steps__hero-image {
    max-width: 90%;
  }
  .page-app-download-installation-steps__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-app-download-installation-steps__step-image {
    max-width: 100%;
  }
}