/* style/resources-32win-popular-games.css */
.page-resources-32win-popular-games {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text for dark backgrounds */
  background-color: #000080; /* Auxiliary color as main background */
  line-height: 1.6;
}

.page-resources-32win-popular-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-32win-popular-games__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
  padding: 80px 0;
  text-align: center;
  color: #000080; /* Dark text for golden background */
  position: relative;
  overflow: hidden;
}

.page-resources-32win-popular-games__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  opacity: 0.8;
  animation: page-resources-32win-popular-games__pulse 15s infinite alternate;
}

@keyframes page-resources-32win-popular-games__pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 1; }
}

.page-resources-32win-popular-games__main-title {
  font-size: 3.5em;
  color: #000080; /* Dark text for golden background */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-resources-32win-popular-games__hero-description {
  font-size: 1.2em;
  color: #333333; /* Darker text for readability */
  max-width: 800px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 1;
}

.page-resources-32win-popular-games__hero-description strong {
  color: #000080;
}

.page-resources-32win-popular-games__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-resources-32win-popular-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-32win-popular-games__button--primary {
  background-color: #000080; /* Auxiliary color */
  color: #FFD700; /* Primary color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-32win-popular-games__button--primary:hover {
  background-color: #1a1a94; /* Slightly darker blue */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-32win-popular-games__button--secondary {
  background-color: transparent;
  color: #000080; /* Dark text for golden background */
  border: 2px solid #000080;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-32win-popular-games__button--secondary:hover {
  background-color: #000080;
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-32win-popular-games__section {
  padding: 60px 0;
  background-color: #000080; /* Auxiliary color */
  color: #FFFFFF;
}

.page-resources-32win-popular-games__section--dark {
  background-color: #0a0a40; /* Slightly darker blue for contrast */
}

.page-resources-32win-popular-games__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Primary color */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-resources-32win-popular-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-32win-popular-games__text-center {
  text-align: center;
}

.page-resources-32win-popular-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-32win-popular-games__feature-item {
  background-color: #1a1a4a; /* Darker background for feature items */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-resources-32win-popular-games__feature-item:hover {
  transform: translateY(-10px);
}

.page-resources-32win-popular-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-resources-32win-popular-games__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-32win-popular-games__feature-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-resources-32win-popular-games__game-category {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: #1a1a4a;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-32win-popular-games__game-category--reverse {
  flex-direction: row-reverse;
}

.page-resources-32win-popular-games__game-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-resources-32win-popular-games__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-32win-popular-games__game-content {
  flex: 2;
}

.page-resources-32win-popular-games__game-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-32win-popular-games__game-description {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-resources-32win-popular-games__game-description strong {
  color: #FFD700;
}

.page-resources-32win-popular-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-resources-32win-popular-games__tips-list li {
  background-color: #1a1a4a;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-32win-popular-games__tips-list li strong {
  color: #FFD700;
}

.page-resources-32win-popular-games__section--cta {
  background-color: #FFD700; /* Primary color as background */
  color: #000080; /* Auxiliary color for text */
  padding: 80px 0;
}

.page-resources-32win-popular-games__section--cta .page-resources-32win-popular-games__section-title {
  color: #000080;
}

.page-resources-32win-popular-games__section--cta .page-resources-32win-popular-games__section-title::after {
  background-color: #000080;
}

.page-resources-32win-popular-games__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-resources-32win-popular-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-32win-popular-games__section--cta .page-resources-32win-popular-games__button--primary {
  background-color: #000080;
  color: #FFD700;
}

.page-resources-32win-popular-games__section--cta .page-resources-32win-popular-games__button--primary:hover {
  background-color: #1a1a94;
}

.page-resources-32win-popular-games__section--cta .page-resources-32win-popular-games__button--secondary {
  background-color: transparent;
  color: #000080;
  border-color: #000080;
}

.page-resources-32win-popular-games__section--cta .page-resources-32win-popular-games__button--secondary:hover {
  background-color: #000080;
  color: #FFD700;
}

.page-resources-32win-popular-games__faq-list {
  margin-top: 40px;
}

.page-resources-32win-popular-games__faq-item {
  background-color: #1a1a4a;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-32win-popular-games__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-resources-32win-popular-games__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.8;
  margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-32win-popular-games__main-title {
    font-size: 2.8em;
  }
  .page-resources-32win-popular-games__section-title {
    font-size: 2em;
  }
  .page-resources-32win-popular-games__game-category {
    flex-direction: column;
    text-align: center;
  }
  .page-resources-32win-popular-games__game-category--reverse {
    flex-direction: column;
  }
  .page-resources-32win-popular-games__game-image-wrapper {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-resources-32win-popular-games__hero-section {
    padding: 60px 0;
  }
  .page-resources-32win-popular-games__main-title {
    font-size: 2.2em;
  }
  .page-resources-32win-popular-games__hero-description {
    font-size: 1em;
  }
  .page-resources-32win-popular-games__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-32win-popular-games__button {
    width: 80%;
    max-width: 300px;
  }
  .page-resources-32win-popular-games__section {
    padding: 40px 0;
  }
  .page-resources-32win-popular-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-32win-popular-games__features-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-32win-popular-games__tips-list {
    grid-template-columns: 1fr;
  }
  .page-resources-32win-popular-games__game-title {
    font-size: 1.5em;
  }
  .page-resources-32win-popular-games__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-resources-32win-popular-games__main-title {
    font-size: 1.8em;
  }
  .page-resources-32win-popular-games__button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-resources-32win-popular-games__section-title {
    font-size: 1.5em;
  }
  .page-resources-32win-popular-games__game-category {
    padding: 20px;
  }
  .page-resources-32win-popular-games__faq-question {
    font-size: 1.2em;
  }
}