.page-game-types-card-games {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-game-types-card-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Gradient from main to slightly lighter dark blue */
  color: #e5dfd3;
  position: relative;
  overflow: hidden;
  gap: 40px;
}

.page-game-types-card-games__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-game-types-card-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-game-types-card-games__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e5dfd3;
}

.page-game-types-card-games__hero-image-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
  z-index: 0;
}

.page-game-types-card-games__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-game-types-card-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-game-types-card-games__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A202C; /* Main color for text on auxiliary background */
}

.page-game-types-card-games__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-game-types-card-games__btn--secondary {
  background-color: #2D3748; /* Slightly lighter dark blue */
  color: #FFD700; /* Auxiliary color for text */
  border: 1px solid #FFD700;
}

.page-game-types-card-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-game-types-card-games__btn--download {
  background-color: #007bff; /* A standard blue for download, good contrast */
  color: #ffffff;
  margin-top: 20px;
}

.page-game-types-card-games__btn--download:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-game-types-card-games__btn--link {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 1em;
}

.page-game-types-card-games__btn--link:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-game-types-card-games__btn--tertiary {
  background-color: #e5dfd3; /* A light color for less prominent CTA */
  color: #1A202C;
  border: 1px solid #e5dfd3;
}

.page-game-types-card-games__btn--tertiary:hover {
  background-color: #d1cbc0;
  transform: translateY(-3px);
}

.page-game-types-card-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-types-card-games__section:nth-of-type(even) {
  background-color: #2D3748; /* Slightly lighter dark blue for alternating sections */
}

.page-game-types-card-games__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Auxiliary color for section titles */
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-types-card-games__section-description {
  font-size: 1.15em;
  color: #e5dfd3; /* Light text */
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-game-types-card-games__game-card {
  background-color: #1A202C;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3a475d;
}

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

.page-game-types-card-games__game-card-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #FFD700;
}

.page-game-types-card-games__game-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-card-games__game-card-text {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 25px;
}

.page-game-types-card-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-game-types-card-games__feature-item {
  background-color: #1A202C;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  border: 1px solid #3a475d;
  text-align: left;
}

.page-game-types-card-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6)); /* Gold glow */
}

.page-game-types-card-games__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-types-card-games__feature-text {
  font-size: 1em;
  color: #c0c0c0;
}

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

.page-game-types-card-games__step-item {
  background-color: #1A202C;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  padding-top: 60px;
  border: 1px solid #3a475d;
}

.page-game-types-card-games__step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  background-color: #FFD700;
  color: #1A202C;
  font-size: 2.5em;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-types-card-games__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-types-card-games__step-text {
  font-size: 1em;
  color: #c0c0c0;
}

.page-game-types-card-games__cta-bottom {
  margin-top: 60px;
  padding: 40px;
  background-color: #2D3748;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-types-card-games__cta-bottom p {
  font-size: 1.5em;
  color: #e5dfd3;
  margin-bottom: 30px;
}

.page-game-types-card-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-card-games__tips-list li {
  background-color: #1A202C;
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  padding: 20px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #e5dfd3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-card-games__tips-list li strong {
  color: #FFD700;
}

.page-game-types-card-games__responsible-gambling-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-types-card-games__section--conclusion .page-game-types-card-games__btn {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-types-card-games__hero-title {
    font-size: 3em;
  }
  .page-game-types-card-games__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-types-card-games__section-title {
    font-size: 2.4em;
  }
  .page-game-types-card-games__game-card-title {
    font-size: 1.6em;
  }
  .page-game-types-card-games__feature-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-game-types-card-games__hero {
    padding: 60px 15px;
  }
  .page-game-types-card-games__hero-title {
    font-size: 2.5em;
  }
  .page-game-types-card-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-types-card-games__section {
    padding: 40px 0;
  }
  .page-game-types-card-games__section-title {
    font-size: 2em;
  }
  .page-game-types-card-games__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-game-types-card-games__game-card, .page-game-types-card-games__feature-item, .page-game-types-card-games__step-item {
    padding: 25px;
  }
  .page-game-types-card-games__step-number {
    left: 25px;
  }
  .page-game-types-card-games__cta-bottom p {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-game-types-card-games__hero-title {
    font-size: 2em;
  }
  .page-game-types-card-games__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-types-card-games__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-game-types-card-games__section-title {
    font-size: 1.8em;
  }
  .page-game-types-card-games__game-card-title {
    font-size: 1.4em;
  }
  .page-game-types-card-games__feature-title {
    font-size: 1.2em;
  }
  .page-game-types-card-games__step-title {
    font-size: 1.5em;
  }
  .page-game-types-card-games__step-number {
    width: 50px;
    height: 50px;
    font-size: 2em;
    top: -15px;
  }
  .page-game-types-card-games__hero-image-container {
    margin-top: 20px;
  }
}