.page-game-types-card-games-features {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light gray for general text on dark background */
  background-color: #1A1A1A; /* Dark background */
  line-height: 1.6;
}

.page-game-types-card-games-features__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Dark red to gold */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-game-types-card-games-features__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  opacity: 0.3;
  animation: page-game-types-card-games-features__hero-pulse 10s infinite alternate;
}

@keyframes page-game-types-card-games-features__hero-pulse {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.5; }
}

.page-game-types-card-games-features__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-game-types-card-games-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF; /* White for contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-card-games-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #EEEEEE;
}

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

.page-game-types-card-games-features__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;
  cursor: pointer;
  border: none;
}

.page-game-types-card-games-features__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types-card-games-features__btn--primary:hover {
  background-color: #FFC107; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-types-card-games-features__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-game-types-card-games-features__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-game-types-card-games-features__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.page-game-types-card-games-features__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-types-card-games-features__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-game-types-card-games-features__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-game-types-card-games-features__section-title .highlight {
  color: #FFD700;
}

.page-game-types-card-games-features__why-choose {
  background-color: #222222;
}

.page-game-types-card-games-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-game-types-card-games-features__feature-item {
  background-color: #2C2C2C;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-card-games-features__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-types-card-games-features__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-types-card-games-features__feature-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-game-types-card-games-features__feature-description {
  font-size: 1em;
  color: #CCCCCC;
}

.page-game-types-card-games-features__popular-games {
  background-color: #1A1A1A;
}

.page-game-types-card-games-features__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-types-card-games-features__game-card {
  background-color: #2C2C2C;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-card-games-features__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-types-card-games-features__game-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-game-types-card-games-features__game-name {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
}

.page-game-types-card-games-features__game-description {
  font-size: 0.95em;
  color: #CCCCCC;
}

.page-game-types-card-games-features__benefits {
  background-color: #222222;
}

.page-game-types-card-games-features__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-game-types-card-games-features__benefit-item {
  background-color: #2C2C2C;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-card-games-features__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-types-card-games-features__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 4px #8B0000);
}

.page-game-types-card-games-features__benefit-title {
  font-size: 1.7em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-game-types-card-games-features__benefit-description {
  font-size: 1em;
  color: #CCCCCC;
}

.page-game-types-card-games-features__how-to-join {
  background-color: #1A1A1A;
}

.page-game-types-card-games-features__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-game-types-card-games-features__step-item {
  background-color: #2C2C2C;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-card-games-features__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-types-card-games-features__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-game-types-card-games-features__step-description {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-game-types-card-games-features__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-game-types-card-games-features__responsible-gaming {
  background-color: #222222;
}

.page-game-types-card-games-features__responsible-gaming-text {
  font-size: 1.1em;
  color: #CCCCCC;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-card-games-features__cta {
  background: linear-gradient(135deg, #8B0000, #FFD700);
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.page-game-types-card-games-features__cta-content {
  max-width: 900px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.page-game-types-card-games-features__cta-title {
  font-size: 3em;
  color: #FFFFFF; /* White */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-card-games-features__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #EEEEEE;
}

.page-game-types-card-games-features__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-game-types-card-games-features__cta-image-wrapper {
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.page-game-types-card-games-features__cta-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-types-card-games-features .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-game-types-card-games-features__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-game-types-card-games-features__hero-content {
    margin-bottom: 0;
    margin-right: 40px;
  }

  .page-game-types-card-games-features__hero-title {
    font-size: 4.2em;
  }

  .page-game-types-card-games-features__hero-actions {
    justify-content: flex-start;
  }

  .page-game-types-card-games-features__cta {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-game-types-card-games-features__cta-content {
    margin-right: 40px;
  }

  .page-game-types-card-games-features__cta-title {
    font-size: 3.5em;
  }
}

@media (max-width: 767px) {
  .page-game-types-card-games-features__hero-title {
    font-size: 2.5em;
  }

  .page-game-types-card-games-features__section-title {
    font-size: 2em;
  }

  .page-game-types-card-games-features__cta-title {
    font-size: 2.2em;
  }

  .page-game-types-card-games-features__hero-actions {
    flex-direction: column;
  }

  .page-game-types-card-games-features__btn {
    width: 100%;
    max-width: 300px;
  }
}