/* style/game-types.css */
.page-game-types {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A2E;
}

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

.page-game-types__hero-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Darker gradient with a touch of purple/blue */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700; /* Gold for hero text */
}

.page-game-types__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-game-types__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-game-types__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-game-types__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  border: none;
}

.page-game-types__btn--primary {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-game-types__btn--primary:hover {
  background-color: #E0B800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-types__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-types__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-types__intro-section,
.page-game-types__game-list-section,
.page-game-types__why-choose-us,
.page-game-types__cta-section {
  padding: 80px 0;
}

.page-game-types__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-types__section-description {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #B0B0B0;
}

.page-game-types__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-types__game-card {
  background-color: #2A2A3E; /* Slightly lighter dark blue */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-game-types__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-game-types__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-game-types__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 25px 15px 15px;
  font-weight: bold;
}

.page-game-types__card-description {
  font-size: 1em;
  color: #C0C0C0;
  padding: 0 20px 25px;
  line-height: 1.7;
  flex-grow: 1;
}

.page-game-types__btn--card {
  margin: 0 20px 25px;
  background-color: #FFD700;
  color: #1A1A2E;
  padding: 12px 25px;
  border-radius: 5px;
  align-self: center;
}

.page-game-types__btn--card:hover {
  background-color: #E0B800;
  transform: translateY(-2px);
}

.page-game-types__why-choose-us {
  background-color: #10101A;
}

.page-game-types__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-game-types__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #2A2A3E;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-game-types__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.page-game-types__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-types__feature-description {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.7;
}

.page-game-types__cta-section {
  text-align: center;
  background: linear-gradient(135deg, #1A1A2E 0%, #0d0d15 100%);
  padding: 100px 0;
}

.page-game-types__cta-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
}

.page-game-types .highlight {
  color: #FFD700;
}

.page-game-types .keyword {
  font-weight: bold;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-types__hero-title {
    font-size: 2.8em;
  }
  .page-game-types__hero-description {
    font-size: 1.1em;
  }
  .page-game-types__section-title {
    font-size: 2.2em;
  }
  .page-game-types__game-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-game-types__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-game-types__hero-section {
    padding: 80px 0;
  }
  .page-game-types__hero-title {
    font-size: 2.2em;
  }
  .page-game-types__hero-description {
    font-size: 1em;
  }
  .page-game-types__hero-actions,
  .page-game-types__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-types__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-game-types__section-title {
    font-size: 1.8em;
  }
  .page-game-types__section-description {
    font-size: 0.95em;
  }
  .page-game-types__intro-section,
  .page-game-types__game-list-section,
  .page-game-types__why-choose-us,
  .page-game-types__cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-game-types__hero-title {
    font-size: 1.8em;
  }
  .page-game-types__hero-description {
    font-size: 0.9em;
  }
  .page-game-types__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-types__section-title {
    font-size: 1.6em;
  }
  .page-game-types__card-title {
    font-size: 1.5em;
  }
}