/* style/news-game-guides.css */
/* body background: #08160F (dark) */
.page-news-game-guides {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-news-game-guides__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles --header-offset, this is decorative top padding */
  background-color: #08160F;
  overflow: hidden;
}

.page-news-game-guides__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-news-game-guides__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
}

.page-news-game-guides__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for responsive H1 */
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-news-game-guides__description {
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

.page-news-game-guides__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-game-guides__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-news-game-guides__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-news-game-guides__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-news-game-guides__introduction-section .page-news-game-guides__text-block {
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-news-game-guides__types-section {
  background-color: #11271B; /* Card BG */
}

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

.page-news-game-guides__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Text Main */
}

.page-news-game-guides__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-news-game-guides__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-news-game-guides__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  padding: 20px 20px 10px 20px;
}

.page-news-game-guides__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-news-game-guides__card-title a:hover {
  text-decoration: underline;
}

.page-news-game-guides__card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 20px 20px;
}

.page-news-game-guides__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #57E38D; /* Glow */
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #57E38D; /* Glow */
  border-radius: 8px;
  margin: 0 20px 20px 20px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news-game-guides__btn-secondary:hover {
  background-color: #57E38D; /* Glow */
  color: #11271B; /* Card BG */
}

.page-news-game-guides__grid--two-columns {
  grid-template-columns: 1fr 1fr;
}

.page-news-game-guides__content-block {
  padding: 20px;
}

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

.page-news-game-guides__text-block {
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  text-align: justify;
}

.page-news-game-guides__image-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.page-news-game-guides__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #2E7A4E; /* Border */
}

.page-news-game-guides__promotion-focus {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-news-game-guides__promotion-focus .page-news-game-guides__sub-title {
  color: #F2FFF6; /* Text Main */
}

.page-news-game-guides__promotion-focus .page-news-game-guides__text-block {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
}

.page-news-game-guides__access-section {
  background-color: #08160F; /* Background */
}

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

.page-news-game-guides__faq-section {
  background-color: #11271B; /* Card BG */
}

.page-news-game-guides__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-news-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: #F2C14E; /* Gold */
  list-style: none; /* Remove default marker for details summary */
}

.page-news-game-guides__faq-question::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit browsers */
}

.page-news-game-guides__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

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

.page-news-game-guides__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-news-game-guides__conclusion-section {
  text-align: center;
}

.page-news-game-guides__conclusion-section .page-news-game-guides__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-news-game-guides__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

.page-news-game-guides__btn-secondary--large {
  padding: 16px 30px;
  font-size: 1.1rem;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-news-game-guides__grid--two-columns {
    grid-template-columns: 1fr;
  }

  .page-news-game-guides__hero-section {
    padding-bottom: 40px;
  }

  .page-news-game-guides__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

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

@media (max-width: 768px) {
  .page-news-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news-game-guides__section,
  .page-news-game-guides__card,
  .page-news-game-guides__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news-game-guides__hero-section {
    padding-top: 10px !important; /* body handles --header-offset, this is decorative top padding */
    padding-bottom: 30px;
  }

  .page-news-game-guides__hero-content {
    padding: 30px 15px;
  }

  .page-news-game-guides__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

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

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

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

  .page-news-game-guides__sub-title {
    font-size: 1.5rem;
  }

  .page-news-game-guides__text-block,
  .page-news-game-guides__card-description,
  .page-news-game-guides__faq-answer p {
    font-size: 0.95rem;
  }

  .page-news-game-guides__cta-button,
  .page-news-game-guides__btn-primary,
  .page-news-game-guides a[class*="button"],
  .page-news-game-guides a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0;
    margin-right: 0;
  }
  
  .page-news-game-guides__cta-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

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

  .page-news-game-guides__faq-item {
    margin-left: 15px;
    margin-right: 15px;
  }
}

/* Ensure min-width for content images */
.page-news-game-guides__card-image,
.page-news-game-guides__content-image {
  min-width: 200px;
  min-height: 200px;
}