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

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

.page-game-types-hero {
  background: linear-gradient(135deg, #0A2342, #1a3c61);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-game-types-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-game-types-hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-game-types-section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-game-types-section:nth-of-type(even) {
  background-color: #f2f2f2;
}

.page-game-types-section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-game-types-section-title--light {
  color: #fff;
}

.page-game-types-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-game-types-text--light {
  color: #f0f0f0;
}

.page-game-types-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-types-image--category {
  max-width: 80%;
  margin: 20px auto;
}

.page-game-types-category-item {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #e0e0e0;
}

.page-game-types-category-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.page-game-types-category-title {
  font-size: 2em;
  color: #E6B325;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-game-types-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  text-align: center;
  cursor: pointer;
}

.page-game-types-button--primary {
  background-color: #E6B325;
  color: #0A2342;
  border: 2px solid #E6B325;
  font-size: 1.1em;
}

.page-game-types-button--primary:hover {
  background-color: #d4a520;
  border-color: #d4a520;
  transform: translateY(-2px);
}

.page-game-types-button--secondary {
  background-color: #0A2342;
  color: #E6B325;
  border: 2px solid #0A2342;
  font-size: 1em;
  padding: 10px 20px;
}

.page-game-types-button--secondary:hover {
  background-color: #1a3c61;
  border-color: #1a3c61;
  transform: translateY(-2px);
}

.page-game-types-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin: 10px;
}

.page-game-types-cta-content {
  text-align: center;
}

.page-game-types-cta {
  background: linear-gradient(135deg, #0A2342, #1a3c61);
  color: #fff;
  padding: 80px 0;
}

.page-game-types-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-game-types-list li {
  background-color: #fcfcfc;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #333;
  border-left: 5px solid #E6B325;
  transition: transform 0.2s ease;
}

.page-game-types-list li:hover {
  transform: translateY(-5px);
}

.page-game-types-list--bullet {
  list-style: disc;
  padding-left: 20px;
  max-width: 800px;
  margin: 30px auto;
  display: block;
}

.page-game-types-list--bullet li {
  background-color: transparent;
  box-shadow: none;
  border-left: none;
  padding: 5px 0;
}

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

.page-game-types-guide-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-types-guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-game-types-guide-title {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-types-guide-title a {
  text-decoration: none;
  color: #0A2342;
}

.page-game-types-guide-title a:hover {
  color: #E6B325;
}

.page-game-types-guide-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* 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-category-title {
    font-size: 1.8em;
  }

  .page-game-types-list {
    grid-template-columns: 1fr;
  }

  .page-game-types-guide-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-game-types-hero {
    padding: 60px 0;
  }

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

  .page-game-types-hero-description {
    font-size: 1em;
  }

  .page-game-types-section {
    padding: 40px 0;
  }

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

  .page-game-types-category-title {
    font-size: 1.5em;
  }

  .page-game-types-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-types-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@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-section-title {
    font-size: 1.5em;
  }

  .page-game-types-category-title {
    font-size: 1.3em;
  }

  .page-game-types-cta-content .page-game-types-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto;
  }
}