/* style/game-guides-popular-games.css */
.page-game-guides-popular-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0D1B2A; /* Darker blue background */
}

.page-game-guides-popular-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-popular-games__hero {
  background: linear-gradient(135deg, #1A2B47 0%, #0D1B2A 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-popular-games__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  line-height: 1.2;
}

.page-game-guides-popular-games__hero-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-guides-popular-games__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-game-guides-popular-games__section {
  padding: 80px 0;
  background-color: #1A2B47;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-game-guides-popular-games__section:nth-child(even) {
  background-color: #0D1B2A;
}

.page-game-guides-popular-games__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-game-guides-popular-games__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-game-guides-popular-games__keyword {
  color: #FFD700;
  font-weight: 600;
}

.page-game-guides-popular-games__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-game-guides-popular-games__content-grid--single-column {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.page-game-guides-popular-games__grid-item {
  background-color: #243B55; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides-popular-games__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-guides-popular-games__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  filter: brightness(0.9) contrast(1.1);
}

.page-game-guides-popular-games__image--small {
    max-width: 150px;
    height: auto;
    margin: 0 auto 25px auto;
    display: block;
}

.page-game-guides-popular-games__item-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for item titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-guides-popular-games__list {
  list-style-type: disc;
  margin-left: 20px;
  color: #E0E0E0;
  padding-left: 0;
}

.page-game-guides-popular-games__list li {
  margin-bottom: 10px;
}

.page-game-guides-popular-games__list li strong {
  color: #FFD700;
}

.page-game-guides-popular-games__list ul {
    list-style-type: circle;
    margin-left: 20px;
    padding-left: 0;
    margin-top: 5px;
}

.page-game-guides-popular-games__cta-center {
  text-align: center;
  margin-top: 60px;
}

.page-game-guides-popular-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides-popular-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2B47; /* Dark blue text on gold */
}

.page-game-guides-popular-games__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-game-guides-popular-games__btn--secondary {
  background-color: #1A2B47; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-game-guides-popular-games__btn--secondary:hover {
  background-color: #243B55;
  transform: translateY(-2px);
}

.page-game-guides-popular-games__btn--accent {
    background-color: #FFD700;
    color: #1A2B47;
    border: none;
}

.page-game-guides-popular-games__btn--accent:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.page-game-guides-popular-games__final-cta {
  background: linear-gradient(45deg, #1A2B47, #0D1B2A);
  padding: 100px 0;
}

.page-game-guides-popular-games__container--flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-game-guides-popular-games__cta-content {
    flex: 1;
    text-align: left;
}

.page-game-guides-popular-games__cta-content .page-game-guides-popular-games__section-title {
    text-align: left;
    margin-bottom: 20px;
}

.page-game-guides-popular-games__cta-content .page-game-guides-popular-games__section-description {
    text-align: left;
    margin-bottom: 40px;
    max-width: none;
}

.page-game-guides-popular-games__cta-group {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.page-game-guides-popular-games__cta-image-wrapper {
    flex: 1;
    max-width: 500px;
    text-align: center;
}

.page-game-guides-popular-games__cta-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides-popular-games__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides-popular-games__section-title {
    font-size: 2em;
  }
  .page-game-guides-popular-games__item-title {
    font-size: 1.5em;
  }
  .page-game-guides-popular-games__content-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides-popular-games__container--flex {
      flex-direction: column;
      text-align: center;
  }
  .page-game-guides-popular-games__cta-content {
      text-align: center;
  }
  .page-game-guides-popular-games__cta-content .page-game-guides-popular-games__section-title {
      text-align: center;
  }
  .page-game-guides-popular-games__cta-content .page-game-guides-popular-games__section-description {
      text-align: center;
  }
  .page-game-guides-popular-games__cta-group {
      justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-game-guides-popular-games__hero {
    padding: 80px 0;
  }
  .page-game-guides-popular-games__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides-popular-games__hero-subtitle {
    font-size: 1em;
  }
  .page-game-guides-popular-games__section {
    padding: 60px 0;
  }
  .page-game-guides-popular-games__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-popular-games__section-description {
    font-size: 0.95em;
  }
  .page-game-guides-popular-games__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides-popular-games__hero-cta-group, .page-game-guides-popular-games__cta-group {
      flex-direction: column;
      gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-guides-popular-games__hero {
    padding: 60px 0;
  }
  .page-game-guides-popular-games__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides-popular-games__section {
    padding: 40px 0;
  }
  .page-game-guides-popular-games__item-title {
    font-size: 1.3em;
  }
  .page-game-guides-popular-games__btn {
    width: 100%;
    padding: 10px 0;
  }
  .page-game-guides-popular-games__container {
    padding: 0 15px;
  }
}