.page-game-types {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for text on dark background */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
}

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

.page-game-types__hero-section {
  background: linear-gradient(135deg, #8B0000, #4d0000); /* Dark red gradient */
  padding: 100px 0 60px;
  text-align: center;
  color: #FFD700; /* Gold text for hero */
  position: relative;
  overflow: hidden;
}

.page-game-types__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,dark_texture]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-types__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-game-types__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-game-types__hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-game-types__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-game-types__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
  border-color: #FFD700;
}

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

.page-game-types__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border-color: #FFD700;
}

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

.page-game-types__btn--detail {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
}

.page-game-types__btn--detail:hover {
  background-color: #6a0000;
  border-color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(139, 0, 0, 0.4);
}

.page-game-types__game-overview {
  padding: 60px 0;
}

.page-game-types__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-types__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #cccccc;
}

.page-game-types__game-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
  background-color: #2a2a2a;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-types__category-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-game-types__category-content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.page-game-types__category-content--reverse {
  flex-direction: row-reverse;
}

.page-game-types__category-image {
  width: 45%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-types__text-content {
  width: 55%;
  color: #e0e0e0;
}

.page-game-types__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-game-types__text-content ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-game-types__text-content ul li {
  margin-bottom: 5px;
}

.page-game-types__text-content strong {
  color: #FFD700;
}

.page-game-types__cta-section {
  background-color: #333333;
  padding: 60px 0;
  text-align: center;
  margin-top: 60px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-types__cta-section .page-game-types__section-title {
  margin-bottom: 20px;
}

.page-game-types__cta-section .page-game-types__section-description {
  margin-bottom: 40px;
}

.page-game-types__ctas {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.page-game-types__responsible-gaming {
  padding: 60px 0;
  text-align: center;
  background-color: #2a2a2a;
  margin-top: 80px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-types__responsible-gaming .page-game-types__section-title {
  color: #FFD700;
}

.page-game-types__responsible-gaming .page-game-types__section-description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-game-types__floating-ad {
  position: fixed;
  right: 20px;
  bottom: 100px; /* Adjust to not overlap with footer */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.page-game-types__floating-btn {
  background-color: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold */
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  border: 1px solid #8B0000;
}

.page-game-types__floating-btn:hover {
  background-color: #6a0000;
  transform: translateX(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  border-color: #FFD700;
}

.page-game-types__floating-icon {
  width: 24px;
  height: 24px;
  filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Make icon gold */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-types__hero-title {
    font-size: 2.8em;
  }
  .page-game-types__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-types__category-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-game-types__category-content--reverse {
    flex-direction: column;
  }
  .page-game-types__category-image,
  .page-game-types__text-content {
    width: 100%;
    max-width: 100%;
  }
  .page-game-types__section-title {
    font-size: 2.2em;
  }
  .page-game-types__section-description {
    font-size: 1em;
  }
  .page-game-types__ctas {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-types__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-game-types__floating-ad {
    right: 10px;
    bottom: 80px;
  }
  .page-game-types__floating-btn {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .page-game-types__hero-title {
    font-size: 2.2em;
  }
  .page-game-types__hero-subtitle {
    font-size: 1em;
  }
  .page-game-types__hero-ctas {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-types__btn {
    width: 90%;
    max-width: 280px;
  }
  .page-game-types__section-title {
    font-size: 1.8em;
  }
  .page-game-types__category-title {
    font-size: 1.8em;
  }
  .page-game-types__game-category {
    padding: 20px;
  }
  .page-game-types__floating-ad {
    right: 5px;
    bottom: 60px;
  }
}

@media (max-width: 480px) {
  .page-game-types__hero-title {
    font-size: 1.8em;
  }
  .page-game-types__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-types__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-game-types__floating-ad {
    right: 0px;
    bottom: 40px;
    gap: 10px;
  }
  .page-game-types__floating-btn {
    padding: 8px 12px;
    font-size: 0.8em;
  }
  .page-game-types__floating-icon {
    width: 20px;
    height: 20px;
  }
}