/* style/resources-popular-game-strategies.css */
.page-resources-popular-game-strategies {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text on dark background */
  background-color: #1A2C42; /* Main dark background */
  line-height: 1.6;
}

.page-resources-popular-game-strategies .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-popular-game-strategies .hero-section {
  background: linear-gradient(135deg, #1A2C42, #3A4E6C);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-popular-game-strategies .hero-section h1 {
  font-size: 3.2em;
  color: #E0B147; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-popular-game-strategies .hero-section h1 a {
  color: #E0B147;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-popular-game-strategies .hero-section h1 a:hover {
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .hero-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #C0C0C0;
}

.page-resources-popular-game-strategies .hero-section .btn-primary {
  background-color: #E0B147;
  color: #1A2C42;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  display: inline-block;
}

.page-resources-popular-game-strategies .hero-section .btn-primary:hover {
  background-color: #F8F8F8;
  color: #1A2C42;
}

.page-resources-popular-game-strategies .hero-image {
  max-width: 90%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-popular-game-strategies .content-wrapper {
  display: flex;
  gap: 40px;
  padding: 60px 20px;
  align-items: flex-start;
}

.page-resources-popular-game-strategies .table-of-contents {
  flex: 0 0 280px; /* Fixed width for TOC */
  background-color: #2A3C52;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 100px; /* Adjust based on header height */
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.page-resources-popular-game-strategies .table-of-contents h2 {
  color: #E0B147;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #3A4E6C;
  padding-bottom: 10px;
}

.page-resources-popular-game-strategies .table-of-contents ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-popular-game-strategies .table-of-contents li {
  margin-bottom: 12px;
}

.page-resources-popular-game-strategies .table-of-contents a {
  color: #C0C0C0;
  text-decoration: none;
  font-size: 1.05em;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 0;
}

.page-resources-popular-game-strategies .table-of-contents a:hover,
.page-resources-popular-game-strategies .table-of-contents a.active {
  color: #E0B147;
  font-weight: bold;
}

.page-resources-popular-game-strategies .article-content {
  flex: 1;
  max-width: 800px; /* Optimal reading width */
  background-color: #2A3C52;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-popular-game-strategies .article-content h2 {
  color: #E0B147;
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 1px solid #3A4E6C;
  padding-bottom: 15px;
}

.page-resources-popular-game-strategies .article-content h2:first-of-type {
  margin-top: 0;
}

.page-resources-popular-game-strategies .article-content h2 a {
  color: #E0B147;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-popular-game-strategies .article-content h2 a:hover {
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .article-content h3 {
  color: #E0B147;
  font-size: 1.7em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-popular-game-strategies .article-content h3 a {
  color: #E0B147;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-popular-game-strategies .article-content h3 a:hover {
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .article-content p {
  margin-bottom: 1em;
  color: #C0C0C0;
  font-size: 1.05em;
}

.page-resources-popular-game-strategies .article-content p a {
  color: #E0B147;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-popular-game-strategies .article-content p a:hover {
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .article-content ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 1em;
  color: #C0C0C0;
}

.page-resources-popular-game-strategies .article-content ol {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 1em;
  color: #C0C0C0;
}

.page-resources-popular-game-strategies .article-content li {
  margin-bottom: 0.5em;
}

.page-resources-popular-game-strategies .article-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-popular-game-strategies .cta-text {
  text-align: center;
  margin-top: 30px;
  font-size: 1.15em;
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .cta-text .btn-secondary {
  background-color: #E0B147;
  color: #1A2C42;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
}

.page-resources-popular-game-strategies .cta-text .btn-secondary:hover {
  background-color: #F8F8F8;
  color: #1A2C42;
}

.page-resources-popular-game-strategies .faq-item {
  background-color: #3A4E6C;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-popular-game-strategies .faq-item h3 {
  color: #E0B147;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-popular-game-strategies .faq-item p {
  color: #C0C0C0;
  margin-bottom: 0;
}

.page-resources-popular-game-strategies .faq-item p a {
  color: #E0B147;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-popular-game-strategies .faq-item p a:hover {
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .cta-section {
  background-color: #1A2C42;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-popular-game-strategies .cta-section .cta-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-resources-popular-game-strategies .cta-section h2 {
  color: #E0B147;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-resources-popular-game-strategies .cta-section h2 a {
  color: #E0B147;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-popular-game-strategies .cta-section h2 a:hover {
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .cta-section p {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 40px;
}

.page-resources-popular-game-strategies .cta-section p a {
  color: #E0B147;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-popular-game-strategies .cta-section p a:hover {
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .btn-group .btn {
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  display: inline-block;
  border: none;
}

.page-resources-popular-game-strategies .btn-group .btn-primary {
  background-color: #E0B147;
  color: #1A2C42;
}

.page-resources-popular-game-strategies .btn-group .btn-primary:hover {
  background-color: #F8F8F8;
  color: #1A2C42;
}

.page-resources-popular-game-strategies .btn-group .btn-secondary {
  background-color: #3A4E6C;
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .btn-group .btn-secondary:hover {
  background-color: #E0B147;
  color: #1A2C42;
}

.page-resources-popular-game-strategies .btn-group .btn-outline {
  background-color: transparent;
  color: #E0B147;
  border: 2px solid #E0B147;
}

.page-resources-popular-game-strategies .btn-group .btn-outline:hover {
  background-color: #E0B147;
  color: #1A2C42;
}

.page-resources-popular-game-strategies .related-articles {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #3A4E6C;
}

.page-resources-popular-game-strategies .related-articles h2 {
  color: #E0B147;
  font-size: 2em;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-popular-game-strategies .article-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-popular-game-strategies .card {
  background-color: #2A3C52;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-popular-game-strategies .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-popular-game-strategies .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-resources-popular-game-strategies .card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-resources-popular-game-strategies .card h3 {
  font-size: 1.4em;
  color: #E0B147;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-resources-popular-game-strategies .card h3 a {
  color: #E0B147;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-popular-game-strategies .card h3 a:hover {
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .card p {
  color: #C0C0C0;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-popular-game-strategies .card p a {
  color: #E0B147;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-popular-game-strategies .card p a:hover {
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .card .read-more {
  color: #E0B147;
  text-decoration: none;
  font-weight: bold;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.page-resources-popular-game-strategies .card .read-more:hover {
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .back-to-resources {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
}

.page-resources-popular-game-strategies .back-to-resources a {
  color: #E0B147;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: bold;
}

.page-resources-popular-game-strategies .back-to-resources a:hover {
  color: #F8F8F8;
}

.page-resources-popular-game-strategies .floating-ad {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #E0B147;
  color: #1A2C42;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.page-resources-popular-game-strategies .floating-ad:hover {
  transform: scale(1.05);
}

.page-resources-popular-game-strategies .floating-ad a {
  text-decoration: none;
  color: #1A2C42;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-resources-popular-game-strategies .floating-ad-icon {
  width: 30px;
  height: 30px;
  filter: invert(1);
}

.page-resources-popular-game-strategies .floating-ad-text {
  font-weight: bold;
  font-size: 1.1em;
}

.page-resources-popular-game-strategies .floating-ad-text a {
  color: #1A2C42;
  text-decoration: underline;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-popular-game-strategies .content-wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 40px 15px;
  }

  .page-resources-popular-game-strategies .table-of-contents {
    position: static;
    max-height: none;
    width: 100%;
    order: -1; /* Move TOC to top on smaller screens */
  }

  .page-resources-popular-game-strategies .article-content {
    padding: 30px;
  }

  .page-resources-popular-game-strategies .hero-section h1 {
    font-size: 2.5em;
  }

  .page-resources-popular-game-strategies .cta-section h2 {
    font-size: 2em;
  }

  .page-resources-popular-game-strategies .btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-popular-game-strategies .btn-group .btn {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .page-resources-popular-game-strategies .hero-section {
    padding: 60px 0 30px;
  }

  .page-resources-popular-game-strategies .hero-section h1 {
    font-size: 2em;
  }

  .page-resources-popular-game-strategies .hero-section p {
    font-size: 1em;
  }

  .page-resources-popular-game-strategies .article-content {
    padding: 20px;
  }

  .page-resources-popular-game-strategies .article-content h2 {
    font-size: 1.8em;
  }

  .page-resources-popular-game-strategies .article-content h3 {
    font-size: 1.4em;
  }

  .page-resources-popular-game-strategies .floating-ad {
    bottom: 20px;
    right: 20px;
    padding: 12px 15px;
  }

  .page-resources-popular-game-strategies .floating-ad-icon {
    width: 25px;
    height: 25px;
  }

  .page-resources-popular-game-strategies .floating-ad-text {
    font-size: 0.9em;
  }

  .page-resources-popular-game-strategies .related-articles h2 {
    font-size: 1.8em;
  }

  .page-resources-popular-game-strategies .card h3 {
    font-size: 1.2em;
  }
}