/* style/registration-login.css */

.page-registration-login {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text */
  background-color: #0A2463; /* Main deep blue background */
}

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

/* Hero Section */
.page-registration-login__hero {
  background: linear-gradient(135deg, #0A2463 0%, #000000 100%); /* Darker gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-registration-login__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,gaming,lights,dark]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

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

.page-registration-login__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-registration-login__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-registration-login__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.page-registration-login__button {
  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;
  text-align: center;
}

.page-registration-login__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Deep blue text on gold */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-registration-login__button--primary:hover {
  background-color: #E0B500;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-registration-login__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-registration-login__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-registration-login__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* General Section Styling */
.page-registration-login__section {
  padding: 80px 0;
  text-align: center;
}

.page-registration-login__section:nth-of-type(odd) {
  background-color: #1A3F80; /* Slightly lighter blue for alternating sections */
}

.page-registration-login__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 25px;
}

.page-registration-login__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
  color: #C0C0C0;
}

/* Step List */
.page-registration-login__step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-registration-login__step-item {
  background-color: #0A2463;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #FFD700;
}

.page-registration-login__step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-registration-login__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-registration-login__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-registration-login__step-text {
  font-size: 1em;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-registration-login__checklist {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  color: #C0C0C0;
}

.page-registration-login__checklist li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 0.95em;
}

.page-registration-login__checklist li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-registration-login__cta-block {
  background-color: #0A2463;
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-registration-login__cta-block p {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: 500;
}

/* Security Tips Grid */
.page-registration-login__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-registration-login__tip-card {
  background-color: #0A2463;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #546692; /* Lighter blue border */
}

.page-registration-login__tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-registration-login__tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px #FFD700);
}

.page-registration-login__tip-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-registration-login__tip-text {
  font-size: 0.95em;
  line-height: 1.7;
  color: #C0C0C0;
}

/* FAQ Section */
.page-registration-login__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
  text-align: left;
}

.page-registration-login__faq-item {
  background-color: #0A2463;
  border: 1px solid #546692;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-registration-login__faq-question {
  font-size: 1.25em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  background-color: #1A3F80;
  transition: background-color 0.3s ease;
}

.page-registration-login__faq-question:hover {
  background-color: #2A5BA0;
}

.page-registration-login__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-registration-login__faq-item.active .page-registration-login__faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-registration-login__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #0A2463;
}

.page-registration-login__faq-item.active .page-registration-login__faq-answer {
  max-height: 300px; /* Adjust based on expected content */
  padding: 20px 25px;
}

.page-registration-login__faq-answer p {
  font-size: 1em;
  line-height: 1.7;
  color: #E0E0E0;
}

/* Responsible Gaming */
.page-registration-login__responsible-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 50px auto 30px;
  text-align: left;
}

.page-registration-login__responsible-list li {
  background-color: #0A2463;
  border: 1px solid #546692;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
}

.page-registration-login__responsible-list li strong {
  color: #FFD700;
  font-size: 1.1em;
}

.page-registration-login__list-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 3px #FFD700);
  flex-shrink: 0;
}

/* Final CTA */
.page-registration-login__final-cta {
  background-color: #0A2463;
  padding: 100px 0;
}

.page-registration-login__final-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-registration-login__hero-title {
    font-size: 2.8em;
  }
  .page-registration-login__section-title {
    font-size: 2em;
  }
  .page-registration-login__step-list, .page-registration-login__tips-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-registration-login__hero {
    padding: 80px 0;
  }
  .page-registration-login__hero-title {
    font-size: 2.2em;
  }
  .page-registration-login__hero-subtitle {
    font-size: 1.1em;
  }
  .page-registration-login__hero-actions, .page-registration-login__final-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-registration-login__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-registration-login__section {
    padding: 60px 0;
  }
  .page-registration-login__section-title {
    font-size: 1.8em;
  }
  .page-registration-login__section-description {
    font-size: 1em;
  }
  .page-registration-login__step-item, .page-registration-login__tip-card, .page-registration-login__faq-item, .page-registration-login__responsible-list li {
    padding: 20px;
  }
  .page-registration-login__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-registration-login__faq-question::after {
    right: 20px;
  }
  .page-registration-login__faq-answer {
    padding: 15px 20px;
  }
  .page-registration-login__responsible-list li {
    flex-direction: column;
    text-align: center;
  }
  .page-registration-login__list-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .page-registration-login__hero-title {
    font-size: 1.8em;
  }
  .page-registration-login__hero-subtitle {
    font-size: 0.95em;
  }
  .page-registration-login__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-registration-login__button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
  .page-registration-login__section-title {
    font-size: 1.5em;
  }
  .page-registration-login__step-title, .page-registration-login__tip-title {
    font-size: 1.3em;
  }
  .page-registration-login__cta-block p {
    font-size: 1.1em;
  }
}