.page-register {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background: #0a0a0a; /* Match body background for consistency */
  color: #ffffff;
  text-align: center;
}

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

.page-register__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-register__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-register__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive H1 font size */
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-register__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-register__btn-primary {
  display: inline-block;
  background: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom font color for Register/Login */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
}

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

.page-register__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #017439; /* Brand color for secondary */
  border: 2px solid #017439;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

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

.page-register__dark-section {
  background: #0a0a0a;
  color: #ffffff;
}

.page-register__light-bg {
  background: #ffffff;
  color: #333333;
}

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

.page-register__section-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-register__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: inherit; /* Inherit from section, either white or dark */
}

.page-register__section-description {
  font-size: 1.1em;
  color: inherit;
}

.page-register__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  color: inherit;
}

.page-register__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background: #0a0a0a; /* Match body background for consistency */
}

.page-register__video-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
}

.page-register__video-link {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  position: relative;
  cursor: pointer;
}

.page-register__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

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

.page-register__feature-item, .page-register__step-item, .page-register__security-item, .page-register__promo-card, .page-register__game-card {
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-register__light-bg .page-register__feature-item, 
.page-register__light-bg .page-register__step-item, 
.page-register__light-bg .page-register__security-item, 
.page-register__light-bg .page-register__promo-card, 
.page-register__light-bg .page-register__game-card {
  background: #f8f8f8;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register__feature-item:hover, .page-register__step-item:hover, .page-register__security-item:hover, .page-register__promo-card:hover, .page-register__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-register__feature-icon, .page-register__step-image, .page-register__security-icon, .page-register__promo-image, .page-register__game-image {
  width: 100%;
  max-width: 200px; /* Smallest allowed for icons */
  height: auto;
  margin-bottom: 20px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-register__step-image, .page-register__promo-image, .page-register__game-image {
  max-width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-register__feature-title, .page-register__step-title, .page-register__security-title, .page-register__promo-title, .page-register__game-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: inherit;
}