.page-game-guides {
  color: #FFF6D6;
  background: #0A0A0A;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-game-guides__hero-section {
  position: relative;
  padding-top: 10px; /* Adjusted for shared.css body padding-top */
  padding-bottom: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-game-guides__hero-content-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  background: rgba(17, 17, 17, 0.8);
  padding: 30px;
  border-radius: 10px;
  max-width: 90%;
}

.page-game-guides__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFD36B;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-game-guides__hero-description {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  width: auto;
}

.page-game-guides__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  border: none;
}

.page-game-guides__btn-primary:hover {
  background: linear-gradient(180deg, #FFE699 0%, #E6B02A 100%);
  transform: translateY(-2px);
}

.page-game-guides__btn-secondary {
  background: #111111;
  color: #FFD36B;
  border: 2px solid #3A2A12;
}

.page-game-guides__btn-secondary:hover {
  background: #1A1A1A;
  border-color: #FFD36B;
  transform: translateY(-2px);
}

.page-game-guides__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.4);
}

.page-game-guides__content-section {
  padding: 60px 0;
}

.page-game-guides__dark-section {
  background: #111111;
}

.page-game-guides__text-block {
  font-size: 1.05em;
  color: #FFF6D6;
  margin-bottom: 30px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-guides__game-card {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-guides__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-game-guides__card-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-game-guides__card-description {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
  text-align: justify;
}

.page-game-guides__btn-text {
  display: inline-block;
  color: #FFD36B;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #FFD36B;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-game-guides__btn-text:hover {
  background: #FFD36B;
  color: #0A0A0A;
}

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

.page-game-guides__strategy-item {
  background: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  color: #FFF6D6;
}

.page-game-guides__strategy-title {
  font-size: 1.4em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-game-guides__strategy-item p {
  font-size: 1em;
  color: #FFF6D6;
  text-align: justify;
}

.page-game-guides__btn-center {
  margin-top: 20px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-guides__info-item {
  background: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-guides__info-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.page-game-guides__info-title {
  font-size: 1.4em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-game-guides__info-item p {
  font-size: 1em;
  color: #FFF6D6;
  text-align: justify;
}

.page-game-guides__faq-section {
  padding: 60px 0;
  background: #0A0A0A;
}

.page-game-guides__faq-list {
  margin-top: 40px;
}

details.page-game-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #111111;
}
details.page-game-guides__faq-item summary.page-game-guides__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;
}
details.page-game-guides__faq-item summary.page-game-guides__faq-question::-webkit-details-marker {
  display: none;
}
details.page-game-guides__faq-item summary.page-game-guides__faq-question:hover {
  background: #1A1A1A;
}
.page-game-guides__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6;
}
.page-game-guides__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-game-guides__faq-item .page-game-guides__faq-answer {
  padding: 0 20px 20px;
  background: #0A0A0A;
  border-radius: 0 0 5px 5px;
  color: #FFF6D6;
}
.page-game-guides__faq-answer p {
  margin-bottom: 0;
  color: #FFF6D6;
}
.page-game-guides__faq-answer a {
  color: #FFD36B;
  text-decoration: underline;
}
.page-game-guides__faq-answer a:hover {
  color: #F2C14E;
}

.page-game-guides__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #F2C14E 0%, #DDA11D 100%);
  color: #0A0A0A;
}

.page-game-guides__cta-bottom-content {
  max-width: 800px;
}

.page-game-guides__cta-bottom-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: #0A0A0A;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-game-guides__cta-bottom-description {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* General image responsiveness */
.page-game-guides img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile specific styles */
@media (max-width: 768px) {
  .page-game-guides__container {
    padding: 0 15px;
  }

  /* HERO Section */
  .page-game-guides__hero-section {
    padding-top: 10px !important; /* ~10px top padding */
    padding-bottom: 30px;
  }

  .page-game-guides__hero-image-wrapper {
    max-height: 300px;
  }

  .page-game-guides__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-game-guides__hero-content-wrapper {
    margin-top: 20px;
    padding: 20px;
    max-width: 100%;
  }

  .page-game-guides__main-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

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

  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Section Titles */
  .page-game-guides__section-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: 30px;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  /* Content Sections */
  .page-game-guides__content-section {
    padding: 40px 0;
  }

  .page-game-guides__text-block {
    font-size: 0.95em;
    margin-bottom: 20px;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  /* Game Cards Grid */
  .page-game-guides__game-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden; /* Ensure no horizontal scroll */
  }

  .page-game-guides__game-card {
    padding-bottom: 15px;
  }

  .page-game-guides__card-image {
    height: 180px;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
  }

  .page-game-guides__card-title {
    font-size: 1.3em;
  }

  .page-game-guides__card-description {
    font-size: 0.9em;
  }

  /* Strategy Points */
  .page-game-guides__strategy-points {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-game-guides__strategy-item {
    padding: 20px;
  }

  .page-game-guides__strategy-title {
    font-size: 1.2em;
  }

  /* Info Grid */
  .page-game-guides__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-game-guides__info-item {
    padding: 20px;
  }

  .page-game-guides__info-icon {
    width: 100px;
    height: 100px;
  }

  .page-game-guides__info-title {
    font-size: 1.2em;
  }

  /* FAQ Section */
  .page-game-guides__faq-section {
    padding: 40px 0;
  }

  details.page-game-guides__faq-item summary.page-game-guides__faq-question {
    padding: 15px;
  }
  .page-game-guides__faq-qtext {
    font-size: 15px;
  }
  .page-game-guides__faq-toggle {
    font-size: 20px;
    width: 24px;
  }
  details.page-game-guides__faq-item .page-game-guides__faq-answer {
    padding: 0 15px 15px;
  }

  /* CTA Bottom Section */
  .page-game-guides__cta-bottom-section {
    padding: 50px 0;
  }

  .page-game-guides__cta-bottom-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: 20px;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-game-guides__cta-bottom-description {
    font-size: 1em;
    margin-bottom: 30px;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-game-guides__btn-lg {
    padding: 15px 30px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto;
    display: block;
  }

  /* General content area images */
  .page-game-guides__content-section img,
  .page-game-guides__dark-section img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-game-guides__content-section .page-game-guides__container,
  .page-game-guides__dark-section .page-game-guides__container,
  .page-game-guides__faq-section .page-game-guides__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}