.page-register {
  color: #ffffff; /* Body background is dark (#121212), so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 600px;
  background-color: #121212; /* Dark background as per body */
  overflow: hidden;
}

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

.page-register__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-register__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-register__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-register__section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for sections */
  color: #ffffff;
}

.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-register__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-register__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-register__benefits-grid,
.page-register__registration-steps,
.page-register__vip-benefits-grid,
.page-register__game-categories,
.page-register__security-features,
.page-register__promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-register__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-register__light-bg {
  background: #ffffff; /* White background for elements on dark sections */
  color: #333333; /* Dark text for light background */
}

.page-register__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-register__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-register__card-title a:hover {
  text-decoration: underline;
}

.page-register__card-text {
  font-size: 1em;
  color: #f0f0f0; 
}

.page-register__light-bg .page-register__card-text {
  color: #555555;
}

.page-register__step-item {
  background: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #e0e0e0;
}

.page-register__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
  display: block;
}

.page-register__step-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #333333;
}

.page-register__step-text {
  color: #555555;
}

.page-register__form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 40px auto;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-register__registration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-register__form-group {
  display: flex;
  flex-direction: column;
}

.page-register__form-label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333333;
}

.page-register__form-input,
.page-register__form-select {
  padding: 12px 15px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1em;
  color: #333333;
  background-color: #f9f9f9;
}

.page-register__form-input::placeholder {
  color: #aaaaaa;
}

.page-register__checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.page-register__form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #26A9E0;
}

.page-register__form-link {
  color: #26A9E0;
  text-decoration: none;
}

.page-register__form-link:hover {
  text-decoration: underline;
}

.page-register__form-submit-btn {
  padding: 15px 25px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-register__form-submit-btn:hover {
  background-color: #1e87b8;
  transform: translateY(-2px);
}

.page-register__form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.95em;
  color: #555555;
}

.page-register__form-image {
  display: block;
  margin: 40px auto 0;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-register__vip-image,
.page-register__game-image,
.page-register__security-image {
  display: block;
  margin: 40px auto 0;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-register__feature-item {
  background: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #e0e0e0;
}

.page-register__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-register__feature-text {
  color: #555555;
}

.page-register__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff;
}

.page-register__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-register__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-register__cta-btn {
  background-color: #EA7C07; /* Login color for prominent CTA */
  color: #ffffff;
  padding: 18px 35px;
  font-size: 1.3em;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-register__cta-btn:hover {
  background-color: #c46406;
  transform: translateY(-3px);
}

.page-register__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.page-register__btn-primary:hover {
  background-color: #1e87b8;
}

.page-register__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  border: 2px solid #26A9E0;
}

.page-register__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-register__cta-buttons--center {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* FAQ Section */
.page-register__faq-section {
  padding: 60px 20px;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-register__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-register__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(38, 169, 224, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.page-register__faq-item.page-register__light-bg {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(38, 169, 224, 0.1);
  transition: background-color 0.3s ease;
}

.page-register__faq-item.page-register__light-bg .page-register__faq-question {
  background-color: #f5f5f5;
}

.page-register__faq-question:hover {
  background-color: rgba(38, 169, 224, 0.2);
}

.page-register__faq-item.page-register__light-bg .page-register__faq-question:hover {
  background-color: #eeeeee;
}