.page-game-guides {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-game-guides__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: #0A4B2C; /* Deep Green for hero background */
  overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.page-game-guides__hero-image {
  width: 1200px;
  height: 675px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-game-guides__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-game-guides__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-guides__section {
  padding: 80px 20px;
  text-align: center;
}

.page-game-guides__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
}

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

.page-game-guides__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.page-game-guides__introduction-section .page-game-guides__section-title {
  color: #F2C14E; /* Gold */
}

.page-game-guides__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__text-block strong {
  color: #F2FFF6;
}

.page-game-guides__image-content {
  width: 800px;
  height: 600px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-game-guides__list-item {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.page-game-guides__list-item::before {
  content: '✓';
  color: #2AD16F;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-game-guides__list-item strong {
  color: #F2FFF6;
}

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-game-guides__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-game-guides__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
  box-shadow: none;
}

.page-game-guides__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
  color: #57E38D; /* Glow */
}

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

.page-game-guides__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #2E7A4E; /* Border */
}

.page-game-guides__card-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-game-guides__card-image {
  width: 600px;
  height: 400px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides__card-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-game-guides__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.page-game-guides__card-list .page-game-guides__list-item {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 10px;
  padding-left: 25px;
}

.page-game-guides__card-list .page-game-guides__list-item::before {
  font-size: 0.9em;
  top: 3px;
}

.page-game-guides__card-btn {
  margin-top: auto;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: center;
  width: fit-content;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-guides__card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-game-guides__responsible-gaming-section .page-game-guides__section-title {
  color: #57E38D; /* Glow */
}

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

.page-game-guides__faq-section {
  background-color: #08160F;
  padding-bottom: 100px;
}

.page-game-guides__faq-section .page-game-guides__section-title {
  color: #F2C14E; /* Gold */
}

.page-game-guides__faq-list {
  max-width: 900px;
  margin: 50px auto;
  text-align: left;
}

.page-game-guides__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B;
  user-select: none;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-game-guides__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-game-guides__faq-item[open] .page-game-guides__faq-question {
  background-color: #1E3A2A;
}

.page-game-guides__faq-qtext {
  flex-grow: 1;
}

.page-game-guides__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 20px;
  color: #2AD16F;
  font-weight: normal;
}

.page-game-guides__faq-item[open] .page-game-guides__faq-toggle {
  color: #F2C14E;
}

.page-game-guides__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: left;
  line-height: 1.7;
}

.page-game-guides__faq-answer p {
  margin-bottom: 10px;
}

.page-game-guides__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-game-guides__faq-item details > summary::-webkit-details-marker {
  display: none; /* Hide default marker */
}

.page-game-guides__faq-item details > summary {
  list-style: none; /* Hide default marker */
}

.page-game-guides__faq-cta {
  margin-top: 60px;
}

.page-game-guides__cta-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #0A4B2C; /* Deep Green */
}

.page-game-guides__cta-section .page-game-guides__section-title {
  color: #57E38D; /* Glow */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-guides__hero-image {
    width: 100%;
    height: auto;
  }

  .page-game-guides__game-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-game-guides__main-title {
    font-size: 2.2rem;
  }

  .page-game-guides__subtitle {
    font-size: 1rem;
  }

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

  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-guides__section {
    padding: 50px 15px;
  }

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

  .page-game-guides__text-block,
  .page-game-guides__list-item {
    font-size: 1rem;
  }

  .page-game-guides__game-card-grid {
    grid-template-columns: 1fr;
  }

  .page-game-guides__card-title {
    font-size: 1.4rem;
  }

  .page-game-guides__card-btn {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-guides__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-game-guides__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }

  .page-game-guides__faq-toggle {
    font-size: 1.5rem;
  }

  /* Mobile image responsiveness */
  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-game-guides__section,
  .page-game-guides__card,
  .page-game-guides__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-game-guides__video-section {
    padding-top: 10px !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__cta-buttons,
  .page-game-guides__button-group,
  .page-game-guides__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
}