/* style/gaming-guides.css */
.page-gaming-guides {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Text Main */
  background-color: #F5F7FA; /* Background */
}

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

.page-gaming-guides__section {
  padding: 60px 0;
}

.page-gaming-guides__light-bg {
  background-color: #F5F7FA; /* Background */
  color: #333333;
}

.page-gaming-guides__dark-bg {
  background-color: #E53935; /* Primary Color */
  color: #ffffff;
}

.page-gaming-guides__section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  color: inherit; /* Inherit color from parent section (light/dark bg) */
}

/* Hero Section */
.page-gaming-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, main offset from body */
  overflow: hidden;
}

.page-gaming-guides__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-gaming-guides__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-gaming-guides__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-gaming-guides__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #333333; /* Default for light background, will adjust if needed */
}

.page-gaming-guides__hero-section .page-gaming-guides__main-title {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #E53935; /* Primary Color for H1 */
}

.page-gaming-guides__hero-section .page-gaming-guides__hero-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #333333;
}

.page-gaming-guides__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  border: none;
}

.page-gaming-guides__cta-button:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-gaming-guides__cta-button--bottom {
  margin-top: 40px;
}

.page-gaming-guides__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-gaming-guides__list {
  list-style: disc;
  margin-left: 25px;
  padding-left: 0;
}

.page-gaming-guides__list-item {
  margin-bottom: 10px;
  color: inherit;
}

/* Platform Cards */
.page-gaming-guides__top-platforms-section {
  background-color: #F5F7FA;
}

.page-gaming-guides__platform-card {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #E0E0E0; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-gaming-guides__platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-gaming-guides__platform-title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  color: #E53935; /* Primary Color */
}

.page-gaming-guides__platform-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-gaming-guides__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  border: none;
}

.page-gaming-guides__btn-primary:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-gaming-guides__call-to-action-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #E0E0E0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-gaming-guides__call-to-action-block p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #333333;
}

.page-gaming-guides__call-to-action-block a {
  color: #E53935;
  text-decoration: underline;
}

/* Game Guide Cards */
.page-gaming-guides__game-guide-card {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #E0E0E0; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-gaming-guides__game-guide-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
  color: #E53935; /* Primary Color */
}

.page-gaming-guides__game-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  margin-top: 20px;
  object-fit: cover;
}

/* FAQ Section */
details.page-gaming-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #E0E0E0; /* Border */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
  color: #333333;
}

details.page-gaming-guides__faq-item summary.page-gaming-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-gaming-guides__faq-item summary.page-gaming-guides__faq-question::-webkit-details-marker {
  display: none;
}

details.page-gaming-guides__faq-item summary.page-gaming-guides__faq-question:hover {
  background: #f5f5f5;
}

.page-gaming-guides__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-gaming-guides__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #E53935; /* Primary Color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-gaming-guides__faq-item .page-gaming-guides__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #333333;
}

.page-gaming-guides__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

/* Blog/News Section */
.page-gaming-guides__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gaming-guides__blog-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

.page-gaming-guides__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-gaming-guides__blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-gaming-guides__blog-card h3 {
  padding: 20px 20px 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #E53935; /* Primary Color */
}

.page-gaming-guides__blog-card h3 a {
  color: #E53935;
  text-decoration: none;
}

.page-gaming-guides__blog-card h3 a:hover {
  text-decoration: underline;
}

.page-gaming-guides__blog-meta {
  font-size: 14px;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 15px;
}

.page-gaming-guides__blog-excerpt {
  font-size: 15px;
  padding: 0 20px 15px;
  color: #333333;
}

.page-gaming-guides__read-more {
  display: inline-block;
  padding: 0 20px 20px;
  color: #FF5A4F; /* Secondary Color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gaming-guides__read-more:hover {
  color: #E53935;
  text-decoration: underline;
}

.page-gaming-guides__view-all-button-container {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gaming-guides__section {
    padding: 40px 0;
  }

  .page-gaming-guides__section-title {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 30px;
  }

  .page-gaming-guides__hero-section .page-gaming-guides__main-title {
    font-size: clamp(28px, 6vw, 42px);
  }

  .page-gaming-guides__hero-section .page-gaming-guides__hero-description {
    font-size: 16px;
  }

  .page-gaming-guides__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-gaming-guides__platform-card,
  .page-gaming-guides__game-guide-card {
    padding: 25px;
  }

  .page-gaming-guides__platform-title,
  .page-gaming-guides__game-guide-title {
    font-size: 20px;
  }

  .page-gaming-guides__blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gaming-guides__container {
    padding: 0 15px;
  }

  .page-gaming-guides__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gaming-guides__hero-image img,
  .page-gaming-guides__content-image,
  .page-gaming-guides__platform-image,
  .page-gaming-guides__game-image,
  .page-gaming-guides__blog-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gaming-guides__section,
  .page-gaming-guides__card,
  .page-gaming-guides__container,
  .page-gaming-guides__platform-card,
  .page-gaming-guides__game-guide-card,
  .page-gaming-guides__blog-card,
  .page-gaming-guides__call-to-action-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gaming-guides__cta-button,
  .page-gaming-guides__btn-primary,
  .page-gaming-guides__btn-secondary,
  .page-gaming-guides a[class*="button"],
  .page-gaming-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;
    text-align: center;
  }

  .page-gaming-guides__call-to-action-block .page-gaming-guides__cta-button {
    margin-left: auto;
    margin-right: auto;
  }

  .page-gaming-guides__platform-card,
  .page-gaming-guides__game-guide-card,
  .page-gaming-guides__blog-card {
    margin-bottom: 20px;
  }

  details.page-gaming-guides__faq-item summary.page-gaming-guides__faq-question {
    padding: 15px;
  }

  .page-gaming-guides__faq-qtext {
    font-size: 15px;
  }

  details.page-gaming-guides__faq-item .page-gaming-guides__faq-answer {
    padding: 0 15px 15px;
  }

  .page-gaming-guides__blog-card h3 {
    font-size: 18px;
    padding: 15px 15px 8px;
  }

  .page-gaming-guides__blog-meta,
  .page-gaming-guides__blog-excerpt {
    padding: 0 15px;
  }

  .page-gaming-guides__read-more {
    padding: 0 15px 15px;
  }

  .page-gaming-guides__blog-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .page-gaming-guides__hero-section .page-gaming-guides__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-gaming-guides__hero-section .page-gaming-guides__hero-description {
    font-size: 15px;
  }

  .page-gaming-guides__cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }
}