.page-register {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Default text color for dark background */
  background-color: #0A0A0A; /* Main background color */
}

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

.page-register__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD36B;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

/* 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: 10px; /* Small top padding, body handles header offset */
  background-color: #0A0A0A;
}

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

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

.page-register__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

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

.page-register__main-title {
  color: #FFD36B;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-register__hero-description {
  color: #FFF6D6;
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-register__cta-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-register__intro-section {
  background-color: #111111; /* Card BG color */
  color: #FFF6D6;
}

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

.page-register__feature-item {
  background-color: #0A0A0A; /* Background color */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12;
}

.page-register__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-register__feature-item img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px #FFD36B);
}

.page-register__feature-item h3 {
  color: #FFD36B;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-register__feature-item p {
  color: #FFF6D6;
  font-size: 0.95em;
}

/* Quick Access Section */
.page-register__quick-access-section {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

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

.page-register__quick-link-button {
  display: inline-block;
  padding: 12px 25px;
  background: #F2C14E; /* Primary color */
  color: #111111; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-register__quick-link-button:hover {
  background-color: #FFD36B; /* Secondary color */
  transform: translateY(-2px);
}

/* Games Section */
.page-register__games-section {
  background-color: #111111; /* Card BG color */
  color: #FFF6D6;
}

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

.page-register__game-card {
  background-color: #0A0A0A; /* Background color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12;
}

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

.page-register__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #3A2A12;
}

.page-register__game-card h3 {
  color: #FFD36B;
  font-size: 1.3em;
  margin: 15px 15px 10px;
}

.page-register__game-card p {
  color: #FFF6D6;
  font-size: 0.9em;
  margin: 0 15px 20px;
}

.page-register__game-link {
  display: block;
  padding: 10px 15px;
  background: #F2C14E;
  color: #111111;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-radius: 0 0 10px 10px;
}

.page-register__game-link:hover {
  background-color: #FFD36B;
}

/* Promotions Section */
.page-register__promotions-section {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

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

.page-register__promo-card {
  background-color: #111111; /* Card BG color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12;
}

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

.page-register__promo-card img {
  width: 100%;
  
  object-fit: cover;
  border-bottom: 1px solid #3A2A12;
}

.page-register__promo-card h3 {
  color: #FFD36B;
  font-size: 1.3em;
  margin: 15px 15px 10px;
}

.page-register__promo-card p {
  color: #FFF6D6;
  font-size: 0.9em;
  margin: 0 15px 20px;
}

.page-register__promo-button {
  display: block;
  padding: 10px 15px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 0 0 10px 10px;
}

.page-register__promo-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
}

/* Security & Support Section */
.page-register__security-support-section {
  background-color: #111111; /* Card BG color */
  color: #FFF6D6;
}

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

.page-register__info-block {
  background-color: #0A0A0A; /* Background color */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12;
}

.page-register__info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-register__info-block img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px #FFD36B);
}

.page-register__info-block h3 {
  color: #FFD36B;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-register__info-block p {
  color: #FFF6D6;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-register__info-link {
  display: inline-block;
  padding: 8px 15px;
  background: #F2C14E;
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-register__info-link:hover {
  background-color: #FFD36B;
}

/* FAQ Section */
.page-register__faq-section {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-register__faq-list {
  margin-top: 50px;
}

details.page-register__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #111111;
}

details.page-register__faq-item summary.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD36B;
}

details.page-register__faq-item summary.page-register__faq-question::-webkit-details-marker {
  display: none;
}

details.page-register__faq-item summary.page-register__faq-question:hover {
  background: #1a1a1a;
}

.page-register__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.page-register__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-register__faq-item .page-register__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A;
  border-radius: 0 0 5px 5px;
  color: #FFF6D6;
}

/* Blog Section */
.page-register__blog-section {
  background-color: #111111; /* Card BG color */
  color: #FFF6D6;
}

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

.page-register__blog-card {
  background-color: #0A0A0A; /* Background color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12;
}

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

.page-register__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #3A2A12;
}

.page-register__blog-content {
  padding: 15px;
}

.page-register__blog-content h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.page-register__blog-content h3 a {
  color: #FFD36B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-register__blog-content h3 a:hover {
  color: #F2C14E;
}

.page-register__blog-content p {
  color: #FFF6D6;
  font-size: 0.9em;
  margin-bottom: 15px;
}

.page-register__blog-date {
  font-size: 0.85em;
  color: #F2C14E;
}

.page-register__view-all-button-container {
  text-align: center;
  margin-top: 50px;
}

.page-register__view-all-button {
  display: inline-block;
  padding: 12px 30px;
  background: #F2C14E;
  color: #111111;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-register__view-all-button:hover {
  background-color: #FFD36B;
  transform: translateY(-2px);
}

/* Common styles for light/dark background sections */
.page-register__light-bg {
  background-color: #111111;
  color: #FFF6D6;
}

.page-register__dark-bg {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-register__section-title {
    font-size: 2em;
  }
  .page-register__hero-description {
    font-size: 1.1em;
  }
  .page-register__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-register__feature-item h3,
  .page-register__game-card h3,
  .page-register__promo-card h3,
  .page-register__info-block h3 {
    font-size: 1.2em;
  }
  .page-register__faq-qtext {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-register__container {
    padding: 20px 15px;
  }
  .page-register__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }
  .page-register__hero-image img {
    border-radius: 4px;
  }
  .page-register__main-title {
    font-size: 1.8em;
  }
  .page-register__section-title {
    font-size: 1.8em;
  }
  .page-register__section-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-register__cta-button,
  .page-register__quick-link-button,
  .page-register__game-link,
  .page-register__promo-button,
  .page-register__info-link,
  .page-register__view-all-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-register__quick-links {
    flex-direction: column;
    gap: 15px;
  }
  .page-register__hero-image {
    margin-bottom: 20px;
  }
  .page-register__hero-description {
    font-size: 1em;
  }
  .page-register__feature-item,
  .page-register__game-card,
  .page-register__promo-card,
  .page-register__info-block {
    padding: 20px;
  }
  .page-register__feature-item img,
  .page-register__info-block img {
    
    
  }
  details.page-register__faq-item summary.page-register__faq-question {
    padding: 15px;
  }
  .page-register__faq-qtext {
    font-size: 0.95em;
  }
  .page-register__faq-toggle {
    font-size: 20px;
  }
  details.page-register__faq-item .page-register__faq-answer {
    padding: 0 15px 15px;
  }
  .page-register img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-register__intro-section,
  .page-register__quick-access-section,
  .page-register__games-section,
  .page-register__promotions-section,
  .page-register__security-support-section,
  .page-register__faq-section,
  .page-register__blog-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-register__intro-features,
  .page-register__game-categories,
  .page-register__promotions-grid,
  .page-register__security-support-grid,
  .page-register__blog-grid {
    gap: 20px;
  }
}