/* style/games-card-games-introduction.css */
.page-games-card-games-introduction {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-games-card-games-introduction__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-games-card-games-introduction__hero-content {
  z-index: 1;
  max-width: 900px;
}

.page-games-card-games-introduction__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-games-card-games-introduction__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-games-card-games-introduction__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-games-card-games-introduction__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  overflow: hidden;
}

.page-games-card-games-introduction__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-games-card-games-introduction__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-games-card-games-introduction__btn--primary {
  background-color: #ffc107;
  color: #333;
}

.page-games-card-games-introduction__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-games-card-games-introduction__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffc107;
}

.page-games-card-games-introduction__btn--secondary:hover {
  background-color: #ffc107;
  color: #333;
  transform: translateY(-2px);
}

.page-games-card-games-introduction__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-games-card-games-introduction__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-games-card-games-introduction__section {
  padding: 60px 0;
}

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

.page-games-card-games-introduction__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-games-card-games-introduction__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-games-card-games-introduction__features-grid,
.page-games-card-games-introduction__game-cards-grid,
.page-games-card-games-introduction__offer-cards-grid,
.page-games-card-games-introduction__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-games-card-games-introduction__feature-item,
.page-games-card-games-introduction__game-card,
.page-games-card-games-introduction__offer-card,
.page-games-card-games-introduction__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-games-card-games-introduction__feature-item:hover,
.page-games-card-games-introduction__game-card:hover,
.page-games-card-games-introduction__offer-card:hover,
.page-games-card-games-introduction__step-item:hover {
  transform: translateY(-8px);
}

.page-games-card-games-introduction__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.page-games-card-games-introduction__feature-title,
.page-games-card-games-introduction__game-card-title,
.page-games-card-games-introduction__offer-card-title,
.page-games-card-games-introduction__step-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-games-card-games-introduction__feature-description,
.page-games-card-games-introduction__game-card-description,
.page-games-card-games-introduction__offer-card-description,
.page-games-card-games-introduction__step-description {
  font-size: 1em;
  color: #666;
}

.page-games-card-games-introduction__game-card-image,
.page-games-card-games-introduction__offer-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-games-card-games-introduction__step-number {
  width: 50px;
  height: 50px;
  background-color: #ffc107;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-games-card-games-introduction__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-games-card-games-introduction__section--faq {
  background-color: #e9ecef;
}

.page-games-card-games-introduction__faq-list {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-games-card-games-introduction__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.page-games-card-games-introduction__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-games-card-games-introduction__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-games-card-games-introduction__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-games-card-games-introduction__faq-answer {
  font-size: 1em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-games-card-games-introduction__faq-answer.active {
  display: block;
}

.page-games-card-games-introduction__cta-final {
  background: linear-gradient(45deg, #007bff, #ffc107);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-games-card-games-introduction__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-games-card-games-introduction__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-games-card-games-introduction .highlight-keyword {
  color: #ffc107;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-games-card-games-introduction__hero-title {
    font-size: 2.5em;
  }
  .page-games-card-games-introduction__hero-subtitle {
    font-size: 1.1em;
  }
  .page-games-card-games-introduction__section-title {
    font-size: 2em;
  }
  .page-games-card-games-introduction__features-grid,
  .page-games-card-games-introduction__game-cards-grid,
  .page-games-card-games-introduction__offer-cards-grid,
  .page-games-card-games-introduction__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-games-card-games-introduction__hero {
    padding: 60px 15px;
  }
  .page-games-card-games-introduction__hero-title {
    font-size: 2em;
  }
  .page-games-card-games-introduction__hero-subtitle {
    font-size: 1em;
  }
  .page-games-card-games-introduction__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-games-card-games-introduction__btn {
    width: 100%;
    max-width: 250px;
  }
  .page-games-card-games-introduction__section {
    padding: 40px 0;
  }
  .page-games-card-games-introduction__section-title {
    font-size: 1.8em;
  }
  .page-games-card-games-introduction__section-description {
    font-size: 0.95em;
  }
  .page-games-card-games-introduction__cta-title {
    font-size: 2em;
  }
  .page-games-card-games-introduction__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-games-card-games-introduction__hero-title {
    font-size: 1.8em;
  }
  .page-games-card-games-introduction__section-title {
    font-size: 1.6em;
  }
  .page-games-card-games-introduction__features-grid,
  .page-games-card-games-introduction__game-cards-grid,
  .page-games-card-games-introduction__offer-cards-grid,
  .page-games-card-games-introduction__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-games-card-games-introduction__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}