.page-game-types {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-game-types__hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.page-game-types__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-game-types__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 128, 0.8), rgba(255, 215, 0, 0.4)); /* Dark blue to gold gradient */
  z-index: -1;
}

.page-game-types__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-game-types__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-types__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #fff;
}

.page-game-types__section-title {
  font-size: 2.5em;
  color: #000080; /* Dark blue for titles on light background */
  text-align: center;
  margin-bottom: 40px;
  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-title--light {
  color: #FFD700; /* Gold for titles on dark blue background */
}

.page-game-types__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-game-types__text-content--light {
  color: #e0e0e0;
}

.page-game-types__btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-game-types__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text on gold */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-types__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
  margin-right: 15px;
}

.page-game-types__btn--secondary:hover {
  background-color: #FFD700;
  color: #000080;
  transform: translateY(-2px);
}

.page-game-types__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-game-types__intro {
  background-color: #f9f9f9;
  padding: 80px 0;
}

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

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

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

.page-game-types__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 128, 0.3));
}

.page-game-types__feature-item h3 {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 15px;
}

.page-game-types__feature-item p {
  color: #666;
}

.page-game-types__game-categories {
  padding: 80px 0;
  background-color: #000080; /* Dark blue background */
}

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

.page-game-types__category-item {
  background-color: #1a1a90; /* Slightly lighter dark blue for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-game-types__category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

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

.page-game-types__category-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for titles on dark background */
  padding: 20px 25px 10px;
  margin: 0;
}

.page-game-types__category-description {
  color: #e0e0e0;
  padding: 0 25px 20px;
  flex-grow: 1;
}

.page-game-types__category-actions {
  padding: 15px 25px 25px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.page-game-types__why-new88 {
  padding: 80px 0;
  background-color: #f0f2f5;
  text-align: center;
}

.page-game-types__promotions {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-game-types__promo-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding-bottom: 30px;
}

.page-game-types__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 25px;
}

.page-game-types__promo-card h3 {
  font-size: 1.4em;
  color: #000080;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-game-types__promo-card p {
  color: #666;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-game-types__cta-banner {
  background: linear-gradient(135deg, #000080, #330099); /* Dark blue to darker blue */
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-game-types__cta-content {
  max-width: 900px;
}

.page-game-types__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-game-types__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.section-padding {
  padding: 60px 0;
}

.bg-dark-blue {
  background-color: #000080;
}

.bg-light-grey {
  background-color: #f8f8f8;
}

.highlight {
  color: #FFD700;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-types__hero-title {
    font-size: 2.5em;
  }
  .page-game-types__section-title {
    font-size: 2em;
  }
  .page-game-types__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-game-types__hero {
    height: 400px;
  }
  .page-game-types__hero-title {
    font-size: 2em;
  }
  .page-game-types__hero-description {
    font-size: 1em;
  }
  .page-game-types__section-title {
    font-size: 1.8em;
  }
  .page-game-types__text-content {
    font-size: 0.95em;
  }
  .page-game-types__features, .page-game-types__category-grid, .page-game-types__promo-cards {
    grid-template-columns: 1fr;
  }
  .page-game-types__category-actions {
    justify-content: center;
  }
  .page-game-types__cta-title {
    font-size: 1.8em;
  }
  .page-game-types__btn--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-types__hero {
    height: 350px;
  }
  .page-game-types__hero-title {
    font-size: 1.8em;
  }
  .page-game-types__hero-description {
    font-size: 0.9em;
  }
  .page-game-types__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-types__section-title {
    font-size: 1.5em;
  }
  .page-game-types__feature-item h3, .page-game-types__category-title, .page-game-types__promo-card h3 {
    font-size: 1.2em;
  }
  .page-game-types__cta-title {
    font-size: 1.5em;
  }
}