/* style/gaming-guides.css */
.page-gaming-guides {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with shared body background */
}

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

.page-gaming-guides__hero-section {
  position: relative;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  background: linear-gradient(135deg, #1E90FF, #0a0a0a) no-repeat center center/cover;
  color: #ffffff;
}

.page-gaming-guides__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gaming-guides__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gaming-guides__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-gaming-guides__cta-buttons--centered {
  justify-content: center;
}

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

.page-gaming-guides__btn-primary {
  background-color: #FFD700;
  color: #0a0a0a; /* Dark text for golden background */
  border: 2px solid #FFD700;
}

.page-gaming-guides__btn-primary:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-gaming-guides__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gaming-guides__btn-secondary:hover {
  background-color: #FFD700;
  color: #0a0a0a;
}

.page-gaming-guides__intro-video-section {
  padding: 60px 0;
  text-align: center;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-gaming-guides__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px auto;
  border-radius: 10px;
}

.page-gaming-guides__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
}

.page-gaming-guides__video-caption {
  font-size: 1.1em;
  margin-top: 20px;
}

.page-gaming-guides__content-area {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for content */
  color: #f0f0f0; /* Light text for dark background */
}

.page-gaming-guides__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-gaming-guides__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #1E90FF;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gaming-guides__subsection-title {
  font-size: 2em;
  color: #1E90FF;
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-gaming-guides p {
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-gaming-guides ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-gaming-guides li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gaming-guides__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.page-gaming-guides__content-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  display: block;
}

.page-gaming-guides__text-content {
  flex: 2;
  min-width: 300px;
}

.page-gaming-guides__text-content h4 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

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

.page-gaming-guides__card {
  background-color: #2a2a2a; /* Darker background for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  color: #f0f0f0;
}

.page-gaming-guides__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  max-width: 100%;
  display: block;
}

.page-gaming-guides__card-title {
  font-size: 1.4em;
  color: #FFD700;
  margin: 15px 15px 10px;
}

.page-gaming-guides__card p {
  font-size: 0.95em;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-gaming-guides__card-link {
  display: inline-block;
  background-color: #1E90FF;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gaming-guides__card-link:hover {
  background-color: #187bcd;
}

.page-gaming-guides__faq-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-gaming-guides__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-gaming-guides__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gaming-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: #2a2a2a;
  border-bottom: 1px solid #3a3a3a;
}

.page-gaming-guides__faq-question:hover {
  background-color: #3a3a3a;
}

.page-gaming-guides__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #1E90FF;
}

.page-gaming-guides__faq-item.active .page-gaming-guides__faq-toggle {
  transform: rotate(45deg);
}

.page-gaming-guides__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-gaming-guides__faq-item.active .page-gaming-guides__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px;
}

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

.page-gaming-guides__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gaming-guides__main-title {
    font-size: 2.8em;
  }

  .page-gaming-guides__section-title {
    font-size: 2em;
  }

  .page-gaming-guides__subsection-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-gaming-guides {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gaming-guides__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-gaming-guides__main-title {
    font-size: 2.2em;
  }

  .page-gaming-guides__description {
    font-size: 1em;
  }

  .page-gaming-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gaming-guides__btn-primary,
  .page-gaming-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-gaming-guides__intro-video-section,
  .page-gaming-guides__content-area,
  .page-gaming-guides__faq-section,
  .page-gaming-guides__conclusion-section {
    padding: 40px 0;
  }

  .page-gaming-guides__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gaming-guides__subsection-title {
    font-size: 1.5em;
    margin-top: 40px;
  }

  .page-gaming-guides__image-text-block {
    flex-direction: column;
    gap: 30px;
  }

  .page-gaming-guides__content-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  
  .page-gaming-guides__text-content {
    width: 100%;
  }

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

  .page-gaming-guides__card-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .page-gaming-guides__video-wrapper {
    margin: 20px auto;
  }

  .page-gaming-guides__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gaming-guides__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-gaming-guides__faq-item.active .page-gaming-guides__faq-answer {
    padding: 15px;
  }
  
  /* Ensure all content containers have proper padding and max-width on mobile */
  .page-gaming-guides__section,
  .page-gaming-guides__card,
  .page-gaming-guides__container,
  .page-gaming-guides__video-section,
  .page-gaming-guides__video-container,
  .page-gaming-guides__video-wrapper,
  .page-gaming-guides__cta-buttons,
  .page-gaming-guides__button-group,
  .page-gaming-guides__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-gaming-guides__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-gaming-guides__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}

/* Global image sizing enforcement for content area */
.page-gaming-guides img {
  min-width: 200px;
  min-height: 200px;
}

.page-gaming-guides__content-area img,
.page-gaming-guides__card img {
  min-width: 200px;
  min-height: 200px;
}

/* No filter on images */
.page-gaming-guides img {
  filter: none;
}

/* Contrast fixes if needed */
.page-gaming-guides__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-gaming-guides__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}