.page-index-user-registration-login {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-index-user-registration-login__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-user-registration-login__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-index-user-registration-login__hero-section .page-index-user-registration-login__container {
  position: relative;
  z-index: 1;
}

.page-index-user-registration-login__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-user-registration-login__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-user-registration-login__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-user-registration-login__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-index-user-registration-login__btn--primary {
  background-color: #ffc107; /* Secondary color for primary action */
  color: #333; /* Dark text for contrast */
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-index-user-registration-login__btn--primary:hover {
  background-color: #e0a800; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-index-user-registration-login__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.page-index-user-registration-login__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.page-index-user-registration-login__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-user-registration-login__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-user-registration-login__section:nth-of-type(even) {
  background-color: #fcfcfc;
}

.page-index-user-registration-login__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color for titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

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

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

.page-index-user-registration-login__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-user-registration-login__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-index-user-registration-login__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-user-registration-login__feature-item h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-user-registration-login__feature-item p {
  color: #666;
}

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

.page-index-user-registration-login__step-item {
  text-align: center;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-top: 60px;
}

.page-index-user-registration-login__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #007bff;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-index-user-registration-login__step-item h3 {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-user-registration-login__step-item p {
  color: #666;
}

.page-index-user-registration-login__process-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-index-user-registration-login__login-guide .page-index-user-registration-login__ordered-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  counter-reset: login-step;
}

.page-index-user-registration-login__login-guide .page-index-user-registration-login__ordered-list li {
  position: relative;
  padding: 15px 0 15px 40px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  font-size: 1.1em;
  color: #444;
}

.page-index-user-registration-login__login-guide .page-index-user-registration-login__ordered-list li:last-child {
  border-bottom: none;
}

.page-index-user-registration-login__login-guide .page-index-user-registration-login__ordered-list li::before {
  counter-increment: login-step;
  content: counter(login-step);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffc107;
  color: #333;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9em;
}

.page-index-user-registration-login__text-link {
  color: #007bff;
  text-decoration: underline;
}

.page-index-user-registration-login__text-link:hover {
  color: #0056b3;
}

.page-index-user-registration-login__note {
  text-align: center;
  font-style: italic;
  color: #777;
  margin-top: 30px;
}

.page-index-user-registration-login__app-download {
  text-align: center;
}

.page-index-user-registration-login__app-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.page-index-user-registration-login__app-cta p {
  font-size: 1em;
  color: #666;
}

.page-index-user-registration-login__app-image {
  max-width: 600px;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-user-registration-login__responsible-gambling {
  background-color: #e9f5ff;
  border-left: 5px solid #007bff;
}

.page-index-user-registration-login__responsible-gambling .page-index-user-registration-login__section-title {
  color: #0056b3;
}

.page-index-user-registration-login__responsible-gambling p {
  max-width: 900px;
  margin: 0 auto 15px auto;
  text-align: center;
  color: #444;
}

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

.page-index-user-registration-login__faq .page-index-user-registration-login__faq-item h3 {
  color: #007bff;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-index-user-registration-login__faq .page-index-user-registration-login__faq-item p {
  color: #555;
  font-size: 1em;
}

.page-index-user-registration-login__final-cta {
  text-align: center;
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.2);
}

.page-index-user-registration-login__final-cta .page-index-user-registration-login__section-title {
  color: #fff;
}

.page-index-user-registration-login__final-cta .page-index-user-registration-login__section-description {
  color: #e0e0e0;
}

.page-index-user-registration-login .highlight {
  color: #ffc107; /* Secondary color for highlights */
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-user-registration-login__hero-title {
    font-size: 2.5em;
  }
  .page-index-user-registration-login__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-user-registration-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-user-registration-login__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-user-registration-login__section-title {
    font-size: 2em;
  }
  .page-index-user-registration-login__features-grid,
  .page-index-user-registration-login__registration-guide .page-index-user-registration-login__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index-user-registration-login__step-item {
    padding-top: 40px;
  }
  .page-index-user-registration-login__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    top: -15px;
  }
}

@media (max-width: 480px) {
  .page-index-user-registration-login__hero-title {
    font-size: 2em;
  }
  .page-index-user-registration-login__hero-subtitle {
    font-size: 1em;
  }
  .page-index-user-registration-login__btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 90%;
  }
  .page-index-user-registration-login__section-title {
    font-size: 1.8em;
  }
  .page-index-user-registration-login__feature-item h3,
  .page-index-user-registration-login__step-item h3 {
    font-size: 1.3em;
  }
}