/* style/game-categories.css */
.page-game-categories {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-game-categories__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-game-categories__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-categories__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-categories__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-game-categories__btn--primary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-game-categories__btn--primary:hover {
  background-color: #e0a800;
  color: #111;
  transform: translateY(-2px);
}

.page-game-categories__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-game-categories__btn--secondary:hover {
  background-color: #0056b3;
  color: #fff;
  transform: translateY(-2px);
}

.page-game-categories__btn--tertiary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-game-categories__btn--tertiary:hover {
  background-color: #ffc107;
  color: #333;
  transform: translateY(-2px);
}

.page-game-categories__btn--link {
  color: #007bff;
  text-decoration: underline;
  background-color: transparent;
  border: none;
  padding: 8px 0;
  margin-left: 15px;
}

.page-game-categories__btn--link:hover {
  color: #0056b3;
  text-decoration: none;
}

.page-game-categories__btn--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-game-categories__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-categories__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-game-categories__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-categories__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

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

.page-game-categories__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-categories__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
}

.page-game-categories__feature-heading {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-game-categories__feature-text {
  color: #666;
}

.page-game-categories__game-category {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  text-align: left;
}

.page-game-categories__game-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
}

.page-game-categories__game-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-categories__game-info {
  flex-grow: 1;
}

.page-game-categories__game-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-game-categories__game-title a {
  color: #007bff;
  text-decoration: none;
}

.page-game-categories__game-title a:hover {
  text-decoration: underline;
}

.page-game-categories__game-description {
  color: #555;
  margin-bottom: 25px;
}

.page-game-categories__other-games {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}

.page-game-categories__sub-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 20px;
}

.page-game-categories__cta-section {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
}

.page-game-categories__cta-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-game-categories__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-categories__responsible-gambling {
  background-color: #f0f8ff;
}

.page-game-categories__responsible-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-top: 30px;
}

.page-game-categories__promotions {
  background-color: #fff3cd;
}

.page-game-categories__promotion-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-game-categories__final-cta {
  background: #007bff;
  color: #fff;
  padding: 100px 0;
}

.page-game-categories__final-cta-title {
  font-size: 3em;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.page-game-categories__final-cta-description {
  font-size: 1.2em;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-categories__hero-title {
    font-size: 2.5em;
  }
  .page-game-categories__section-title {
    font-size: 2em;
  }
  .page-game-categories__cta-title {
    font-size: 2.2em;
  }
  .page-game-categories__final-cta-title {
    font-size: 2.5em;
  }
  .page-game-categories__game-header {
    flex-direction: column;
  }
  .page-game-categories__game-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-game-categories__hero-section, .page-game-categories__cta-section, .page-game-categories__final-cta {
    padding: 60px 0;
  }
  .page-game-categories__hero-title {
    font-size: 2em;
  }
  .page-game-categories__hero-description, .page-game-categories__description, .page-game-categories__cta-description, .page-game-categories__final-cta-description {
    font-size: 1em;
  }
  .page-game-categories__section-title {
    font-size: 1.8em;
  }
  .page-game-categories__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-game-categories__game-title {
    font-size: 1.5em;
  }
  .page-game-categories__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-categories__cta-title {
    font-size: 1.8em;
  }
  .page-game-categories__final-cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-game-categories__hero-title {
    font-size: 1.8em;
  }
  .page-game-categories__section-title {
    font-size: 1.5em;
  }
  .page-game-categories__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-categories__btn--large {
    width: 100%;
  }
  .page-game-categories__btn--link {
    margin-left: 0;
    margin-top: 10px;
    display: block;
  }
}