/* style/index-featured-games-recommendation.css */
.page-index-featured-games-recommendation {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-index-featured-games-recommendation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-featured-games-recommendation-hero {
  background: linear-gradient(135deg, #003366, #1a4f80);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-featured-games-recommendation-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gold,vivu88_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-featured-games-recommendation-hero .page-index-featured-games-recommendation-container {
  position: relative;
  z-index: 1;
}

.page-index-featured-games-recommendation-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-index-featured-games-recommendation-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-featured-games-recommendation-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-featured-games-recommendation-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-featured-games-recommendation-btn-primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-index-featured-games-recommendation-btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-index-featured-games-recommendation-btn-secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-index-featured-games-recommendation-btn-secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-index-featured-games-recommendation-section {
  padding: 60px 0;
  text-align: center;
}

.page-index-featured-games-recommendation-section:nth-of-type(odd) {
  background-color: #f8f8f8;
}

.page-index-featured-games-recommendation-section:nth-of-type(even) {
  background-color: #fff;
}

.page-index-featured-games-recommendation-section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-index-featured-games-recommendation-section-description {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

.page-index-featured-games-recommendation-game-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-featured-games-recommendation-game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-featured-games-recommendation-game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index-featured-games-recommendation-game-card h3 {
  font-size: 1.5em;
  color: #003366;
  margin: 20px 20px 10px 20px;
}

.page-index-featured-games-recommendation-game-card p {
  color: #666;
  font-size: 0.95em;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-index-featured-games-recommendation-btn-play {
  background-color: #FFCC00;
  color: #003366;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  margin: 0 20px 20px 20px;
  align-self: flex-start;
}

.page-index-featured-games-recommendation-btn-play:hover {
  background-color: #e6b800;
}

.page-index-featured-games-recommendation-why-vivu88 {
  background-color: #003366;
  color: #fff;
}

.page-index-featured-games-recommendation-why-vivu88 .page-index-featured-games-recommendation-section-title {
  color: #FFCC00;
}

.page-index-featured-games-recommendation-why-vivu88 .page-index-featured-games-recommendation-section-description {
  color: #e0e0e0;
}

.page-index-featured-games-recommendation-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-featured-games-recommendation-feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-index-featured-games-recommendation-feature-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-featured-games-recommendation-feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
}

.page-index-featured-games-recommendation-feature-title {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-index-featured-games-recommendation-feature-description {
  color: #d0d0d0;
  font-size: 1em;
}

.page-index-featured-games-recommendation-cta-center {
  margin-top: 60px;
}

.page-index-featured-games-recommendation-app-download {
  background-color: #f0f5f9;
}

.page-index-featured-games-recommendation-app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
  flex-wrap: wrap;
}

.page-index-featured-games-recommendation-app-text {
  flex: 1;
  min-width: 300px;
}

.page-index-featured-games-recommendation-app-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-featured-games-recommendation-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-index-featured-games-recommendation-app-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-index-featured-games-recommendation-app-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-index-featured-games-recommendation-app-features li img {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  filter: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(1597%) hue-rotate(359deg) brightness(102%) contrast(101%); /* Gold filter */
}

.page-index-featured-games-recommendation-faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-featured-games-recommendation-faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-index-featured-games-recommendation-faq-answer {
  font-size: 1em;
  color: #555;
  margin-bottom: 0;
}

.page-index-featured-games-recommendation-final-cta {
  background: linear-gradient(135deg, #FFCC00, #e6b800);
  color: #003366;
  padding: 80px 0;
}

.page-index-featured-games-recommendation-final-cta .page-index-featured-games-recommendation-section-title {
  color: #003366;
}

.page-index-featured-games-recommendation-final-cta .page-index-featured-games-recommendation-section-title::after {
  background-color: #003366;
}

.page-index-featured-games-recommendation-final-cta .page-index-featured-games-recommendation-section-description {
  color: #333;
  font-weight: 500;
}

.page-index-featured-games-recommendation-btn-lg {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 40px;
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #003366;
}

.page-index-featured-games-recommendation-btn-lg:hover {
  background-color: #002244;
  border-color: #002244;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-featured-games-recommendation-hero {
    padding: 80px 0;
  }

  .page-index-featured-games-recommendation-title {
    font-size: 2.8em;
  }

  .page-index-featured-games-recommendation-subtitle {
    font-size: 1.1em;
  }

  .page-index-featured-games-recommendation-section-title {
    font-size: 2em;
  }

  .page-index-featured-games-recommendation-app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-index-featured-games-recommendation-app-text {
    order: 2;
  }

  .page-index-featured-games-recommendation-app-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
  
  .page-index-featured-games-recommendation-app-features {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-index-featured-games-recommendation-hero {
    padding: 60px 0;
  }

  .page-index-featured-games-recommendation-title {
    font-size: 2.2em;
  }

  .page-index-featured-games-recommendation-subtitle {
    font-size: 1em;
  }

  .page-index-featured-games-recommendation-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-featured-games-recommendation-section-title {
    font-size: 1.8em;
  }

  .page-index-featured-games-recommendation-game-grid,
  .page-index-featured-games-recommendation-features-grid {
    grid-template-columns: 1fr;
  }

  .page-index-featured-games-recommendation-app-image {
    max-width: 80%;
  }

  .page-index-featured-games-recommendation-btn-lg {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

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

  .page-index-featured-games-recommendation-subtitle {
    font-size: 0.9em;
  }

  .page-index-featured-games-recommendation-section-title {
    font-size: 1.5em;
  }

  .page-index-featured-games-recommendation-cta-group {
    flex-direction: column;
    gap: 15px;
  }
}