/* style/register-login.css */

.page-register-login {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  line-height: 1.6;
}

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

.page-register-login__section {
  padding: 60px 0;
  background-color: #0A1931;
}

.page-register-login__section--dark-bg {
  background-color: #0d1e3d;
}

.page-register-login__section-title {
  font-size: 2.5em;
  color: #E6B325;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-register-login__section-title--light {
  color: #ffffff;
}

.page-register-login__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #d0d0d0;
}

.page-register-login__text-content--light {
  color: #ffffff;
}

.page-register-login__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  cursor: pointer;
}

.page-register-login__btn--primary {
  background-color: #E6B325;
  color: #0A1931;
  border: 2px solid #E6B325;
}

.page-register-login__btn--primary:hover {
  background-color: #d4a31a;
  transform: translateY(-2px);
}

.page-register-login__btn--secondary {
  background-color: transparent;
  color: #E6B325;
  border: 2px solid #E6B325;
}

.page-register-login__btn--secondary:hover {
  background-color: #E6B325;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-register-login__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

/* Hero Section */
.page-register-login__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1e3a6a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-register-login__hero-title {
  font-size: 3.5em;
  color: #E6B325;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-register-login__hero-subtitle {
  font-size: 1.3em;
  color: #d0d0d0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

/* Why FB88 Section */
.page-register-login__why-fb88 {
  background-color: #0A1931;
}

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

.page-register-login__feature-card {
  background-color: #1e3a6a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-register-login__feature-card:hover {
  transform: translateY(-5px);
}

.page-register-login__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E6B325);
}

.page-register-login__card-title {
  font-size: 1.5em;
  color: #E6B325;
  margin-bottom: 15px;
}

.page-register-login__feature-card p {
  color: #d0d0d0;
  font-size: 1em;
}

/* Guide Sections */
.page-register-login__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register-login__step {
  background-color: #1e3a6a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-register-login__step-number {
  background-color: #E6B325;
  color: #0A1931;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(230, 179, 37, 0.5);
}

.page-register-login__step-title {
  font-size: 1.4em;
  color: #E6B325;
  margin-bottom: 15px;
}

.page-register-login__step p {
  color: #d0d0d0;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-register-login__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-register-login__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* App Download Section */
.page-register-login__app-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-register-login__app-qr {
  text-align: center;
  color: #d0d0d0;
}

.page-register-login__qr-image {
  width: 180px;
  height: 180px;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

.page-register-login__app-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-register-login__btn--app {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
}

.page-register-login__app-icon {
  width: 24px;
  height: 24px;
}

/* Security Tips Section */
.page-register-login__security-tips .page-register-login__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-register-login__security-tips .page-register-login__list li {
  background-color: #1e3a6a;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  color: #d0d0d0;
  font-size: 1.1em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 50px;
}

.page-register-login__security-tips .page-register-login__list li::before {
  content: '✓';
  color: #E6B325;
  font-size: 1.5em;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-register-login__list-highlight {
  color: #E6B325;
}

/* FAQ Section */
.page-register-login__faq {
  background-color: #0A1931;
}

.page-register-login__faq-item {
  background-color: #1e3a6a;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login__faq-question {
  font-size: 1.3em;
  color: #E6B325;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

.page-register-login__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-register-login__faq-answer {
  color: #d0d0d0;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-register-login__faq-answer.show {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

/* Call to Action Section */
.page-register-login__cta {
  background: linear-gradient(135deg, #0A1931 0%, #E6B325 100%);
  text-align: center;
  padding: 80px 0;
}

.page-register-login__cta-content {
  max-width: 900px;
}

.page-register-login__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-register-login__hero-title {
    font-size: 2.5em;
  }

  .page-register-login__hero-subtitle {
    font-size: 1.1em;
  }

  .page-register-login__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-register-login__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-register-login__section-title {
    font-size: 2em;
  }

  .page-register-login__grid, .page-register-login__steps-container {
    grid-template-columns: 1fr;
  }

  .page-register-login__app-info {
    flex-direction: column;
  }

  .page-register-login__app-buttons {
    width: 100%;
    align-items: center;
  }

  .page-register-login__btn--app {
    width: 80%;
  }

  .page-register-login__faq-question {
    font-size: 1.1em;
  }
}

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

  .page-register-login__hero-subtitle {
    font-size: 1em;
  }

  .page-register-login__section-title {
    font-size: 1.8em;
  }

  .page-register-login__btn {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-register-login__hero-actions {
    gap: 10px;
  }

  .page-register-login__feature-card, .page-register-login__step, .page-register-login__faq-item {
    padding: 20px;
  }

  .page-register-login__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

  .page-register-login__card-title, .page-register-login__step-title {
    font-size: 1.3em;
  }

  .page-register-login__security-tips .page-register-login__list li {
    font-size: 0.95em;
    padding-left: 40px;
  }

  .page-register-login__security-tips .page-register-login__list li::before {
    font-size: 1.2em;
    left: 10px;
  }
}