/* style/register.css */
/* Body padding-top handled by shared.css for header offset */

.page-register {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

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

/* Hero Section */
.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-register__hero-image {
  width: 100%;
  max-width: 1920px; /* Or match design */
  height: auto;
  object-fit: cover;
  margin-bottom: 30px; /* Space between image and content */
}

.page-register__hero-content {
  position: relative; /* Not absolute, to ensure it's below the image */
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

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

.page-register__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* For responsive buttons */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-register__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for light button */
  border: none;
}

.page-register__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-register__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Main color border */
}

.page-register__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
}

/* Section Titles */
.page-register__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-register__sub-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFD36B; /* Glow color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-register__text-block {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-register__dark-section {
  background-color: #111111; /* Card BG */
  padding: 60px 0;
}

/* Benefits Section */
.page-register__benefits-section {
  padding: 60px 0;
}

.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: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-register__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFD36B; /* Glow color */
  margin-bottom: 15px;
}

.page-register__benefit-card p {
  font-size: 0.95rem;
  color: #FFF6D6;
}

/* Process Section */
.page-register__process-section {
  padding: 60px 0;
}

.page-register__flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-register__flex-container--reverse {
  flex-direction: row-reverse;
}

.page-register__process-content,
.page-register__bonuses-content,
.page-register__security-content,
.page-register__mobile-app-content {
  flex: 1;
}

.page-register__process-image-wrapper,
.page-register__bonuses-image-wrapper,
.page-register__security-image-wrapper,
.page-register__mobile-app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-register__illustration-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-register__step-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-register__list-item {
  background-color: #111111; /* Card BG */
  border-left: 4px solid #F2C14E; /* Main color */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1rem;
  color: #FFF6D6;
}

.page-register__list-item strong {
  color: #FFD36B; /* Glow color */
}

.page-register__list-item-app {
  background-color: transparent; /* No background for this specific list */
  border-left: 4px solid #F2C14E; /* Main color */
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1rem;
  color: #FFF6D6;
  list-style: none;
}

/* Form Section */
.page-register__form-section {
  padding: 60px 0;
}

.page-register__form-wrapper {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-register__registration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-register__form-group {
  display: flex;
  flex-direction: column;
}

.page-register__form-label {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 8px;
  font-weight: 600;
}

.page-register__form-input {
  padding: 12px 15px;
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for input */
  color: #FFF6D6;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.page-register__form-input::placeholder {
  color: rgba(255, 246, 214, 0.6);
}

.page-register__form-input:focus {
  outline: none;
  border-color: #F2C14E; /* Main color on focus */
  box-shadow: 0 0 0 3px rgba(242, 193, 78, 0.3);
}

.page-register__checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.page-register__form-checkbox {
  margin-top: 4px; /* Align checkbox with text */
  accent-color: #F2C14E; /* Main color for checkbox */
}

.page-register__checkbox-group .page-register__form-label {
  margin-bottom: 0;
  line-height: 1.4;
}

.page-register__link {
  color: #F2C14E; /* Main color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-register__link:hover {
  color: #FFD36B; /* Glow color on hover */
  text-decoration: underline;
}

.page-register__submit-button {
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* For responsive buttons */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for light button */
  border: none;
}

.page-register__submit-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Bonuses Section (reuses flex-container) */
.page-register__bonuses-section {
  padding: 60px 0;
}

.page-register__bonus-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-register__bonus-list .page-register__list-item {
  border-left: 4px solid #FFD36B; /* Glow color for bonus list */
}

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

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

.page-register__game-category-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-register__game-category-card .page-register__card-title {
  color: #FFD36B; /* Glow color */
}

.page-register__game-category-card p {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 20px;
}

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

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

.page-register__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}