/* style/entertainment-platform-electronic-games.css */

/* Biến màu sắc */
:root {
  --page-entertainment-platform-electronic-games-primary-color: #1A2E4C; /* Deep Blue */
  --page-entertainment-platform-electronic-games-secondary-color: #FFD700; /* Gold */
  --page-entertainment-platform-electronic-games-text-light: #FFFFFF;
  --page-entertainment-platform-electronic-games-text-dark: #1A2E4C;
  --page-entertainment-platform-electronic-games-text-accent: #FFD700;
  --page-entertainment-platform-electronic-games-background-light: #F8F8F8; /* Gần trắng */
  --page-entertainment-platform-electronic-games-background-dark: #1A2E4C;
  --page-entertainment-platform-electronic-games-background-gold-light: #FFF8E1; /* Rất nhạt của vàng */
  --page-entertainment-platform-electronic-games-border-color: #3A4F6A;
}

.page-entertainment-platform-electronic-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-entertainment-platform-electronic-games-text-dark); /* Default text color on light backgrounds */
  background-color: var(--page-entertainment-platform-electronic-games-background-light);
}

.page-entertainment-platform-electronic-games__hero {
  position: relative;
  background-color: var(--page-entertainment-platform-electronic-games-background-dark);
  color: var(--page-entertainment-platform-electronic-games-text-light);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
}

.page-entertainment-platform-electronic-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Overlay effect */
  z-index: 1;
}

.page-entertainment-platform-electronic-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-entertainment-platform-electronic-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-entertainment-platform-electronic-games-text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-entertainment-platform-electronic-games__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--page-entertainment-platform-electronic-games-text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-entertainment-platform-electronic-games__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-entertainment-platform-electronic-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-entertainment-platform-electronic-games__btn--primary {
  background-color: var(--page-entertainment-platform-electronic-games-secondary-color);
  color: var(--page-entertainment-platform-electronic-games-primary-color);
  border: 2px solid var(--page-entertainment-platform-electronic-games-secondary-color);
}

.page-entertainment-platform-electronic-games__btn--primary:hover {
  background-color: #E6C200; /* Darker gold */
  border-color: #E6C200;
}

.page-entertainment-platform-electronic-games__btn--secondary {
  background-color: transparent;
  color: var(--page-entertainment-platform-electronic-games-text-light);
  border: 2px solid var(--page-entertainment-platform-electronic-games-text-light);
}

.page-entertainment-platform-electronic-games__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--page-entertainment-platform-electronic-games-secondary-color);
  border-color: var(--page-entertainment-platform-electronic-games-secondary-color);
}

.page-entertainment-platform-electronic-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-entertainment-platform-electronic-games__section:nth-of-type(even) {
  background-color: var(--page-entertainment-platform-electronic-games-background-gold-light);
}

.page-entertainment-platform-electronic-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-entertainment-platform-electronic-games__section-title {
  font-size: 2.5em;
  color: var(--page-entertainment-platform-electronic-games-primary-color);
  margin-bottom: 25px;
  font-weight: bold;
}

.page-entertainment-platform-electronic-games__section-description {
  font-size: 1.1em;
  color: #333;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
}

.page-entertainment-platform-electronic-games__section-description strong {
  color: var(--page-entertainment-platform-electronic-games-primary-color);
}

