.page-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on light body background */
  background-color: #ffffff; /* Explicitly set for clarity, though shared.css might define body bg */
}

/* Fixed header offset */
.page-register__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

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

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

.page-register__highlight {
  color: #017439;
  font-weight: bold;
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
  background-color: #f5f5f5; /* Light background for hero */
}

.page-register__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-top: 30px;
}

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__hero-content {
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

.page-register__hero-title {
  font-size: 3.5em;
  color: #017439;
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.page-register__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-register__btn-primary,
.page-register__btn-secondary,
.page-register__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Ensure padding doesn't push width */
}

.page-register__btn-primary {
  background-color: #C30808; /* Register button color */
  color: #FFFF00; /* Register button text color */
  border: 2px solid #C30808;
}

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

.page-register__btn-secondary {
  background-color: #C30808; /* Login button color */
  color: #FFFF00; /* Login button text color */
  border: 2px solid #C30808;
}

.page-register__btn-secondary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-register__btn-tertiary {
  background-color: transparent;
  color: #017439;
  border: 2px solid #017439;
  padding: 10px 20px;
  font-size: 1em;
}

.page-register__btn-tertiary:hover {
  background-color: #017439;
  color: #ffffff;
}

/* Dark Section */
.page-register__dark-section {
  background-color: #017439;
  color: #ffffff;
  padding: 60px 0;
}

.page-register__dark-section .page-register__section-title {
  color: #ffffff;
}

.page-register__dark-section .page-register__section-intro {
  color: #f0f0f0;
}

.page-register__dark-section .page-register__highlight {
  color: #FFFF00; /* Yellow highlight on dark green */
}

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

.page-register__benefit-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register__benefit-icon {
  width: 100%; /* Ensure image is large */
  height: auto;
  max-width: 250px; /* Limit max size for icon-like images */
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
}

.page-register__benefit-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-register__benefit-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Steps Section */
.page-register__steps-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-register__step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.page-register__step-number {
  width: 60px;
  height: 60px;
  background-color: #017439;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-register__step-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 10px;
}

.page-register__step-description {
  color: #555555;
}

.page-register__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* Video Section */
.page-register__video-section {
  position: relative;
  padding: 60px 0;
  background-color: #017439;
  color: #ffffff;
}

.page-register__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px; /* Max width for video */
  margin: 40px auto;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  box-sizing: border-box; /* Ensure padding doesn't push width */
}

.page-register__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer; /* Indicate clickable */
}

.page-register__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0,0,0,0); /* Transparent overlay */
  cursor: pointer;
}

.page-register__video-caption {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  color: #f0f0f0;
}

/* Verification Section */
.page-register__verification-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-register__verification-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-register__verification-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px; /* Limit max size */
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__verification-text {
  flex: 2;
  min-width: 300px;
}

.page-register__verification-text h3 {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 15px;
}

.page-register__verification-text ul,
.page-register__verification-text ol {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-register__verification-text li {
  margin-bottom: 10px;
  color: #555555;
}

.page-register__verification-text strong {
  color: #017439;
}

/* Games Section */
.page-register__games-section {
  padding: 60px 0;
}

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

.page-register__game-card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-register__game-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-register__game-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-register__game-description {
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1; /* Push button to bottom */
}

/* Promotions Section */
.page-register__promotions-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

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

.page-register__card-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-register__card-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 10px;
}

.page-register__card-description {
  color: #555555;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-register__faq-section {
  padding: 60px 0;
}

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