:root {
  --primary-color: #017439;
  --secondary-color: #C30808;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #ffffff;
  --background-color-dark: #017439;
  --register-button-bg: #C30808;
  --register-button-text: #FFFF00;
  --login-button-bg: #C30808;
  --login-button-text: #FFFF00;
}

.page-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color-light);
}

.page-register__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-register__section-title {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-register__section-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Color contrast classes */
.page-register__dark-bg {
  background-color: var(--background-color-dark);
  color: var(--text-color-light);
}

.page-register__dark-bg .page-register__section-title,
.page-register__dark-bg .page-register__section-description,
.page-register__dark-bg .page-register__benefit-title,
.page-register__dark-bg .page-register__benefit-text,
.page-register__dark-bg .page-register__step-title,
.page-register__dark-bg .page-register__step-text,
.page-register__dark-bg .page-register__feature-title,
.page-register__dark-bg .page-register__feature-text,
.page-register__dark-bg .page-register__bonus-title,
.page-register__dark-bg .page-register__bonus-text,
.page-register__dark-bg .page-register__game-title,
.page-register__dark-bg .page-register__game-text,
.page-register__dark-bg .page-register__channel-title,
.page-register__dark-bg .page-register__channel-text,
.page-register__dark-bg .page-register__faq-question h3,
.page-register__dark-bg .page-register__faq-toggle {
  color: var(--text-color-light);
}

.page-register__light-bg {
  background-color: var(--background-color-light);
  color: var(--text-color-dark);
}

.page-register__light-bg .page-register__section-title,
.page-register__light-bg .page-register__section-description,
.page-register__light-bg .page-register__benefit-title,
.page-register__light-bg .page-register__benefit-text,
.page-register__light-bg .page-register__step-title,
.page-register__light-bg .page-register__step-text,
.page-register__light-bg .page-register__feature-title,
.page-register__light-bg .page-register__feature-text,
.page-register__light-bg .page-register__bonus-title,
.page-register__light-bg .page-register__bonus-text,
.page-register__light-bg .page-register__game-title,
.page-register__light-bg .page-register__game-text,
.page-register__light-bg .page-register__channel-title,
.page-register__light-bg .page-register__channel-text,
.page-register__light-bg .page-register__faq-question h3,
.page-register__light-bg .page-register__faq-toggle {
  color: var(--text-color-dark);
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
}

.page-register__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-register__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

.page-register__hero-title {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-register__hero-description {
  font-size: 22px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-register__hero-image {
  width: 100%;
  max-width: 900px;
}

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

/* CTA Button Base */
.page-register__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-register__btn-primary {
  background: var(--primary-color);
  color: var(--text-color-light);
}

.page-register__btn-primary:hover {
  background: #005a2d;
}

.page-register__btn-register {
  background: var(--register-button-bg);
  color: var(--register-button-text);
}

.page-register__btn-register:hover {
  background: #9c0606;
}

.page-register__btn-login {
  background: var(--login-button-bg);
  color: var(--login-button-text);
}

.page-register__btn-login:hover {
  background: #9c0606;
}

/* Card Styles */
.page-register__card {
  background: var(--background-color-light);
  color: var(--text-color-dark);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-register__card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
  display: block;
  object-fit: cover;
}

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