/* style/index-new-user-registration.css */
.page-index-new-user-registration {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-index-new-user-registration__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3E8A 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-new-user-registration__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(227, 181, 5, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.page-index-new-user-registration__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #E3B505; /* Golden yellow for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-new-user-registration__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-new-user-registration__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-index-new-user-registration__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.page-index-new-user-registration__btn--primary {
  background-color: #E3B505; /* Golden yellow */
  color: #0A2463; /* Dark blue */
  border: 2px solid #E3B505;
}

.page-index-new-user-registration__btn--primary:hover {
  background-color: #f0c20f;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-index-new-user-registration__btn--secondary {
  background-color: transparent;
  color: #E3B505; /* Golden yellow */
  border: 2px solid #E3B505;
}

.page-index-new-user-registration__btn--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-index-new-user-registration__btn--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-index-new-user-registration__hero-image {
  max-width: 600px;
  height: auto;
  margin-top: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-index-new-user-registration__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Dark blue */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-new-user-registration__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-index-new-user-registration__why-choose-us,
.page-index-new-user-registration__registration-steps,
.page-index-new-user-registration__promotions,
.page-index-new-user-registration__download-app,
.page-index-new-user-registration__game-categories,
.page-index-new-user-registration__faq,
.page-index-new-user-registration__call-to-action {
  padding: 80px 0;
}

.page-index-new-user-registration__why-choose-us {
  background-color: #f0f2f5;
}

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

.page-index-new-user-registration__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-index-new-user-registration__feature-item:hover {
  transform: translateY(-10px);
}

.page-index-new-user-registration__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.page-index-new-user-registration__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-index-new-user-registration__feature-text {
  color: #666;
  font-size: 1em;
}

.page-index-new-user-registration__registration-steps {
  background-color: #fff;
}

.page-index-new-user-registration__steps-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 50px;
}

.page-index-new-user-registration__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 30px;
  border-radius: 10px;
  background-color: #fcfcfc;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-index-new-user-registration__step-number {
  width: 60px;
  height: 60px;
  background-color: #0A2463; /* Dark blue */
  color: #E3B505; /* Golden yellow */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-new-user-registration__step-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-index-new-user-registration__step-text {
  color: #555;
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 600px;
}

.page-index-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.1);
}

.page-index-new-user-registration__promotions {
  background-color: #e6eaf0;
}

.page-index-new-user-registration__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-new-user-registration__promo-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-index-new-user-registration__promo-card:hover {
  transform: translateY(-10px);
}

.page-index-new-user-registration__promo-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-new-user-registration__promo-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-index-new-user-registration__promo-text {
  color: #666;
  font-size: 1em;
  margin-bottom: 25px;
}

.page-index-new-user-registration__disclaimer {
  font-size: 0.9em;
  color: #777;
  text-align: center;
  margin-top: 40px;
}

.page-index-new-user-registration__download-app {
  background: linear-gradient(90deg, #0A2463 0%, #1A3E8A 100%);
  color: #fff;
}

.page-index-new-user-registration__download-app .page-index-new-user-registration__section-title,
.page-index-new-user-registration__download-app .page-index-new-user-registration__section-description {
  color: #fff;
}

.page-index-new-user-registration__download-app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.page-index-new-user-registration__download-text-content {
  flex: 1;
  min-width: 300px;
}

.page-index-new-user-registration__app-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-index-new-user-registration__app-benefits li {
  font-size: 1.1em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #e0e0e0;
}

.page-index-new-user-registration__app-benefits li img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: invert(80%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Golden tint */
}

.page-index-new-user-registration__download-app-image {
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-new-user-registration__game-categories {
  background-color: #f8f9fa;
}

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

.page-index-new-user-registration__category-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-index-new-user-registration__category-card:hover {
  transform: translateY(-10px);
}

.page-index-new-user-registration__category-image {
  max-width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-index-new-user-registration__category-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-index-new-user-registration__category-text {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-index-new-user-registration__faq {
  background-color: #fff;
}

.page-index-new-user-registration__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-new-user-registration__faq-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-new-user-registration__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-new-user-registration__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #E3B505;
  transition: transform 0.3s ease;
}

.page-index-new-user-registration__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-new-user-registration__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-index-new-user-registration__faq-answer.active {
  display: block;
}

.page-index-new-user-registration__call-to-action {
  background: linear-gradient(135deg, #E3B505 0%, #f0c20f 100%); /* Golden gradient */
  color: #0A2463;
  text-align: center;
  padding: 60px 0;
  border-top: 5px solid #0A2463;
}

.page-index-new-user-registration__call-to-action .page-index-new-user-registration__section-title {
  color: #0A2463;
  font-size: 3em;
  margin-bottom: 20px;
}

.page-index-new-user-registration__call-to-action .page-index-new-user-registration__section-description {
  color: #333;
  font-size: 1.2em;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .page-index-new-user-registration__hero-title {
    font-size: 2.8em;
  }
  .page-index-new-user-registration__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-new-user-registration__section-title {
    font-size: 2em;
  }
  .page-index-new-user-registration__download-app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-new-user-registration__download-app-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-index-new-user-registration__hero-title {
    font-size: 2.2em;
  }
  .page-index-new-user-registration__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-new-user-registration__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-new-user-registration__hero-image {
    max-width: 90%;
  }
  .page-index-new-user-registration__section-title {
    font-size: 1.8em;
  }
  .page-index-new-user-registration__section-description {
    font-size: 1em;
  }
  .page-index-new-user-registration__why-choose-us,
  .page-index-new-user-registration__registration-steps,
  .page-index-new-user-registration__promotions,
  .page-index-new-user-registration__download-app,
  .page-index-new-user-registration__game-categories,
  .page-index-new-user-registration__faq,
  .page-index-new-user-registration__call-to-action {
    padding: 60px 0;
  }
  .page-index-new-user-registration__features-grid,
  .page-index-new-user-registration__promo-grid,
  .page-index-new-user-registration__category-grid {
    grid-template-columns: 1fr;
  }
  .page-index-new-user-registration__call-to-action .page-index-new-user-registration__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-index-new-user-registration__hero-title {
    font-size: 1.8em;
  }
  .page-index-new-user-registration__hero-subtitle {
    font-size: 0.95em;
  }
  .page-index-new-user-registration__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-new-user-registration__section-title {
    font-size: 1.5em;
  }
  .page-index-new-user-registration__call-to-action .page-index-new-user-registration__section-title {
    font-size: 1.8em;
  }
  .page-index-new-user-registration__faq-question {
    font-size: 1.1em;
  }
  .page-index-new-user-registration__faq-answer {
    font-size: 0.95em;
  }
}