.page-register {
  color: #ffffff; /* Light text on dark body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

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

.page-register__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content clears fixed header */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px; /* Minimum height for hero section */
  overflow: hidden;
}

.page-register__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.page-register__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-register__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-register__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-register__cta-button:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-register__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.page-register__value-section,
.page-register__steps-section,
.page-register__requirements-section,
.page-register__benefits-section,
.page-register__faq-section,
.page-register__final-cta-section {
  padding: 60px 0;
  background-color: #1A202C;
}

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

.page-register__value-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-register__value-item:hover {
  transform: translateY(-5px);
}

.page-register__value-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-register__value-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-register__value-text {
  font-size: 1em;
  color: #cccccc;
}

.page-register__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-register__step-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-register__step-item::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-right: 25px;
  flex-shrink: 0;
  min-width: 60px; /* Ensure number doesn't wrap */
  text-align: center;
}

.page-register__step-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-register__step-text {
  font-size: 1em;
  color: #cccccc;
}

.page-register__cta-button--bottom {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-register__requirements-list {
  list-style: disc inside;
  color: #cccccc;
  font-size: 1.1em;
  max-width: 800px;
  margin: 40px auto;
  padding-left: 20px;
}

.page-register__requirement-item {
  margin-bottom: 15px;
}

.page-register__requirement-item strong {
  color: #FFD700;
}

.page-register__responsible-gaming-text {
  font-size: 1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 30px auto 20px auto;
}

.page-register__link {
  color: #FFD700;
  text-decoration: underline;
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-register__link:hover {
  color: #e5c100;
}

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

.page-register__benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-register__benefit-card:hover {
  transform: translateY(-5px);
}

.page-register__benefit-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-register__benefit-card-content {
  padding: 25px;
}

.page-register__benefit-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 25px 10px 25px;
}

.page-register__benefit-text {
  font-size: 1em;
  color: #cccccc;
  margin: 0 25px 20px 25px;
}

.page-register__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 25px 25px 25px;
}

.page-register__card-button:hover {
  background-color: #e5c100;
  transform: translateY(-1px);
}

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

.page-register__faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-register__faq-question:hover {
  background-color: rgba(255, 215, 0, 0.1);
}

.page-register__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-register__faq-item[open] .page-register__faq-toggle {
  transform: rotate(45deg);
}

.page-register__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #cccccc;
}

.page-register__faq-answer p {
  margin: 0;
}

.page-register__final-cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #0d121c; /* Slightly darker background for emphasis */
}

.page-register__cta-button--large {
  padding: 20px 40px;
  font-size: 1.4em;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 3em;
  }
  .page-register__hero-description {
    font-size: 1.1em;
  }
  .page-register__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-register {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-register__hero-section {
    min-height: 450px;
    padding-top: var(--header-offset, 80px);
  }
  .page-register__hero-content {
    padding: 20px;
  }
  .page-register__hero-title {
    font-size: 2.2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__section-description {
    font-size: 0.95em;
  }
  .page-register__value-grid, .page-register__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-register__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register__step-item::before {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-register__requirement-item, .page-register__faq-question, .page-register__faq-answer {
    font-size: 0.95em;
  }
  .page-register__card-button {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
  }
  /* Ensure images in content area are responsive and don't overflow */
  .page-register__value-item img,
  .page-register__benefit-card img,
  .page-register__container img {
    max-width: 100%;
    height: auto;
  }
  .page-register__value-item img,
  .page-register__benefit-card img {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }
  .page-register__section-title {
    font-size: 1.5em;
  }
  .page-register__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-register__value-item img,
  .page-register__benefit-card img {
    min-width: 200px;
    min-height: 200px;
  }
}