.page-register {
  color: #ffffff; /* Body background is dark (var(--black-color)), so text should be light */
  background-color: transparent; /* Assuming shared.css sets body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-register__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px; /* Base padding, header offset handled by padding-top */
  text-align: center;
  overflow: hidden;
}

.page-register__hero-content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
}

.page-register__hero-text-container {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-register__hero-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-register__hero-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 400px;
}

.page-register__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-register__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.page-register__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-register__dark-bg {
  background-color: #0d0d0d; /* Darker background for contrast with light text */
  color: #ffffff;
}

.page-register__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-register__light-bg .page-register__section-title {
  color: #26A9E0;
}

.page-register__light-bg .page-register__section-description {
  color: #555555;
}

.page-register__btn-primary,
.page-register__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
  margin-right: 20px;
}

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

.page-register__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

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

.page-register__hero-cta,
.page-register__hero-login-cta {
  margin-top: 20px;
}

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

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

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

.page-register__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-register__benefit-icon,
.page-register__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-register__steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  text-align: left;
}

.page-register__step-number {
  min-width: 50px;
  height: 50px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  flex-shrink: 0;
}

.page-register__step-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-register__step-text {
  font-size: 1.1em;
  color: #f0f0f0;
  line-height: 1.7;
}

.page-register__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__bottom-cta {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.page-register__feature-item .page-register__card-title {
  color: #26A9E0;
}

.page-register__promotions-cta {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.page-register__faq-item {
  background-color: #f9f9f9;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  color: #333333;
}

.page-register__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  background-color: #eaf6fd; /* Light background for summary */
  color: #26A9E0;
}

.page-register__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-register__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

.page-register__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  background-color: #ffffff;
  color: #555555;
  border-top: 1px solid #e0e0e0;
}

.page-register__cta-container {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-register__final-cta {
  margin-top: 30px;
}

.page-register__contact-text {
  margin-top: 40px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-register__contact-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-register__contact-link:hover {
  color: #1f8ec4;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 2.8em;
  }
  .page-register__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-register__hero-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-register__hero-text-container,
  .page-register__hero-image-container {
    min-width: unset;
    width: 100%;
  }

  .page-register__hero-title {
    font-size: 2.2em;
    text-align: center;
  }

  .page-register__hero-description {
    font-size: 1em;
    text-align: center;
  }

  .page-register__btn-primary,
  .page-register__btn-secondary {
    width: 100% !important;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-register__hero-cta,
  .page-register__hero-login-cta {
    margin-top: 15px;
  }

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

  .page-register__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-register__steps-wrapper {
    gap: 30px;
  }

  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-register__step-number {
    margin-bottom: 15px;
  }

  .page-register__step-title {
    font-size: 1.5em;
  }

  .page-register__content-area,
  .page-register__hero-section,
  .page-register__benefits-section,
  .page-register__steps-section,
  .page-register__verification-security-section,
  .page-register__games-promotions-section,
  .page-register__faq-section,
  .page-register__cta-section {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-register__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  /* Image responsiveness */
  .page-register img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Card image responsiveness */
  .page-register__card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Video responsiveness (if any, though not explicitly in HTML for this page) */
  .page-register video,
  .page-register__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-register__video-section,
  .page-register__video-container,
  .page-register__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Button group responsiveness */
  .page-register__hero-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-register__btn-primary,
  .page-register__btn-secondary {
    width: calc(100% - 30px) !important; /* Account for padding */
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-register__btn-primary {
    margin-right: 15px;
  }
}