:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0a0a0a;
  --bg-light: #f8f9fa;
  --card-bg-dark-mode: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark bg */
  --card-bg-light-mode: #ffffff;
  --border-color-dark-mode: rgba(255, 255, 255, 0.15);
  --border-color-light-mode: #e0e0e0;
}

/* Base styles for the page content, ensuring contrast with body background */
.page-register {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Ensure consistency if section background is not set */
  padding-top: 100px; /* Default padding-top for desktop to clear fixed header */
}

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

/* Sections */
.page-register__hero-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-color), #000050); /* Dark blue gradient */
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-register__form-section {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 60px 20px;
}

.page-register__benefits-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 20px;
}

.page-register__responsible-gaming-section {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 60px 20px;
}

.page-register__faq-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 20px;
}

.page-register__cta-bottom {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--secondary-color); /* Dark blue for strong CTA */
  color: var(--text-light);
}

/* Titles */
.page-register__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color); /* Gold for emphasis */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  font-weight: bold;
}

.page-register__hero-subtitle,
.page-register__hero-text {
  font-size: 1.2em;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

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

.page-register__form-section .page-register__section-title,
.page-register__responsible-gaming-section .page-register__section-title {
  color: var(--secondary-color); /* Dark blue for titles on light background */
}

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

.page-register__form-section .page-register__section-description,
.page-register__responsible-gaming-section .page-register__section-description {
  color: var(--text-dark);
}

.page-register__form-subtitle {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: center;
  color: var(--secondary-color);
}

/* CTA Buttons */
.page-register__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color); /* Dark blue text on gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsive */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__cta-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
  color: var(--secondary-color);
}

.page-register__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Images */
.page-register img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-register__hero-image {
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}