:root {
  --primary-color: #FFD700;
  --secondary-color: #1A1A1A;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000;
  --background-light: #f8f9fa;
  --background-card: rgba(255, 255, 255, 0.08); /* Slightly less opaque for better visibility on dark */
  --border-color: rgba(255, 255, 255, 0.2);
}

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

/* Fixed header padding */
.page-register__hero-section,
.page-register__why-join-section,
.page-register__form-section,
.page-register__guide-section,
.page-register__security-section,
.page-register__faq-section,
.page-register__cta-bottom-section {
  padding-top: 120px; /* Desktop: Adjust based on shared header height */
}

/* Adjust padding for the very first section to avoid double padding if hero also has padding-top */
.page-register__hero-section {
  padding-top: 120px;
}

/* Container for content centering and max-width */
.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-register__hero-section {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-color), var(--background-dark)); /* Gradient for depth */
}

.page-register__hero-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.page-register__hero-subtitle,
.page-register__hero-description {
  font-size: 1.1em;
  color: var(--text-light);
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-register__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}