.page-home-registration-process {
  color: #333333; /* Dark text for light background */
}

.page-home-registration-process__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  background-color: #000000; /* Dark background for hero content */
  color: #FFFFFF;
  text-align: center;
}

.page-home-registration-process__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-home-registration-process__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-home-registration-process__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 90%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.page-home-registration-process__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-home-registration-process__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-home-registration-process__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  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-home-registration-process__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-home-registration-process__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-home-registration-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-home-registration-process__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

.page-home-registration-process__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #555555;
}

.page-home-registration-process__why-register-section {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.page-home-registration-process__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-home-registration-process__feature-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease;
}

.page-home-registration-process__feature-card:hover {
  transform: translateY(-5px);
}

.page-home-registration-process__feature-icon {
  width: 100%; /* Ensure images are not tiny */
  max-width: 250px; /* Example max-width for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-home-registration-process__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-home-registration-process__feature-description {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.5;
}

.page-home-registration-process__step-by-step-section {
  padding: 60px 0;
}

.page-home-registration-process__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-home-registration-process__step-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.page-home-registration-process__step-number {
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-right: 20px;
}

.page-home-registration-process__step-title {
  font-size: 2em;
  color: #000000;
  margin: 0;
  text-align: left;
}

.page-home-registration-process__step-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-home-registration-process__step-description {
  font-size: 1.05em;
  color: #444444;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 900px;
}

.page-home-registration-process__step-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-home-registration-process__step-button:hover {
  background-color: #333333;
}

.page-home-registration-process__verification-section {
  background-color: #f0f0f0;
  padding: 60px 0;
}

.page-home-registration-process__verification-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-home-registration-process__verification-image {
  flex: 1 1 45%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure image is not too small */
}

.page-home-registration-process__verification-text {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-home-registration-process__verification-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-home-registration-process__verification-text p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444444;
}

.page-home-registration-process__verification-list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #444444;
}

.page-home-registration-process__verification-list li {
  margin-bottom: 8px;
}

.page-home-registration-process__first-deposit-section {
  padding: 60px 0;
}

.page-home-registration-process__deposit-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-home-registration-process__deposit-step-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-home-registration-process__deposit-step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-home-registration-process__deposit-step-card p {
  color: #555555;
  line-height: 1.5;
}

.page-home-registration-process__deposit-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.page-home-registration-process__deposit-image {
  flex: 1 1 45%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.page-home-registration-process__explore-games-section {
  background-color: #000000;
  padding: 60px 0;
  color: #FFFFFF;
}

.page-home-registration-process__explore-games-section .page-home-registration-process__section-title {
  color: #FFFFFF;
}

.page-home-registration-process__explore-games-section .page-home-registration-process__section-intro {
  color: #f0f0f0;
}

.page-home-registration-process__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-home-registration-process__game-category-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-home-registration-process__game-category-card:hover {
  transform: translateY(-5px);
}

.page-home-registration-process__game-category-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-home-registration-process__game-category-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-home-registration-process__game-category-card p {
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-home-registration-process__game-category-link {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-home-registration-process__game-category-link:hover {
  background-color: #e0a53b;
}

.page-home-registration-process__responsible-gaming-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-home-registration-process__responsible-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-home-registration-process__responsible-image {
  flex: 1 1 45%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.page-home-registration-process__responsible-list {
  flex: 1 1 45%;
  list-style: none;
  padding: 0;
  min-width: 300px;
}

.page-home-registration-process__responsible-list li {
  background-color: #FFFFFF;
  border-left: 5px solid #FCBC45;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333333;
}

.page-home-registration-process__responsible-list li strong {
  color: #000000;
}

.page-home-registration-process__troubleshooting-section {
  padding: 60px 0;
}

.page-home-registration-process__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-home-registration-process__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-home-registration-process__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-home-registration-process__faq-answer {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.6;
}

.page-home-registration-process__faq-link {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-home-registration-process__faq-link:hover {
  background-color: #333333;
}

.page-home-registration-process__bonuses-section {
  background-color: #000000;
  padding: 60px 0;
  color: #FFFFFF;
}

.page-home-registration-process__bonuses-section .page-home-registration-process__section-title {
  color: #FFFFFF;
}

.page-home-registration-process__bonuses-section .page-home-registration-process__section-intro {
  color: #f0f0f0;
}

.page-home-registration-process__bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-home-registration-process__bonus-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-home-registration-process__bonus-card:hover {
  transform: translateY(-5px);
}

.page-home-registration-process__bonus-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-home-registration-process__bonus-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-home-registration-process__bonus-description {
  color: #cccccc;
  line-height: 1.5;
}

.page-home-registration-process__conclusion-section {
  padding: 60px 0;
  text-align: center;
  background-color: #f9f9f9;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-home-registration-process__hero-title {
    font-size: 2.8em;
  }

  .page-home-registration-process__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-home-registration-process__hero-section {
    padding: 40px 15px;
  }

  .page-home-registration-process__hero-title {
    font-size: 2.2em;
  }

  .page-home-registration-process__hero-description {
    font-size: 1em;
  }

  .page-home-registration-process__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-home-registration-process__section-title {
    font-size: 1.8em;
  }

  .page-home-registration-process__section-intro {
    font-size: 0.95em;
  }

  .page-home-registration-process__step-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }

  .page-home-registration-process__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-home-registration-process__step-title {
    font-size: 1.6em;
    text-align: center;
  }

  .page-home-registration-process__verification-content,
  .page-home-registration-process__deposit-cta,
  .page-home-registration-process__responsible-content {
    flex-direction: column;
  }

  .page-home-registration-process__verification-image,
  .page-home-registration-process__verification-text,
  .page-home-registration-process__deposit-image,
  .page-home-registration-process__responsible-image,
  .page-home-registration-process__responsible-list {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-home-registration-process__container {
    padding: 20px 15px;
  }

  /* Ensure all content images are responsive */
  .page-home-registration-process img {
    max-width: 100%;
    height: auto;
  }
  
  /* Override any potentially smaller image sizes in content area */
  .page-home-registration-process__features-grid img,
  .page-home-registration-process__step-card img,
  .page-home-registration-process__verification-content img,
  .page-home-registration-process__deposit-cta img,
  .page-home-registration-process__game-categories img,
  .page-home-registration-process__responsible-content img,
  .page-home-registration-process__bonus-cards img {
    min-width: 200px; /* Enforce minimum size on mobile if parent allows */
  }

  .page-home-registration-process__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-home-registration-process__hero-title {
    font-size: 1.8em;
  }

  .page-home-registration-process__section-title {
    font-size: 1.5em;
  }

  .page-home-registration-process__step-title {
    font-size: 1.4em;
  }

  .page-home-registration-process__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
}