/* style/register-login-new-user-registration.css */
.page-register-login-new-user-registration {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1a0033; /* Darker variant of main color for overall background */
  line-height: 1.6;
}

.page-register-login-new-user-registration__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register-login-new-user-registration__hero {
  background: linear-gradient(135deg, #4B0082 0%, #6a008a 100%); /* Deep purple gradient */
  color: #FFD700; /* Gold for hero text */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-register-login-new-user-registration__hero-content {
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.page-register-login-new-user-registration__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
}

.page-register-login-new-user-registration__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #F0F0F0; /* Slightly off-white for subtitle */
}

.page-register-login-new-user-registration__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

.page-register-login-new-user-registration__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-register-login-new-user-registration__btn {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-register-login-new-user-registration__btn--primary {
  background-color: #FFD700; /* Gold for primary buttons */
  color: #4B0082; /* Deep purple for text on gold */
}

.page-register-login-new-user-registration__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-register-login-new-user-registration__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold for secondary button text */
  border: 2px solid #FFD700;
}

.page-register-login-new-user-registration__btn--secondary:hover {
  background-color: #FFD700;
  color: #4B0082;
  transform: translateY(-2px);
}

.page-register-login-new-user-registration__section {
  padding: 60px 0;
  text-align: center;
}

.page-register-login-new-user-registration__section:nth-of-type(even) {
  background-color: #2c004d; /* Slightly lighter dark background for alternating sections */
}

.page-register-login-new-user-registration__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for section titles */
  font-weight: bold;
}

.page-register-login-new-user-registration__description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #D0D0D0;
}

.page-register-login-new-user-registration__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register-login-new-user-registration__benefit-item {
  background-color: #4B0082; /* Main color for benefit cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #F0F0F0;
}

.page-register-login-new-user-registration__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-register-login-new-user-registration__benefit-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for benefit titles */
}

.page-register-login-new-user-registration__steps {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-register-login-new-user-registration__steps li {
  background-color: #4B0082; /* Main color for step cards */
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 80px;
}

.page-register-login-new-user-registration__step-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.page-register-login-new-user-registration__step-number {
  background-color: #FFD700; /* Gold for step numbers */
  color: #4B0082; /* Deep purple for text on gold */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  position: absolute;
  left: 20px;
  top: 30px;
}

.page-register-login-new-user-registration__steps h3 {
  font-size: 1.6em;
  color: #FFD700; /* Gold for step titles */
  margin-left: 15px; /* Adjust margin for step title */
}

.page-register-login-new-user-registration__steps p {
  color: #D0D0D0;
  margin-bottom: 15px;
}

.page-register-login-new-user-registration__steps ul {
  list-style: disc inside;
  margin-left: 20px;
  color: #D0D0D0;
}

.page-register-login-new-user-registration__steps ul li {
  background-color: transparent;
  box-shadow: none;
  padding: 5px 0;
  margin-bottom: 5px;
  padding-left: 0;
  position: static;
}

.page-register-login-new-user-registration__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-new-user-registration__login-image {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-new-user-registration__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register-login-new-user-registration__game-category {
  background-color: #4B0082;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #F0F0F0;
  transition: transform 0.3s ease;
}

.page-register-login-new-user-registration__game-category:hover {
  transform: translateY(-5px);
}

.page-register-login-new-user-registration__game-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-register-login-new-user-registration__game-category h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-register-login-new-user-registration__app-download-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  text-align: left;
}

.page-register-login-new-user-registration__app-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.page-register-login-new-user-registration__app-info h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-register-login-new-user-registration__app-info ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #D0D0D0;
}

.page-register-login-new-user-registration__app-info ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-register-login-new-user-registration__qr-code-wrapper {
  background-color: #4B0082;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-register-login-new-user-registration__qr-code {
  width: 200px;
  height: 200px;
  margin-bottom: 15px;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.page-register-login-new-user-registration__qr-code-wrapper p {
  color: #F0F0F0;
  font-size: 1.1em;
}

.page-register-login-new-user-registration__faq-item {
  background-color: #4B0082;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-new-user-registration__faq-item h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-register-login-new-user-registration__faq-item p {
  color: #D0D0D0;
}

.page-register-login-new-user-registration__section--cta {
  background-color: #6a008a; /* A slightly lighter purple for CTA */
  color: #FFD700;
  padding: 80px 0;
}

.page-register-login-new-user-registration__section--cta .page-register-login-new-user-registration__section-title {
  color: #FFD700;
}

.page-register-login-new-user-registration .highlight {
  color: #FFD700;
}

.page-register-login-new-user-registration .keyword {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-register-login-new-user-registration__hero-title {
    font-size: 2.5em;
  }

  .page-register-login-new-user-registration__hero-subtitle {
    font-size: 1.1em;
  }

  .page-register-login-new-user-registration__section-title {
    font-size: 2em;
  }

  .page-register-login-new-user-registration__benefits-grid,
  .page-register-login-new-user-registration__games-grid {
    grid-template-columns: 1fr;
  }

  .page-register-login-new-user-registration__steps li {
    padding-left: 20px;
  }

  .page-register-login-new-user-registration__step-number {
    position: static;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .page-register-login-new-user-registration__step-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .page-register-login-new-user-registration__steps h3 {
    margin-left: 0;
  }

  .page-register-login-new-user-registration__app-download-content {
    flex-direction: column;
  }

  .page-register-login-new-user-registration__app-info,
  .page-register-login-new-user-registration__qr-code-wrapper {
    min-width: unset;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-register-login-new-user-registration__hero-title {
    font-size: 2em;
  }

  .page-register-login-new-user-registration__hero-subtitle {
    font-size: 1em;
  }

  .page-register-login-new-user-registration__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-register-login-new-user-registration__section-title {
    font-size: 1.8em;
  }
}