/* style/guides.css */
.page-guides {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-guides__highlight {
  color: #FFD700; /* Accent color */
}

.page-guides__hero {
  background: linear-gradient(135deg, #1A202C, #2D3748);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-guides__hero-title {
  font-size: 3.2em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-guides__hero-description {
  font-size: 1.1em;
  color: #CBD5E0;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-guides__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-guides__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  font-size: 1em;
  border: 2px solid transparent;
}

.page-guides__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
}

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

.page-guides__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-guides__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-guides__hero-image {
  max-width: 80%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-guides__section-title {
  font-size: 2.5em;
  color: #FFFFFF;
  margin-bottom: 40px;
}

.page-guides__text {
  font-size: 1.1em;
  color: #CBD5E0;
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: left;
}

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

.page-guides__feature-item {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-guides__feature-item:hover {
  transform: translateY(-5px);
}

.page-guides__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-guides__feature-description {
  color: #CBD5E0;
  font-size: 0.95em;
}

.page-guides__bg--dark {
  background-color: #1A202C;
}

.page-guides__center-content {
  text-align: center;
}

.page-guides__step-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-guides__step-list li {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  counter-increment: step-counter;
  position: relative;
  padding-left: 60px;
  font-size: 1.05em;
  color: #CBD5E0;
}

.page-guides__step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A202C;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-guides__step-list li strong {
  color: #FFD700;
}

.page-guides__card-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.page-guides__card {
  background-color: #2D3748;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  text-align: left;
  flex: 1 1 300px;
}

.page-guides__card-title {
  font-size: 1.3em;
  margin-bottom: 15px;
}

.page-guides__card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-guides__card-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-guides__card-description {
  color: #CBD5E0;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-guides__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-guides__mt-40 {
  margin-top: 40px;
}

.page-guides__game-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-guides__game-list li {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  color: #CBD5E0;
}

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

.page-guides__game-description {
  font-size: 1em;
}

.page-guides__tips-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-guides__tips-list li {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  color: #CBD5E0;
  font-size: 1.05em;
}

.page-guides__tips-list li strong {
  color: #FFD700;
}

.page-guides__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-guides__faq-item {
  background-color: #2D3748;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-guides__faq-question {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-guides__faq-answer {
  color: #CBD5E0;
  font-size: 1em;
}

.page-guides__cta-banner {
  background: linear-gradient(90deg, #FFD700, #e6c200);
  padding: 60px 0;
  text-align: center;
  color: #1A202C;
}

.page-guides__cta-content {
  max-width: 900px;
}

.page-guides__cta-title {
  font-size: 2.8em;
  color: #1A202C;
  margin-bottom: 20px;
}

.page-guides__cta-description {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 30px;
}

.page-guides__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-guides__cta-actions .page-guides__btn--primary {
  background-color: #1A202C;
  color: #FFD700;
  border-color: #1A202C;
}

.page-guides__cta-actions .page-guides__btn--primary:hover {
  background-color: #000000;
  color: #FFD700;
}

.page-guides__cta-actions .page-guides__btn--secondary {
  background-color: transparent;
  color: #1A202C;
  border-color: #1A202C;
}

.page-guides__cta-actions .page-guides__btn--secondary:hover {
  background-color: #1A202C;
  color: #FFD700;
}

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

  .page-guides__section-title {
    font-size: 2em;
  }

  .page-guides__hero-actions, .page-guides__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-guides__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-guides__features-grid {
    grid-template-columns: 1fr;
  }

  .page-guides__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-guides__hero-title {
    font-size: 2em;
  }

  .page-guides__section-title {
    font-size: 1.8em;
  }

  .page-guides__hero-description {
    font-size: 1em;
  }

  .page-guides__btn {
    width: 90%;
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-guides__hero-image {
    max-width: 95%;
  }

  .page-guides__step-list li, .page-guides__game-list li, .page-guides__tips-list li, .page-guides__faq-item {
    padding-left: 50px;
    font-size: 0.95em;
  }

  .page-guides__step-list li::before {
    left: 15px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }

  .page-guides__card {
    flex-basis: 100%;
  }

  .page-guides__cta-title {
    font-size: 1.8em;
  }
  .page-guides__cta-description {
    font-size: 1em;
  }
}