/* style/resources-latest-game-strategies.css */

/* Variables */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-on-dark: #FFFFFF;
  --text-on-light: #333333;
  --bg-dark: #0a0a0a;
  --btn-login-color: #EA7C07;
}

.page-resources-latest-game-strategies {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-on-dark); /* Default text color for the main content area which is on a dark body background */
  background-color: var(--bg-dark); /* Ensure consistency if main is not full width */
}

/* Hero Section */
.page-resources-latest-game-strategies__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

.page-resources-latest-game-strategies__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: brightness(0.4); /* Darken background image for text readability */
}

.page-resources-latest-game-strategies__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-latest-game-strategies__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-on-dark);
}

.page-resources-latest-game-strategies__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-resources-latest-game-strategies__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

/* Video Section */
.page-resources-latest-game-strategies__video-section {
  padding: 60px 20px;
  text-align: center;
  background-color: var(--bg-dark); /* Ensure consistency */
  color: var(--text-on-dark);
}

.page-resources-latest-game-strategies__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px; /* Max width for video */
  margin: 30px auto 0;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-game-strategies__video-link-overlay {
  display: block;
  position: relative;
  cursor: pointer;
}

.page-resources-latest-game-strategies__video {
  width: 100%;
  height: auto;
  display: block;
}

/* Content Area */
.page-resources-latest-game-strategies__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
}

.page-resources-latest-game-strategies__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-latest-game-strategies__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
}

.page-resources-latest-game-strategies__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
}

.page-resources-latest-game-strategies__sub-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-latest-game-strategies p {
  margin-bottom: 1em;
  color: var(--secondary-color);
}

.page-resources-latest-game-strategies__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-resources-latest-game-strategies__list li {
  margin-bottom: 10px;
}

.page-resources-latest-game-strategies__list strong {
  color: var(--primary-color);
}

.page-resources-latest-game-strategies__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-latest-game-strategies__card {
  background: var(--secondary-color); /* Light background for cards */
  color: var(--text-on-light); /* Dark text for cards */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-resources-latest-game-strategies__card:hover {
  transform: translateY(-5px);
}

.page-resources-latest-game-strategies__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-latest-game-strategies__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Call to Action Buttons */
.page-resources-latest-game-strategies__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  text-align: center;
}

.page-resources-latest-game-strategies__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-latest-game-strategies__btn-primary:hover {
  background-color: #1f89bc; /* Darkened primary color */
  border-color: #1f89bc; /* Darkened primary color */
}

.page-resources-latest-game-strategies__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-latest-game-strategies__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-latest-game-strategies__cta-bottom {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-resources-latest-game-strategies__link-text {
  color: var(--primary-color);
  text-decoration: underline;
}
.page-resources-latest-game-strategies__link-text:hover {
  color: #1f89bc; /* Darkened primary color */
}

/* FAQ Section */
.page-resources-latest-game-strategies__faq-list {
  margin-top: 40px;
}

.page-resources-latest-game-strategies__faq-item {
  background: var(--secondary-color); /* Light background for FAQ items */
  color: var(--text-on-light); /* Dark text for FAQ items */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--primary-color); /* Primary color for question background */
  color: var(--secondary-color); /* White text for question */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-resources-latest-game-strategies__faq-question:hover {
  background-color: #2299d0; /* Slightly darkened primary color */
}

.page-resources-latest-game-strategies__faq-item[open] .page-resources-latest-game-strategies__faq-question {
  border-bottom: 1px solid var(--primary-color);
}

.page-resources-latest-game-strategies__faq-qtext {
  flex-grow: 1;
}

.page-resources-latest-game-strategies__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-resources-latest-game-strategies__faq-item[open] .page-resources-latest-game-strategies__faq-toggle {
  content: '−';
}

.page-resources-latest-game-strategies__faq-answer {
  padding: 20px;
  font-size: 1.1em;
  background-color: var(--secondary-color); /* Light background for answer */
  color: var(--text-on-light); /* Dark text for answer */
  border-top: 1px solid #eee;
}

.page-resources-latest-game-strategies__faq-answer p {
  color: var(--text-on-light); /* Ensure paragraph text in answer is dark */
}

/* Details/Summary specific styles for native expand/collapse */
.page-resources-latest-game-strategies__faq-item summary {
  list-style: none; /* Remove default marker */
}

.page-resources-latest-game-strategies__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit browsers */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-latest-game-strategies__main-title {
    font-size: 2.8em;
  }
  .page-resources-latest-game-strategies__hero-description {
    font-size: 1.2em;
  }
  .page-resources-latest-game-strategies__section-title {
    font-size: 2.2em;
  }
  .page-resources-latest-game-strategies__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-game-strategies__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-resources-latest-game-strategies__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-latest-game-strategies__main-title {
    font-size: 2em;
  }
  .page-resources-latest-game-strategies__hero-description {
    font-size: 1em;
  }
  .page-resources-latest-game-strategies__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0;
  }
  .page-resources-latest-game-strategies__cta-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .page-resources-latest-game-strategies__video-section,
  .page-resources-latest-game-strategies__content-area {
    padding: 30px 15px;
  }

  .page-resources-latest-game-strategies__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-latest-game-strategies__section-title {
    font-size: 1.8em;
  }
  .page-resources-latest-game-strategies__sub-title {
    font-size: 1.4em;
  }

  /* Image responsive rules */
  .page-resources-latest-game-strategies img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-latest-game-strategies__hero-image-wrapper,
  .page-resources-latest-game-strategies__video-wrapper,
  .page-resources-latest-game-strategies__feature-grid,
  .page-resources-latest-game-strategies__card,
  .page-resources-latest-game-strategies__faq-list,
  .page-resources-latest-game-strategies__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Video responsive rules */
  .page-resources-latest-game-strategies video,
  .page-resources-latest-game-strategies__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-latest-game-strategies__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-latest-game-strategies__section,
  .page-resources-latest-game-strategies__card,
  .page-resources-latest-game-strategies__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-resources-latest-game-strategies__faq-question {
    padding: 15px;
    font-size: 1.1em;
  }
  .page-resources-latest-game-strategies__faq-answer {
    padding: 15px;
    font-size: 1em;
  }
}