/* Game Grid Section */
.page-entertainment-platform-electronic-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-entertainment-platform-electronic-games__game-item {
  background-color: var(--page-entertainment-platform-electronic-games-text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-entertainment-platform-electronic-games__game-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-entertainment-platform-electronic-games__game-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-entertainment-platform-electronic-games__game-title {
  font-size: 1.8em;
  color: var(--page-entertainment-platform-electronic-games-primary-color);
  margin-bottom: 10px;
}

.page-entertainment-platform-electronic-games__game-text {
  font-size: 1em;
  color: #555;
}

/* Providers Section */
.page-entertainment-platform-electronic-games__provider-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-entertainment-platform-electronic-games__provider-list li {
  background-color: var(--page-entertainment-platform-electronic-games-text-light);
  border-left: 5px solid var(--page-entertainment-platform-electronic-games-secondary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
}

.page-entertainment-platform-electronic-games__provider-list li strong {
  color: var(--page-entertainment-platform-electronic-games-primary-color);
}

/* Promotions Section */
.page-entertainment-platform-electronic-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-entertainment-platform-electronic-games__promo-item {
  background-color: var(--page-entertainment-platform-electronic-games-text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-entertainment-platform-electronic-games__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-entertainment-platform-electronic-games__promo-image {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-entertainment-platform-electronic-games__promo-title {
  font-size: 1.6em;
  color: var(--page-entertainment-platform-electronic-games-secondary-color);
  margin-bottom: 10px;
}

.page-entertainment-platform-electronic-games__promo-text {
  font-size: 1em;
  color: #555;
}

.page-entertainment-platform-electronic-games__cta-center {
  margin-top: 40px;
}

/* App Section */
.page-entertainment-platform-electronic-games__app-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-entertainment-platform-electronic-games__app-content {
  max-width: 600px;
}

.page-entertainment-platform-electronic-games__app-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-entertainment-platform-electronic-games__app-features li {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-entertainment-platform-electronic-games__app-features li::before {
  content: '✔';
  color: var(--page-entertainment-platform-electronic-games-secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-entertainment-platform-electronic-games__app-image-wrapper {
  flex-shrink: 0;
  width: 100%;
  max-width: 400px;
}

.page-entertainment-platform-electronic-games__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Call to Action Section */
.page-entertainment-platform-electronic-games__section--cta {
  background-color: var(--page-entertainment-platform-electronic-games-primary-color);
  color: var(--page-entertainment-platform-electronic-games-text-light);
  padding: 80px 0;
}

.page-entertainment-platform-electronic-games__cta-title {
  font-size: 2.8em;
  color: var(--page-entertainment-platform-electronic-games-text-light);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-entertainment-platform-electronic-games__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-entertainment-platform-electronic-games__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* FAQ Section */
.page-entertainment-platform-electronic-games__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-entertainment-platform-electronic-games__faq-item {
  background-color: var(--page-entertainment-platform-electronic-games-text-light);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 25px;
}

.page-entertainment-platform-electronic-games__faq-question {
  font-size: 1.4em;
  color: var(--page-entertainment-platform-electronic-games-primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-entertainment-platform-electronic-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: var(--page-entertainment-platform-electronic-games-secondary-color);
}

.page-entertainment-platform-electronic-games__faq-question.active::after {
  content: '-';
}

.page-entertainment-platform-electronic-games__faq-answer {
  font-size: 1em;
  color: #555;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-entertainment-platform-electronic-games__faq-answer.active {
  display: block;
}

/* About Section */
.page-entertainment-platform-electronic-games__section--about strong {
  color: var(--page-entertainment-platform-electronic-games-primary-color);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-entertainment-platform-electronic-games__hero-title {
    font-size: 3em;
  }
  .page-entertainment-platform-electronic-games__section-title {
    font-size: 2em;
  }
  .page-entertainment-platform-electronic-games__cta-title {
    font-size: 2.2em;
  }
  .page-entertainment-platform-electronic-games__app-layout {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-entertainment-platform-electronic-games__hero {
    padding: 60px 0;
  }
  .page-entertainment-platform-electronic-games__hero-title {
    font-size: 2.5em;
  }
  .page-entertainment-platform-electronic-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-entertainment-platform-electronic-games__hero-actions,
  .page-entertainment-platform-electronic-games__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-entertainment-platform-electronic-games__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-entertainment-platform-electronic-games__section {
    padding: 40px 0;
  }
  .page-entertainment-platform-electronic-games__section-title {
    font-size: 1.8em;
  }
  .page-entertainment-platform-electronic-games__section-description {
    font-size: 1em;
  }
  .page-entertainment-platform-electronic-games__game-grid,
  .page-entertainment-platform-electronic-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-entertainment-platform-electronic-games__cta-title {
    font-size: 1.8em;
  }
  .page-entertainment-platform-electronic-games__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-entertainment-platform-electronic-games__hero-title {
    font-size: 2em;
  }
  .page-entertainment-platform-electronic-games__hero-subtitle {
    font-size: 0.95em;
  }
  .page-entertainment-platform-electronic-games__section-title {
    font-size: 1.5em;
  }
  .page-entertainment-platform-electronic-games__cta-title {
    font-size: 1.6em;
  }
}