/* style/game-guides.css */

.page-game-guides {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

.page-game-guides__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-game-guides__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-guides__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255,176,77,0.5);
}

.page-game-guides__description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

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

.page-game-guides__cta-buttons--center {
  margin-top: 40px;
}

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary,
.page-game-guides__btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-game-guides__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button custom color */
  color: #ffffff;
  border: 2px solid #D96800; /* Deep Orange */
}

.page-game-guides__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,165,58,0.4);
}

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

.page-game-guides__btn-secondary:hover {
  background: #FFA53A;
  color: #0D0E12; /* Background color for contrast */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,165,58,0.4);
}

.page-game-guides__btn-read-more {
  background: #A84F0C; /* Border color */
  color: #FFF3E6;
  border: none;
  padding: 10px 20px;
  font-size: 0.95rem;
  margin-top: 15px;
}

.page-game-guides__btn-read-more:hover {
  background: #D96800; /* Deep Orange */
}

.page-game-guides__section {
  padding: 60px 0;
  border-bottom: 1px solid #17191F; /* Card BG for subtle separation */
}

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

.page-game-guides__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(255,176,77,0.3);
}

.page-game-guides__sub-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides__text-block {
  font-size: 1.1rem;
  color: #FFF3E6; /* Text Main */
  margin-bottom: 20px;
}

.page-game-guides__highlight {
  color: #FFB04D;
  font-weight: 600;
}

.page-game-guides__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-game-guides__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-game-guides__list-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

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

.page-game-guides__game-card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

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

.page-game-guides__game-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
}

.page-game-guides__game-description {
  font-size: 1.05rem;
  color: #FFF3E6;
  margin-bottom: 20px;
}

.page-game-guides__ordered-list {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
}

.page-game-guides__ordered-list .page-game-guides__list-item {
  position: relative;
  padding-left: 60px;
}

.page-game-guides__ordered-list .page-game-guides__list-item::before {
  content: counter(my-awesome-counter);
  counter-increment: my-awesome-counter;
  position: absolute;
  left: 15px;
  top: 25px;
  width: 35px;
  height: 35px;
  background-color: #FFA53A; /* Auxiliary color */
  color: #0D0E12; /* Background color for contrast */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.page-game-guides__promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-game-guides__promo-item {
  text-align: center;
}

.page-game-guides__promo-item .page-game-guides__sub-title {
  font-size: 1.6rem;
  margin-top: 0;
}

/* FAQ Section */
.page-game-guides__faq-list {
  margin-top: 30px;
}

.page-game-guides__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF3E6;
}

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary color */
  cursor: pointer;
  background-color: #17191F;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
  list-style: none;
}

.page-game-guides__faq-item[open] .page-game-guides__faq-question {
  border-bottom-color: #A84F0C;
}

.page-game-guides__faq-question:hover {
  background-color: rgba(255, 165, 58, 0.1);
}

.page-game-guides__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFB04D;
}

.page-game-guides__faq-item[open] .page-game-guides__faq-toggle {
  transform: rotate(45deg);
}

.page-game-guides__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1.05rem;
  color: #FFF3E6;
}

/* Ensure images don't have filter */
.page-game-guides img {
  filter: none; /* No CSS filters */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-guides__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-game-guides__section-title {
    font-size: 2.2rem;
  }
  .page-game-guides__sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-game-guides {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-game-guides__container {
    padding: 0 15px;
  }
  .page-game-guides__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles header offset */
  }
  .page-game-guides__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-game-guides__description {
    font-size: 1rem;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary,
  .page-game-guides__btn-read-more {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-game-guides__section {
    padding: 40px 0;
  }
  .page-game-guides__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .page-game-guides__sub-title {
    font-size: 1.4rem;
  }
  .page-game-guides__text-block {
    font-size: 1rem;
  }
  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-guides__video,
  .page-game-guides video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-guides__video-section,
  .page-game-guides__video-container,
  .page-game-guides__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-game-guides__game-card,
  .page-game-guides__list-item,
  .page-game-guides__promo-item,
  .page-game-guides__faq-item {
    padding: 20px;
    margin-bottom: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-game-guides__ordered-list .page-game-guides__list-item {
    padding-left: 50px;
  }
  .page-game-guides__ordered-list .page-game-guides__list-item::before {
    left: 10px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .page-game-guides__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page-game-guides__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 1rem;
  }
  .page-game-guides__promo-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}