.page-game-types {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0d124b; /* Darker blue for overall background */
}

.page-game-types__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A237E 0%, #0d124b 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-game-types__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-types__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-game-types__hero-description {
  font-size: 1.15em;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #E0E0E0;
}

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

.page-game-types__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
  position: relative;
  z-index: 0;
}

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

.page-game-types__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  text-align: center;
  margin: 60px auto 30px auto;
  max-width: 1000px;
}

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

.page-game-types__categories {
  padding: 60px 20px;
  background-color: #0d124b;
}

.page-game-types__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-game-types__category-card {
  background-color: #1A237E; /* Main color for card background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-types__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-game-types__category-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 25px auto;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

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

.page-game-types__category-description {
  font-size: 1em;
  line-height: 1.6;
  color: #E0E0E0;
  flex-grow: 1;
  margin-bottom: 25px;
}

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

.page-game-types__btn--primary {
  background-color: #FFD700;
  color: #1A237E;
  border: 2px solid #FFD700;
}

.page-game-types__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-game-types__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types__btn--link {
  background-color: #5f65a5; /* A lighter shade of main color */
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
  margin-top: 15px;
}

.page-game-types__btn--link:hover {
  background-color: #767bb2;
  transform: translateY(-2px);
}

.page-game-types__why-choose {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 80px 20px;
  background-color: #1A237E;
  color: #FFFFFF;
}

.page-game-types__why-choose-content {
  max-width: 900px;
  text-align: center;
}

.page-game-types__why-choose .page-game-types__section-title {
  color: #FFD700;
  margin-bottom: 30px;
}

.page-game-types__why-choose-content p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-game-types__why-choose-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  font-size: 1.05em;
  line-height: 2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types__why-choose-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.page-game-types__why-choose-list li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-game-types__why-choose-image-wrapper {
  max-width: 100%;
}

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

.page-game-types__cta-banner {
  background-color: #0d124b;
  padding: 70px 20px;
  text-align: center;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-types__cta-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-game-types__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-game-types__btn--large {
  padding: 16px 35px;
  font-size: 1.2em;
  min-width: 250px;
}

@media (min-width: 768px) {
  .page-game-types__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    gap: 40px;
    padding: 100px 40px;
  }

  .page-game-types__hero-content {
    text-align: left;
    flex: 1;
    min-width: 50%;
  }

  .page-game-types__hero-image-wrapper {
    flex: 1;
    margin-top: 0;
    max-width: 45%;
  }

  .page-game-types__hero-cta {
    justify-content: flex-start;
  }

  .page-game-types__why-choose {
    flex-direction: row;
    text-align: left;
    gap: 80px;
    padding: 100px 40px;
  }

  .page-game-types__why-choose-content {
    text-align: left;
    flex: 1;
  }

  .page-game-types__why-choose-image-wrapper {
    flex: 1;
    max-width: 45%;
  }

  .page-game-types__why-choose-list {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .page-game-types__hero-title {
    font-size: 2.2em;
  }

  .page-game-types__section-title {
    font-size: 1.8em;
  }

  .page-game-types__cta-title {
    font-size: 2em;
  }

  .page-game-types__btn {
    width: 100%;
    margin-bottom: 15px;
  }

  .page-game-types__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-types__category-card {
    padding: 20px;
  }

  .page-game-types__category-icon {
    width: 60px;
    height: 60px;
  }

  .page-game-types__category-title {
    font-size: 1.5em;
  }
  .page-game-types__btn--large {
    min-width: unset;
  }
}