.page-register-login-troubleshooting {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light gray for text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-register-login-troubleshooting__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a3f4e 100%); /* Dark gradient */
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #FFD700; /* Auxiliary color border */
}

.page-register-login-troubleshooting__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary color for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register-login-troubleshooting__hero-subtitle {
  font-size: 1.3em;
  color: #CBD5E0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-register-login-troubleshooting__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-register-login-troubleshooting__section:last-of-type {
  border-bottom: none;
}

.page-register-login-troubleshooting__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-register-login-troubleshooting__section-description {
  font-size: 1.1em;
  color: #CBD5E0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-register-login-troubleshooting__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-register-login-troubleshooting__grid-item {
  background-color: #2D3748; /* Slightly lighter dark background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-troubleshooting__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-register-login-troubleshooting__item-title {
  font-size: 1.6em;
  color: #FFD700; /* Auxiliary color for item titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-register-login-troubleshooting__grid-item p,
.page-register-login-troubleshooting__grid-item ul {
  color: #E2E8F0;
  margin-bottom: 15px;
}

.page-register-login-troubleshooting__grid-item ul {
  list-style-type: disc;
  margin-left: 20px;
}

.page-register-login-troubleshooting__grid-item li {
  margin-bottom: 8px;
}

.page-register-login-troubleshooting__item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-register-login-troubleshooting__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-register-login-troubleshooting__btn--primary {
  background-color: #FFD700; /* Auxiliary color for primary buttons */
  color: #1A202C;
}

.page-register-login-troubleshooting__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-register-login-troubleshooting__btn--secondary {
  background-color: #4A5568; /* Darker gray for secondary buttons */
  color: #E2E8F0;
  border: 1px solid #FFD700;
}

.page-register-login-troubleshooting__btn--secondary:hover {
  background-color: #5a647d;
  transform: translateY(-2px);
}

.page-register-login-troubleshooting__btn--game {
  background-color: #FFD700;
  color: #1A202C;
  width: 100%;
  margin-top: auto; /* Push button to bottom */
}

.page-register-login-troubleshooting__btn--game:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-register-login-troubleshooting__prevention-tips .page-register-login-troubleshooting__list {
  list-style-type: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-register-login-troubleshooting__prevention-tips .page-register-login-troubleshooting__list li {
  background-color: #2D3748;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E2E8F0;
  border-left: 5px solid #FFD700;
}

.page-register-login-troubleshooting__main-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-register-login-troubleshooting__game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-register-login-troubleshooting__game-item {
  background-color: #2D3748;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-register-login-troubleshooting__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-register-login-troubleshooting__game-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-register-login-troubleshooting__game-text {
  color: #CBD5E0;
  margin-bottom: 20px;
}

.page-register-login-troubleshooting__cta-group {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-register-login-troubleshooting__faq-item {
  background-color: #2D3748;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-troubleshooting__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-register-login-troubleshooting__faq-answer {
  color: #E2E8F0;
  font-size: 1em;
  display: block; /* Ensure it's always visible for this context */
}

.page-register-login-troubleshooting__contact-support .page-register-login-troubleshooting__btn {
  margin-top: 30px;
  font-size: 1.2em;
  padding: 15px 35px;
}

.page-register-login-troubleshooting__note {
  font-size: 0.95em;
  color: #A0AEC0;
  text-align: center;
  margin-top: 30px;
}

.page-register-login-troubleshooting .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-register-login-troubleshooting__hero-title {
    font-size: 2.5em;
  }

  .page-register-login-troubleshooting__hero-subtitle {
    font-size: 1.1em;
  }

  .page-register-login-troubleshooting__section-title {
    font-size: 2em;
  }

  .page-register-login-troubleshooting__grid {
    grid-template-columns: 1fr;
  }

  .page-register-login-troubleshooting__game-showcase {
    grid-template-columns: 1fr;
  }

  .page-register-login-troubleshooting__btn {
    width: 100%;
    margin-bottom: 15px;
  }

  .page-register-login-troubleshooting__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-register-login-troubleshooting__hero {
    padding: 80px 0 60px;
  }

  .page-register-login-troubleshooting__hero-title {
    font-size: 2em;
  }

  .page-register-login-troubleshooting__section-title {
    font-size: 1.8em;
  }

  .page-register-login-troubleshooting__item-title,
  .page-register-login-troubleshooting__game-title {
    font-size: 1.3em;
  }

  .page-register-login-troubleshooting__faq-question {
    font-size: 1.1em;
  }
}