.page-casino-game-types {
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-casino-game-types__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #007BFF;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-casino-game-types__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-casino-game-types__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFC107;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino-game-types__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-casino-game-types__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-casino-game-types__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-casino-game-types__button--primary {
  background-color: #FFC107;
  color: #007BFF;
  border: 2px solid #FFC107;
}

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

.page-casino-game-types__button--secondary {
  background-color: transparent;
  color: #FFC107;
  border: 2px solid #FFC107;
}

.page-casino-game-types__button--secondary:hover {
  background-color: #FFC107;
  color: #007BFF;
  transform: translateY(-2px);
}

.page-casino-game-types__introduction-section,
.page-casino-game-types__game-category-section,
.page-casino-game-types__mobile-section,
.page-casino-game-types__why-choose-section,
.page-casino-game-types__get-started-section,
.page-casino-game-types__cta-section {
  padding: 60px 0;
}

.page-casino-game-types__game-category-section--alt-bg {
  background-color: #f9f9f9;
}

.page-casino-game-types__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

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

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

.page-casino-game-types__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-game-types__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-casino-game-types__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-casino-game-types__card-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 10px;
  padding: 0 15px;
  font-weight: bold;
}

.page-casino-game-types__card-description {
  font-size: 1em;
  color: #666666;
  padding: 0 15px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-casino-game-types__card-button {
  display: inline-block;
  background-color: #FFC107;
  color: #007BFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Pushes button to the bottom */
}

.page-casino-game-types__card-button:hover {
  background-color: #e0a800;
}

.page-casino-game-types__mobile-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

.page-casino-game-types__mobile-image {
  width: 45%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-casino-game-types__mobile-text {
  width: 55%;
  text-align: left;
}

.page-casino-game-types__mobile-subtitle {
  font-size: 2em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-casino-game-types__mobile-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-casino-game-types__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

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

.page-casino-game-types__feature-title {
  font-size: 1.8em;
  color: #FFC107;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino-game-types__feature-description {
  font-size: 1em;
  color: #666666;
}

.page-casino-game-types__text-link {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-game-types__text-link:hover {
  text-decoration: underline;
}

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

.page-casino-game-types__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino-game-types__step-title {
  font-size: 2em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino-game-types__step-description {
  font-size: 1.1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-casino-game-types__cta-section {
  background-color: #007BFF;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-casino-game-types__cta-section .page-casino-game-types__section-title {
  color: #FFC107;
}

.page-casino-game-types__cta-section .page-casino-game-types__section-description {
  color: #f0f0f0;
  margin-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-casino-game-types__hero-title {
    font-size: 3em;
  }
  .page-casino-game-types__hero-description {
    font-size: 1.2em;
  }
  .page-casino-game-types__section-title {
    font-size: 2em;
  }
  .page-casino-game-types__mobile-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-casino-game-types__mobile-image,
  .page-casino-game-types__mobile-text {
    width: 100%;
    text-align: center;
  }
  .page-casino-game-types__mobile-subtitle {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-casino-game-types__hero-section {
    padding: 60px 0;
  }
  .page-casino-game-types__hero-title {
    font-size: 2.5em;
  }
  .page-casino-game-types__hero-description {
    font-size: 1em;
  }
  .page-casino-game-types__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-game-types__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-casino-game-types__introduction-section,
  .page-casino-game-types__game-category-section,
  .page-casino-game-types__mobile-section,
  .page-casino-game-types__why-choose-section,
  .page-casino-game-types__get-started-section,
  .page-casino-game-types__cta-section {
    padding: 40px 0;
  }
  .page-casino-game-types__section-title {
    font-size: 1.8em;
  }
  .page-casino-game-types__section-description {
    font-size: 0.95em;
  }
  .page-casino-game-types__game-grid,
  .page-casino-game-types__feature-list,
  .page-casino-game-types__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-game-types__card-image {
    height: 200px;
  }
  /* Mobile content area image constraint */
  .page-casino-game-types img {
    max-width: 100%;
    height: auto;
  }
  .page-casino-game-types__mobile-image {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-casino-game-types__hero-title {
    font-size: 2em;
  }
  .page-casino-game-types__button {
    width: 95%;
  }
  .page-casino-game-types__hero-container {
    padding: 15px;
  }
  .page-casino-game-types__card-title {
    font-size: 1.4em;
  }
  .page-casino-game-types__feature-title {
    font-size: 1.5em;
  }
  .page-casino-game-types__step-title {
    font-size: 1.7em;
  }
}