.page-e-games-card-games-collection {
  --primary-color: #0A192F;
  --secondary-color: #E0B400;
  --text-on-dark: #FFFFFF;
  --text-on-light: #0A192F;
  --accent-text: #E0B400;
  --background-light: #F0F2F5; /* Light background for contrast */
  --background-dark: #0A192F;
  --button-hover-dark: #06101D;
  --button-hover-light: #CC9E00;
  font-family: 'Arial', sans-serif;
  color: var(--text-on-light);
  line-height: 1.6;
}

.page-e-games-card-games-collection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-e-games-card-games-collection__hero-section {
  background: linear-gradient(135deg, var(--background-dark) 0%, #1A304C 100%);
  color: var(--text-on-dark);
  padding: 80px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-e-games-card-games-collection__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-e-games-card-games-collection__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-e-games-card-games-collection__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.5;
  opacity: 0.9;
}

.page-e-games-card-games-collection__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 0;
}

.page-e-games-card-games-collection__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.page-e-games-card-games-collection__section-title {
  font-size: 2.8em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.page-e-games-card-games-collection__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-e-games-card-games-collection__intro-section {
  background-color: var(--background-light);
  padding: 60px 0;
}

.page-e-games-card-games-collection__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333;
}

.page-e-games-card-games-collection__game-categories {
  padding: 80px 0;
  background-color: var(--text-on-dark);
}

.page-e-games-card-games-collection__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-e-games-card-games-collection__game-card {
  background-color: var(--background-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 25px;
}

.page-e-games-card-games-collection__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-e-games-card-games-collection__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid var(--secondary-color);
}

.page-e-games-card-games-collection__game-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin: 25px 15px 15px;
  font-weight: 600;
}

.page-e-games-card-games-collection__game-description {
  font-size: 1em;
  color: #555;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-e-games-card-games-collection__why-choose-us {
  background-color: var(--background-dark);
  color: var(--text-on-dark);
  padding: 80px 0;
}

.page-e-games-card-games-collection__why-choose-us .page-e-games-card-games-collection__section-title {
  color: var(--text-on-dark);
}

.page-e-games-card-games-collection__why-choose-us .page-e-games-card-games-collection__section-title::after {
  background-color: var(--secondary-color);
}

.page-e-games-card-games-collection__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-e-games-card-games-collection__feature-item {
  background-color: #1A304C; /* Slightly lighter dark for feature cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-e-games-card-games-collection__feature-item:hover {
  transform: translateY(-8px);
}

.page-e-games-card-games-collection__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(90%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-e-games-card-games-collection__feature-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-e-games-card-games-collection__feature-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.85);
}

.page-e-games-card-games-collection__cta-section {
  background-color: var(--background-light);
  padding: 80px 0;
  text-align: center;
}

.page-e-games-card-games-collection__cta-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-e-games-card-games-collection__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-e-games-card-games-collection__btn--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-e-games-card-games-collection__btn--primary:hover {
  background-color: var(--button-hover-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-e-games-card-games-collection__btn--secondary {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
}

.page-e-games-card-games-collection__btn--secondary:hover {
  background-color: var(--button-hover-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-e-games-card-games-collection__btn--tertiary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-e-games-card-games-collection__btn--tertiary:hover {
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-e-games-card-games-collection__additional-info {
  padding: 80px 0;
  background-color: var(--text-on-dark);
}

.page-e-games-card-games-collection__faq {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-e-games-card-games-collection__faq-item {
  background-color: var(--background-light);
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-e-games-card-games-collection__faq-question {
  font-size: 1.3em;
  color: var(--primary-color);
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F8F8F8;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}

.page-e-games-card-games-collection__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-e-games-card-games-collection__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-e-games-card-games-collection__faq-answer {
  font-size: 1em;
  color: #444;
  padding: 0 25px 20px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-e-games-card-games-collection__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-e-games-card-games-collection .highlight {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-e-games-card-games-collection__hero-title {
    font-size: 2.8em;
  }

  .page-e-games-card-games-collection__hero-subtitle {
    font-size: 1.2em;
  }

  .page-e-games-card-games-collection__section-title {
    font-size: 2.2em;
  }

  .page-e-games-card-games-collection__game-grid,
  .page-e-games-card-games-collection__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-e-games-card-games-collection__hero-section {
    padding: 60px 0 40px;
  }

  .page-e-games-card-games-collection__hero-title {
    font-size: 2.2em;
  }

  .page-e-games-card-games-collection__hero-subtitle {
    font-size: 1em;
  }

  .page-e-games-card-games-collection__section-title {
    font-size: 1.8em;
  }

  .page-e-games-card-games-collection__intro-section,
  .page-e-games-card-games-collection__game-categories,
  .page-e-games-card-games-collection__why-choose-us,
  .page-e-games-card-games-collection__cta-section,
  .page-e-games-card-games-collection__additional-info {
    padding: 40px 0;
  }

  .page-e-games-card-games-collection__game-card,
  .page-e-games-card-games-collection__feature-item {
    margin-bottom: 20px;
  }

  .page-e-games-card-games-collection__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-e-games-card-games-collection__btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-e-games-card-games-collection__hero-title {
    font-size: 1.8em;
  }

  .page-e-games-card-games-collection__hero-subtitle {
    font-size: 0.9em;
  }

  .page-e-games-card-games-collection__game-grid,
  .page-e-games-card-games-collection__features-grid {
    grid-template-columns: 1fr;
  }

  .page-e-games-card-games-collection__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-e-games-card-games-collection__faq-answer {
    padding: 0 20px 15px;
  }
}