:root {
  --primary-color: #F2C14E;
  --secondary-color: #FFD36B;
  --bg-dark: #0A0A0A;
  --card-bg-dark: #111111;
  --text-light: #FFF6D6;
  --text-dark: #333333; /* For light backgrounds, if any */
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --white: #ffffff;
  --light-grey: #e0e0e0;
  --medium-grey: #666;
}

.page-register {
  background-color: var(--bg-dark); /* Body background is dark */
  color: var(--text-light); /* Default text color for dark body */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-register__container--center {
  text-align: center;
}

.page-register__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 50px;
}

.page-register__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-register__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover; /* Default for desktop */
}

.page-register__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-register__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-register__description {
  font-size: 1.1em;
  color: var(--text-light);
  margin-bottom: 30px;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__btn-primary {
  background: var(--button-gradient);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.3);
}

.page-register__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.5);
}

.page-register__btn-primary--large {
    padding: 18px 40px;
    font-size: 1.1em;
}

.page-register__btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 20px;
}

.page-register__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--bg-dark);
}

/* General Section Styles */
.page-register__benefits-section,
.page-register__guide-section,
.page-register__security-section,
.page-register__promotions-section,
.page-register__faq-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-register__dark-section {
  background-color: var(--card-bg-dark);
}

.page-register__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-register__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-register__section-title--light {
  color: var(--text-light);
}

.page-register__section-title--light::after {
  background: var(--text-light);
}

.page-register__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--text-light);
}