.page-register {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-register__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  min-height: 500px;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  background-color: #1A202C; /* Fallback */
}

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

.page-register__hero-section .page-register__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

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

.page-register__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-register__btn-primary,
.page-register__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-register__btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-register__btn-primary:hover {
  background-color: #e6c200;
  color: #1A202C;
  border-color: #e6c200;
}

.page-register__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-register__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-register__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-register__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-register__intro-section,
.page-register__form-section,
.page-register__game-overview-section,
.page-register__promotions-section,
.page-register__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-register__dark-section {
  background-color: #1A202C;
  color: #ffffff;
  padding: 80px 0;
}

.page-register__text-light {
  color: #f0f0f0;
}

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

.page-register__dark-section .page-register__section-title,
.page-register__dark-section .page-register__sub-title {
  color: #FFD700;
}

.page-register__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.8;
}

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

.page-register__step-item {
  text-align: center;
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.page-register__step-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-register__step-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-register__step-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  text-align: left;
}

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

.page-register__benefit-card {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-register__benefit-icon {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-register__card-description {
  font-size: 0.95em;
  color: #f0f0f0;
  line-height: 1.7;
}

.page-register__game-category {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.page-register__game-category:nth-child(even) {
  flex-direction: row-reverse;
}

.page-register__game-image {
  width: 50%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.page-register__game-title {
  font-size: 2em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-register__game-description {
  font-size: 1.05em;
  color: #555555;
  line-height: 1.8;
}

.page-register__security-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-register__security-image {
  width: 50%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.page-register__security-text {
  flex-grow: 1;
}

.page-register__sub-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-register__security-text p {
  color: #f0f0f0;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.page-register__promo-card {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 30px;
  text-align: center;
}

.page-register__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.page-register__promo-card .page-register__card-title {
  color: #1A202C;
  font-size: 1.4em;
  padding: 0 20px;
}

.page-register__promo-card .page-register__card-description {
  color: #555555;
  font-size: 0.95em;
  padding: 0 20px;
}

.page-register__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-register__mobile-image {
  width: 50%;
  height: 400px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-register__mobile-text {
  flex-grow: 1;
}

.page-register__mobile-text .page-register__sub-title {
  color: #FFD700;
}

.page-register__mobile-text p {
  color: #f0f0f0;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-register__video-section {
  padding: 80px 0;
  text-align: center;
  background-color: #fdfdfd;
}

.page-register__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-register__faq-item {
  background-color: #fdfdfd;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.3s ease;
}

.page-register__faq-question:hover {
  background-color: #f5f5f5;
}

.page-register__faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #1A202C;
}

.page-register__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-register__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fdfdfd;
}

.page-register__faq-item.active .page-register__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px 25px 25px;
}

.page-register__faq-answer p {
  margin: 0;
  color: #555555;
  line-height: 1.7;
}

.page-register__cta-final-section {
  text-align: center;
  padding: 100px 0;
  background-color: #1A202C;
  color: #ffffff;
}

.page-register__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-register__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-register__hero-title {
    font-size: 3em;
  }
  .page-register__hero-description {
    font-size: 1.2em;
  }
  .page-register__game-category {
    flex-direction: column;
    text-align: center;
  }
  .page-register__game-category:nth-child(even) {
    flex-direction: column;
  }
  .page-register__game-image {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
  }
  .page-register__security-content,
  .page-register__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-register__security-image,
  .page-register__mobile-image {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
  }
  .page-register__security-text p,
  .page-register__mobile-text p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-register__hero-section {
    min-height: 400px;
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-register__hero-title {
    font-size: 2.2em;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__btn-primary,
  .page-register__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
    margin-bottom: 15px;
  }
  .page-register__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-register__intro-section,
  .page-register__form-section,
  .page-register__benefits-section,
  .page-register__game-overview-section,
  .page-register__security-section,
  .page-register__promotions-section,
  .page-register__mobile-section,
  .page-register__video-section,
  .page-register__faq-section,
  .page-register__cta-final-section {
    padding: 40px 0;
  }
  .page-register__section-title,
  .page-register__cta-title {
    font-size: 1.8em;
  }
  .page-register__section-description,
  .page-register__cta-description {
    font-size: 0.95em;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .page-register__container {
    padding: 0 15px;
  }
  .page-register__step-item,
  .page-register__benefit-card,
  .page-register__promo-card {
    padding: 20px;
  }
  .page-register__step-image,
  .page-register__benefit-icon,
  .page-register__promo-image,
  .page-register__game-image,
  .page-register__security-image,
  .page-register__mobile-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-register__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-register__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-register__faq-question {
    padding: 15px 20px;
  }
  .page-register__faq-question h3 {
    font-size: 1.1em;
  }
  .page-register__faq-answer {
    padding: 0 20px;
  }
  .page-register__faq-item.active .page-register__faq-answer {
    padding: 10px 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-register__hero-title {
    font-size: 1.8em;
  }
  .page-register__hero-description {
    font-size: 0.9em;
  }
  .page-register__btn-large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-register__section-title,
  .page-register__cta-title {
    font-size: 1.6em;
  }
  .page-register__sub-title {
    font-size: 1.5em;
  }
  .page-register__step-title,
  .page-register__card-title,
  .page-register__game-title {
    font-size: 1.3em;
  }
}