.page-index-popular-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f7f6;
}

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

.page-index-popular-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-popular-games__section:nth-child(even) {
  background-color: #e9ecef;
}

.page-index-popular-games__section-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-index-popular-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-popular-games__section-intro {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-popular-games__section-intro a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-index-popular-games__section-intro a:hover {
  text-decoration: underline;
}

.page-index-popular-games__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #3a5c96 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-popular-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,blue_gold]') no-repeat center center / cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-popular-games__hero-section > .page-index-popular-games__container {
  position: relative;
  z-index: 1;
}

.page-index-popular-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
}

.page-index-popular-games__hero-title .highlight {
  color: #FFD700;
}

.page-index-popular-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-popular-games__hero-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-popular-games__hero-description a:hover {
  text-decoration: underline;
}

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

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

.page-index-popular-games__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
}

.page-index-popular-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-popular-games__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-popular-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-index-popular-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
}

.page-index-popular-games__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-index-popular-games__hero-image {
  width: 100%;
  max-width: 800px;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-index-popular-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-popular-games__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index-popular-games__feature-item:hover {
  transform: translateY(-5px);
}

.page-index-popular-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-index-popular-games__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-index-popular-games__feature-description {
  color: #666;
}

.page-index-popular-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-popular-games__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-popular-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-index-popular-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-popular-games__game-card h3 {
  padding: 15px 20px 0;
  font-size: 1.3em;
  color: #0A2463;
}

.page-index-popular-games__game-card h3 a {
  color: #0A2463;
  text-decoration: none;
}

.page-index-popular-games__game-card h3 a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-index-popular-games__game-description {
  padding: 0 20px 15px;
  color: #666;
  flex-grow: 1;
}

.page-index-popular-games__game-card .page-index-popular-games__btn {
  margin: 0 20px 20px;
  align-self: flex-start;
}

.page-index-popular-games__guide-section .page-index-popular-games__container {
  text-align: left;
}

.page-index-popular-games__guide-section .page-index-popular-games__section-title,
.page-index-popular-games__guide-section .page-index-popular-games__section-intro {
  text-align: center;
}

.page-index-popular-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-index-popular-games__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-index-popular-games__step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-index-popular-games__step-item p {
  color: #666;
  margin-bottom: 20px;
}

.page-index-popular-games__step-item p a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-index-popular-games__step-item p a:hover {
  text-decoration: underline;
}

.page-index-popular-games__step-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-popular-games__app-download {
  background: linear-gradient(135deg, #0A2463, #3a5c96);
  color: #fff;
  padding: 80px 0;
}

.page-index-popular-games__app-download .page-index-popular-games__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  text-align: left;
}

.page-index-popular-games__app-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-index-popular-games__app-download .page-index-popular-games__section-title {
  color: #fff;
  text-align: left;
}

.page-index-popular-games__app-download .page-index-popular-games__section-title::after {
  background-color: #FFD700;
  left: 0;
  transform: translateX(0);
}

.page-index-popular-games__app-download .page-index-popular-games__section-intro {
  color: #e0e0e0;
  text-align: left;
  margin-bottom: 30px;
}

.page-index-popular-games__app-download .page-index-popular-games__section-intro a {
  color: #FFD700;
}

.page-index-popular-games__app-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-popular-games__app-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.1em;
}

.page-index-popular-games__app-image {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-popular-games__faq {
  text-align: left;
}

.page-index-popular-games__faq .page-index-popular-games__section-title,
.page-index-popular-games__faq .page-index-popular-games__section-intro {
  text-align: center;
}

.page-index-popular-games__faq-items {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-popular-games__faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-popular-games__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-index-popular-games__faq-question a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-index-popular-games__faq-question a:hover {
  text-decoration: underline;
}

.page-index-popular-games__faq-answer {
  color: #555;
  line-height: 1.7;
}

.page-index-popular-games__faq-answer a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-index-popular-games__faq-answer a:hover {
  text-decoration: underline;
}

.page-index-popular-games__cta-final-section {
  background-color: #0A2463;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-index-popular-games__cta-final-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
}

.page-index-popular-games__cta-final-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-popular-games__cta-final-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-popular-games__cta-final-description a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-popular-games__hero-title {
    font-size: 2.8em;
  }

  .page-index-popular-games__hero-description {
    font-size: 1.1em;
  }

  .page-index-popular-games__section-title {
    font-size: 2em;
  }

  .page-index-popular-games__app-download .page-index-popular-games__container {
    flex-direction: column;
    text-align: center;
  }

  .page-index-popular-games__app-download .page-index-popular-games__section-title,
  .page-index-popular-games__app-download .page-index-popular-games__section-intro {
    text-align: center;
  }

  .page-index-popular-games__app-download .page-index-popular-games__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-index-popular-games__app-features li {
    background-position: center left;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-index-popular-games__hero-title {
    font-size: 2.2em;
  }

  .page-index-popular-games__hero-description {
    font-size: 1em;
  }

  .page-index-popular-games__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-popular-games__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-index-popular-games__section {
    padding: 40px 0;
  }

  .page-index-popular-games__section-title {
    font-size: 1.8em;
  }

  .page-index-popular-games__feature-item,
  .page-index-popular-games__game-card,
  .page-index-popular-games__step-item {
    padding: 20px;
  }

  .page-index-popular-games__cta-final-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-index-popular-games__hero-title {
    font-size: 1.8em;
  }

  .page-index-popular-games__section-title {
    font-size: 1.6em;
  }

  .page-index-popular-games__feature-title,
  .page-index-popular-games__game-title,
  .page-index-popular-games__step-title,
  .page-index-popular-games__faq-question {
    font-size: 1.2em;
  }

  .page-index-popular-games__btn--large {
    font-size: 1em;
    padding: 15px 30px;
  }
}