/* style/register.css */
.page-register {
  color: #FFF6D6; /* Text Main color on #0A0A0A background */
  background-color: #0A0A0A; /* Background color */
}

.page-register__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Minimal top padding, body handles --header-offset */
  background-color: #0A0A0A;
  text-align: center;
}

.page-register__hero-content-wrapper {
  max-width: 900px;
  margin-bottom: 30px;
  z-index: 1;
}

.page-register__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFF6D6;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.page-register__intro-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-register__registration-form-section,
.page-register__benefits-section,
.page-register__responsible-gaming-section,
.page-register__faq-section,
.page-register__cta-bottom-section {
  padding: 80px 20px;
  background-color: #0A0A0A;
  color: #FFF6D6;
  text-align: center;
}

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

.page-register__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #FFD36B; /* Glow color for titles */
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-register__section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #FFF6D6;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-register__form-steps,
.page-register__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-register__step-card,
.page-register__benefit-card {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #FFF6D6;
}