/* style/index-new-user-registration.css */
.page-index-new-user-registration {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f7fafc; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
}

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

.page-index-new-user-registration__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-new-user-registration__section:nth-child(even) {
  background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-index-new-user-registration__section-title {
  font-size: 2.8em;
  color: #E53E3E; /* Accent color for titles */
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-new-user-registration__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e2e8f0; /* Slightly off-white for readability */
}

.page-index-new-user-registration__text strong {
    color: #E53E3E;
}

.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;
  cursor: pointer;
  border: none;
}

.page-index-new-user-registration__btn--primary {
  background-color: #E53E3E; /* Accent color */
  color: #fff;
  margin-right: 20px;
}

.page-index-new-user-registration__btn--primary:hover {
  background-color: #c53030; /* Darker accent on hover */
  transform: translateY(-3px);
}

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

.page-index-new-user-registration__btn--secondary:hover {
  background-color: rgba(229, 62, 62, 0.1);
  color: #c53030;
  border-color: #c53030;
  transform: translateY(-3px);
}

.page-index-new-user-registration__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    margin-top: 10px;
    margin-right: 0;
}

.page-index-new-user-registration__btn--huge {
    padding: 20px 40px;
    font-size: 1.5em;
    margin-top: 30px;
    background-color: #E53E3E;
    color: #fff;
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
}

.page-index-new-user-registration__btn--huge:hover {
    background-color: #c53030;
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.6);
}

.page-index-new-user-registration__img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-new-user-registration__center-btn {
  margin-top: 40px;
}

/* Hero Section */
.page-index-new-user-registration__hero {
  background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.page-index-new-user-registration__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark,subtle_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-new-user-registration__hero-content {
  max-width: 800px;
  text-align: center;
  z-index: 1;
}

.page-index-new-user-registration__hero-title {
  font-size: 3.8em;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-index-new-user-registration__hero-subtitle {
  font-size: 1.5em;
  color: #e2e8f0;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-index-new-user-registration__hero-subtitle strong {
    color: #E53E3E;
}

.page-index-new-user-registration__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-index-new-user-registration__hero-image {
    flex-shrink: 0;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    margin-top: 40px;
}

/* About Section */
.page-index-new-user-registration__section--about {
    background-color: #1A202C;
}

/* Benefits Section */
.page-index-new-user-registration__section--benefits {
  background-color: #2D3748;
}

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

.page-index-new-user-registration__benefit-card {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-new-user-registration__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-index-new-user-registration__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(229, 62, 62, 0.6));
}

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

/* Guide Section */
.page-index-new-user-registration__section--guide {
    background-color: #1A202C;
}

.page-index-new-user-registration__steps {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
}

.page-index-new-user-registration__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
  background-color: #2D3748;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-new-user-registration__step-item:last-child {
  margin-bottom: 0;
}

.page-index-new-user-registration__step-number {
  background-color: #E53E3E;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 30px;
  box-shadow: 0 4px 10px rgba(229, 62, 62, 0.5);
}

.page-index-new-user-registration__step-content {
  flex-grow: 1;
}

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

.page-index-new-user-registration__img-guide {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(229, 62, 62, 0.3);
}

.page-index-new-user-registration__list {
  list-style: disc;
  margin-left: 25px;
  color: #e2e8f0;
  margin-bottom: 20px;
}

.page-index-new-user-registration__list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-index-new-user-registration__list li strong {
    color: #E53E3E;
}

/* Games Section */
.page-index-new-user-registration__section--games {
    background-color: #2D3748;
}

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

.page-index-new-user-registration__game-card {
  background-color: #1A202C;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-new-user-registration__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-index-new-user-registration__game-card img {
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

/* App Section */
.page-index-new-user-registration__section--app {
    background-color: #1A202C;
}

.page-index-new-user-registration__section--app .page-index-new-user-registration__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  text-align: left;
}

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

.page-index-new-user-registration__app-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-new-user-registration__app-image img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Transaction Section */
.page-index-new-user-registration__section--transaction {
    background-color: #2D3748;
}

.page-index-new-user-registration__grid--2-col {
    grid-template-columns: 1fr 1fr;
}

.page-index-new-user-registration__transaction-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-index-new-user-registration__transaction-item img {
    margin-top: 20px;
    height: 150px;
    object-fit: contain;
}

/* FAQ Section */
.page-index-new-user-registration__section--faq {
    background-color: #1A202C;
}

.page-index-new-user-registration__faq-item {
  background-color: #2D3748;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-new-user-registration__faq-question {
  font-size: 1.4em;
  color: #E53E3E;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-index-new-user-registration__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-index-new-user-registration__faq-answer {
  font-size: 1.05em;
  color: #e2e8f0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-index-new-user-registration__faq-answer.active {
  max-height: 200px; /* Adjust based on max expected content */
  padding-top: 15px;
}

/* CTA Section */
.page-index-new-user-registration__section--cta {
  background: linear-gradient(135deg, #E53E3E 0%, #c53030 100%);
  padding: 80px 20px;
  color: #fff;
}

.page-index-new-user-registration__container--cta .page-index-new-user-registration__section-title,
.page-index-new-user-registration__container--cta .page-index-new-user-registration__text {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-new-user-registration__container--cta .page-index-new-user-registration__section-title {
    font-size: 3.2em;
}

.page-index-new-user-registration__container--cta .page-index-new-user-registration__text {
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-new-user-registration__hero {
    flex-direction: column;
    padding: 80px 20px;
  }
  .page-index-new-user-registration__hero-image {
      margin-top: 30px;
  }
  .page-index-new-user-registration__hero-title {
    font-size: 3em;
  }
  .page-index-new-user-registration__hero-subtitle {
    font-size: 1.3em;
  }
  .page-index-new-user-registration__section-title {
    font-size: 2.2em;
  }
  .page-index-new-user-registration__section--app .page-index-new-user-registration__container {
    flex-direction: column;
    text-align: center;
  }
  .page-index-new-user-registration__app-image {
      margin-top: 40px;
  }
  .page-index-new-user-registration__grid--2-col {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-index-new-user-registration__section {
    padding: 60px 0;
  }
  .page-index-new-user-registration__hero-title {
    font-size: 2.5em;
  }
  .page-index-new-user-registration__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-new-user-registration__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-new-user-registration__btn--primary, .page-index-new-user-registration__btn--secondary {
    margin-right: 0;
  }
  .page-index-new-user-registration__section-title {
    font-size: 1.8em;
  }
  .page-index-new-user-registration__text {
    font-size: 1em;
  }
  .page-index-new-user-registration__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-index-new-user-registration__step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-index-new-user-registration__card-title {
    font-size: 1.5em;
  }
  .page-index-new-user-registration__faq-question {
    font-size: 1.2em;
  }
  .page-index-new-user-registration__btn--huge {
      font-size: 1.2em;
      padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-index-new-user-registration__hero-title {
    font-size: 2em;
  }
  .page-index-new-user-registration__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-new-user-registration__section-title {
    font-size: 1.5em;
  }
  .page-index-new-user-registration__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-index-new-user-registration__game-card img {
      height: 150px;
  }
  .page-index-new-user-registration__app-image img {
      max-height: 400px;
  }
}