/* style/pg66-reviews-game-variety.css */

/* Biến CSS */
:root {
  --page-pg66-reviews-game-variety__primary-color: #0A2463;
  --page-pg66-reviews-game-variety__accent-color: #FFD700;
  --page-pg66-reviews-game-variety__text-color-light: #F8F8F8; /* Màu văn bản trên nền tối */
  --page-pg66-reviews-game-variety__text-color-dark: #333333; /* Màu văn bản trên nền sáng */
  --page-pg66-reviews-game-variety__background-light: #F0F2F5;
  --page-pg66-reviews-game-variety__background-dark: #1A3C7E; /* Biến thể tối của primary */
  --page-pg66-reviews-game-variety__border-color: #E0E0E0;
}

.page-pg66-reviews-game-variety {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-pg66-reviews-game-variety__text-color-dark);
  background-color: var(--page-pg66-reviews-game-variety__background-light);
}

.page-pg66-reviews-game-variety__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-pg66-reviews-game-variety__hero-section {
  background: linear-gradient(135deg, var(--page-pg66-reviews-game-variety__primary-color) 0%, #001A4D 100%);
  color: var(--page-pg66-reviews-game-variety__text-color-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-pg66-reviews-game-variety__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--page-pg66-reviews-game-variety__accent-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-pg66-reviews-game-variety__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA Button */
.page-pg66-reviews-game-variety__cta-button {
  display: inline-block;
  background-color: var(--page-pg66-reviews-game-variety__accent-color);
  color: var(--page-pg66-reviews-game-variety__primary-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-pg66-reviews-game-variety__cta-button:hover {
  background-color: #FFC107; /* Darker gold */
  transform: translateY(-3px);
}

.page-pg66-reviews-game-variety__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 30px;
}

.page-pg66-reviews-game-variety__cta-button--large {
  padding: 20px 40px;
  font-size: 1.2em;
  border-radius: 60px;
}

/* Content Section */
.page-pg66-reviews-game-variety__content-section {
  padding: 60px 0;
  background-color: var(--page-pg66-reviews-game-variety__background-light);
}

.page-pg66-reviews-game-variety__section-title {
  font-size: 2.5em;
  color: var(--page-pg66-reviews-game-variety__primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-pg66-reviews-game-variety__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-pg66-reviews-game-variety__accent-color);
  border-radius: 2px;
}

.page-pg66-reviews-game-variety__intro-text,
.page-pg66-reviews-game-variety__outro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Game Category */
.page-pg66-reviews-game-variety__game-category {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-pg66-reviews-game-variety__category-title {
  font-size: 2em;
  color: var(--page-pg66-reviews-game-variety__primary-color);
  margin-bottom: 20px;
}

.page-pg66-reviews-game-variety__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-pg66-reviews-game-variety__game-category p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: var(--page-pg66-reviews-game-variety__text-color-dark);
}

.page-pg66-reviews-game-variety__game-category ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
  max-width: 700px;
}

.page-pg66-reviews-game-variety__game-category ul li {
  background-color: #F8F9FA;
  border-left: 4px solid var(--page-pg66-reviews-game-variety__accent-color);
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1em;
  color: var(--page-pg66-reviews-game-variety__text-color-dark);
}

.page-pg66-reviews-game-variety__game-category ul li strong {
  color: var(--page-pg66-reviews-game-variety__primary-color);
}

/* Feature Section */
.page-pg66-reviews-game-variety__feature {
  background-color: var(--page-pg66-reviews-game-variety__background-dark);
  color: var(--page-pg66-reviews-game-variety__text-color-light);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-pg66-reviews-game-variety__feature-title {
  font-size: 1.8em;
  color: var(--page-pg66-reviews-game-variety__accent-color);
  margin-bottom: 15px;
}

.page-pg66-reviews-game-variety__feature p {
  font-size: 1.05em;
  color: rgba(255, 255, 255, 0.9);
}

.page-pg66-reviews-game-variety__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Promo Section */
.page-pg66-reviews-game-variety__main-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Step-by-step */
.page-pg66-reviews-game-variety__step-by-step {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 25px;
  text-align: center;
}

.page-pg66-reviews-game-variety__step-title {
  font-size: 1.6em;
  color: var(--page-pg66-reviews-game-variety__primary-color);
  margin-bottom: 15px;
}

.page-pg66-reviews-game-variety__step-by-step p {
  font-size: 1em;
  color: var(--page-pg66-reviews-game-variety__text-color-dark);
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-pg66-reviews-game-variety__hero-title {
    font-size: 2.5em;
  }

  .page-pg66-reviews-game-variety__hero-description {
    font-size: 1.1em;
  }

  .page-pg66-reviews-game-variety__section-title {
    font-size: 2em;
  }

  .page-pg66-reviews-game-variety__category-title {
    font-size: 1.8em;
  }

  .page-pg66-reviews-game-variety__feature-title,
  .page-pg66-reviews-game-variety__step-title {
    font-size: 1.5em;
  }

  .page-pg66-reviews-game-variety__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  
  .page-pg66-reviews-game-variety__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-pg66-reviews-game-variety__hero-title {
    font-size: 2em;
  }

  .page-pg66-reviews-game-variety__hero-description {
    font-size: 1em;
  }

  .page-pg66-reviews-game-variety__section-title {
    font-size: 1.8em;
  }

  .page-pg66-reviews-game-variety__category-title {
    font-size: 1.5em;
  }

  .page-pg66-reviews-game-variety__game-category,
  .page-pg66-reviews-game-variety__feature,
  .page-pg66-reviews-game-variety__step-by-step {
    padding: 20px;
  }

  .page-pg66-reviews-game-variety__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}