/* style/resources-89win-popular-game-strategies.css */

/* Base styles for the page content, considering dark body background */
.page-resources-89win-popular-game-strategies {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Main content area typically transparent to show body background */
}

/* Fixed header offset for the first main section */
.page-resources-89win-popular-game-strategies__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #017439, #005f2e); /* Brand colors gradient */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  box-sizing: border-box;
}

.page-resources-89win-popular-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-resources-89win-popular-game-strategies__main-title {
  font-size: 3.2em;
  color: #FFFF00; /* Use bright color for main title for impact */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-89win-popular-game-strategies__intro-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-89win-popular-game-strategies__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  margin-top: 30px;
}

.page-resources-89win-popular-game-strategies__cta-buttons--bottom {
  margin-top: 60px;
}

/* Primary button style */
.page-resources-89win-popular-game-strategies__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Specific color for Register/Login */
  color: #FFFF00; /* Specific color for Register/Login font */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

.page-resources-89win-popular-game-strategies__btn-primary:hover {
  background-color: #e00a0a;
  transform: translateY(-2px);
}

/* Secondary button style */
.page-resources-89win-popular-game-strategies__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #017439;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
  border: 2px solid #017439;
  cursor: pointer;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

.page-resources-89win-popular-game-strategies__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-resources-89win-popular-game-strategies__content-area {
  padding: 60px 0;
  background-color: #1a1a2e; /* Ensure background for content sections */
}

.page-resources-89win-popular-game-strategies__section-title {
  font-size: 2.5em;
  color: #FFFF00; /* Bright title for dark background */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-resources-89win-popular-game-strategies__paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-89win-popular-game-strategies__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-89win-popular-game-strategies__list-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for list items */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid #017439;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-89win-popular-game-strategies__list-title {
  font-size: 1.5em;
  color: #FFFF00; /* Bright title for list items */
  margin-bottom: 10px;
}

.page-resources-89win-popular-game-strategies__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure min-width */
  min-height: 200px; /* Ensure min-height */
  object-fit: cover;
}

.page-resources-89win-popular-game-strategies__game-strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-89win-popular-game-strategies__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.page-resources-89win-popular-game-strategies__game-card:hover {
  transform: translateY(-5px);
}

.page-resources-89win-popular-game-strategies__card-title {
  font-size: 1.8em;
  color: #017439; /* Brand color for card titles */
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-89win-popular-game-strategies__card-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-resources-89win-popular-game-strategies__card-list {
  list-style: disc;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-resources-89win-popular-game-strategies__card-list .page-resources-89win-popular-game-strategies__list-item {
  background-color: transparent;
  padding: 5px 0;
  margin-bottom: 8px;
  border-left: none;
  box-shadow: none;
}

.page-resources-89win-popular-game-strategies__inline-link {
  color: #FFFF00; /* Bright yellow for inline links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-resources-89win-popular-game-strategies__inline-link:hover {
  color: #e00a0a; /* Hover color for inline links */
}

/* FAQ Section */
.page-resources-89win-popular-game-strategies__faq-container {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-89win-popular-game-strategies__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-resources-89win-popular-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: #017439; /* Brand color for FAQ question background */
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-resources-89win-popular-game-strategies__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-89win-popular-game-strategies__faq-question:hover {
  background-color: #005f2e;
}

.page-resources-89win-popular-game-strategies__faq-answer {
  padding: 20px;
  font-size: 1.1em;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-89win-popular-game-strategies__main-title {
    font-size: 2.8em;
  }
  .page-resources-89win-popular-game-strategies__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-89win-popular-game-strategies__hero-section {
    min-height: 400px;
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }

  .page-resources-89win-popular-game-strategies__main-title {
    font-size: 2em;
  }

  .page-resources-89win-popular-game-strategies__intro-text {
    font-size: 1em;
  }

  .page-resources-89win-popular-game-strategies__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px; /* Add padding to container */
  }

  .page-resources-89win-popular-game-strategies__btn-primary,
  .page-resources-89win-popular-game-strategies__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-89win-popular-game-strategies__content-area {
    padding: 40px 0;
  }

  .page-resources-89win-popular-game-strategies__container {
    padding: 0 15px; /* Add padding for mobile content */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-89win-popular-game-strategies__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }

  .page-resources-89win-popular-game-strategies__paragraph,
  .page-resources-89win-popular-game-strategies__list-item p,
  .page-resources-89win-popular-game-strategies__faq-answer p {
    font-size: 1em;
  }

  .page-resources-89win-popular-game-strategies__list-title {
    font-size: 1.3em;
  }

  /* Image responsive rules */
  .page-resources-89win-popular-game-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Enforce min size for content images */
    min-height: 200px !important;
  }

  /* All containers with images */
  .page-resources-89win-popular-game-strategies__section,
  .page-resources-89win-popular-game-strategies__card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}