/* style/game-guides.css */
.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #000000; /* Main background color */
}

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

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

.page-game-guides__section:last-of-type {
  border-bottom: none;
}

.page-game-guides__section-title,
.page-game-guides__hero-title,
.page-game-guides__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides__section-intro,
.page-game-guides__hero-description,
.page-game-guides__cta-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #CCCCCC; /* Lighter gray for descriptions */
}

.page-game-guides__hero-section {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
}

.page-game-guides__hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-game-guides__hero-section .page-game-guides__container {
  position: relative;
  z-index: 2;
}

.page-game-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-guides__hero-description {
  font-size: 1.2em;
  margin-bottom: 50px;
}

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

.page-game-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.page-game-guides__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-game-guides__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #000000; /* Black text for contrast */
  border: 2px solid #FFD700;
}

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

.page-game-guides__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

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

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

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

.page-game-guides__btn--center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 300px;
}

.page-game-guides__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-game-guides__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-game-guides__text-content {
  flex: 1;
}

.page-game-guides__text-content h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for subheadings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides__text-content p {
  margin-bottom: 15px;
  color: #F0F0F0;
}

.page-game-guides__text-content ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
  color: #F0F0F0;
}

.page-game-guides__text-content ul li {
  margin-bottom: 8px;
}

.page-game-guides__image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-game-guides__image--full-width {
    max-width: 100%;
    margin-top: 40px;
}

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

.page-game-guides__game-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.page-game-guides__game-item h3 {
  color: #FFD700; /* Gold */
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-game-guides__game-item p {
  color: #CCCCCC;
  font-size: 0.95em;
}

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

.page-game-guides__detail-item {
  background-color: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-guides__detail-thumbnail {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-game-guides__detail-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #FFD700; /* Gold */
}

.page-game-guides__detail-item h3 a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides__detail-item h3 a:hover {
  color: #e6c200;
}

.page-game-guides__detail-item p {
  color: #CCCCCC;
  font-size: 0.9em;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-game-guides__faq-item {
  background-color: #1a1a1a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-game-guides__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold */
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-game-guides__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-game-guides__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-guides__faq-answer {
  padding: 0 20px 20px 20px;
  color: #CCCCCC;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-guides__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-game-guides__cta-section {
  background-color: #000000;
  padding: 80px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides__section-title,
  .page-game-guides__hero-title,
  .page-game-guides__cta-title {
    font-size: 2.2em;
  }

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

  .page-game-guides__content-wrapper {
    flex-direction: column;
  }

  .page-game-guides__content-wrapper--reversed {
    flex-direction: column;
  }

  .page-game-guides__image {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-game-guides__section {
    padding: 40px 0;
  }

  .page-game-guides__hero-title {
    font-size: 2.5em;
  }

  .page-game-guides__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-guides__btn {
    width: 100%;
    max-width: 280px;
  }

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

  .page-game-guides__text-content h3 {
    font-size: 1.6em;
  }

  .page-game-guides__game-grid,
  .page-game-guides__detail-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-game-guides__section-title,
  .page-game-guides__hero-title,
  .page-game-guides__cta-title {
    font-size: 1.8em;
  }

  .page-game-guides__hero-section {
    padding: 60px 0;
    min-height: 400px;
  }

  .page-game-guides__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-game-guides__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-game-guides__faq-question::after {
    font-size: 1.2em;
    right: 15px;
  }

  .page-game-guides__faq-answer {
    padding: 0 15px 15px 15px;
  }
}