.page-xo-so {
  font-family: 'Arial', sans-serif;
  color: #E5E5D1; /* Light text for dark background */
  background-color: #1A1A2E; /* Main background color */
  line-height: 1.6;
}

.page-xo-so__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A2E, #2A2A4A);
  position: relative;
  overflow: hidden;
}

.page-xo-so__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-xo-so__hero-title {
  font-size: 3.5em;
  color: #E6B34B; /* Auxiliary color for titles */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-xo-so__hero-subtitle {
  font-size: 1.4em;
  color: #CCCCCC;
  margin-bottom: 40px;
}

.page-xo-so__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-xo-so__btn {
  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, transform 0.3s ease;
}

.page-xo-so__btn--primary {
  background-color: #E6B34B; /* Auxiliary color for primary buttons */
  color: #1A1A2E; /* Dark text for light button */
  border: 2px solid #E6B34B;
}

.page-xo-so__btn--primary:hover {
  background-color: #F0C969;
  transform: translateY(-3px);
}

.page-xo-so__btn--secondary {
  background-color: transparent;
  color: #E6B34B;
  border: 2px solid #E6B34B;
}

.page-xo-so__btn--secondary:hover {
  background-color: #E6B34B;
  color: #1A1A2E;
  transform: translateY(-3px);
}

.page-xo-so__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-xo-so__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-xo-so__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-xo-so__section-title {
  font-size: 2.8em;
  color: #E6B34B;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-xo-so__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #CCCCCC;
}

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

.page-xo-so__card {
  background-color: #2A2A4A; /* Darker shade for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-xo-so__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-xo-so__card-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-xo-so__card-title {
  font-size: 1.8em;
  color: #E6B34B;
  margin-bottom: 15px;
}

.page-xo-so__card-text {
  font-size: 1em;
  color: #B0B0B0;
}

.page-xo-so__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-xo-so__step {
  background-color: #2A2A4A;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-xo-so__step-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-xo-so__step-title {
  font-size: 1.6em;
  color: #E6B34B;
  margin-bottom: 15px;
}

.page-xo-so__step-text {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-xo-so__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-xo-so__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-xo-so__list-item {
  background-color: #2A2A4A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #CCCCCC;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}

.page-xo-so__list-item::before {
  content: '✓';
  color: #E6B34B;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.5em;
}

.page-xo-so__promo-actions {
  margin-top: 40px;
}

.page-xo-so__promo-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-xo-so__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-xo-so__app-text-content {
  max-width: 600px;
  text-align: center;
}

.page-xo-so__app-image-wrapper {
  width: 100%;
  max-width: 500px;
}

.page-xo-so__app-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-xo-so__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-xo-so__hero-content {
    text-align: left;
    margin-right: 40px;
  }

  .page-xo-so__hero-actions {
    justify-content: flex-start;
  }

  .page-xo-so__hero-image-wrapper {
    position: relative;
    width: 50%;
    height: auto;
    opacity: 1;
    z-index: 1;
  }

  .page-xo-so__hero-image {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  .page-xo-so__section-title {
    font-size: 3.2em;
  }

  .page-xo-so__app-content {
    flex-direction: row;
    text-align: left;
  }

  .page-xo-so__app-text-content {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .page-xo-so__hero-title {
    font-size: 2.5em;
  }

  .page-xo-so__hero-subtitle {
    font-size: 1.1em;
  }

  .page-xo-so__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-xo-so__btn {
    width: 100%;
    max-width: 280px;
  }

  .page-xo-so__section-title {
    font-size: 2em;
  }

  .page-xo-so__card-image {
    height: 200px;
  }

  .page-xo-so__step-icon {
    width: 100px;
    height: 100px;
  }

  .page-xo-so__list-item {
    font-size: 1em;
    padding: 15px;
  }
}