.page-casino-slot-games {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

/* Hero Section */
.page-casino-slot-games__hero-section {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 600px;
}

.page-casino-slot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-casino-slot-games__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-casino-slot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.page-casino-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino-slot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

/* Buttons */
.page-casino-slot-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;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.page-casino-slot-games__btn--primary {
  background-color: #B80000; /* Main color */
  color: #ffffff;
}

.page-casino-slot-games__btn--primary:hover {
  background-color: #d46666; /* Lighter shade of main color */
  transform: translateY(-2px);
}

.page-casino-slot-games__btn--secondary {
  background-color: #FFD700; /* Auxiliary color */
  color: #333333;
}

.page-casino-slot-games__btn--secondary:hover {
  background-color: #e6c200; /* Slightly darker shade of auxiliary color */
  transform: translateY(-2px);
}

.page-casino-slot-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-casino-slot-games__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-casino-slot-games__btn--center {
  display: block;
  margin: 30px auto 0 auto;
  width: fit-content;
}

/* Intro Section */
.page-casino-slot-games__intro-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-casino-slot-games__intro-heading {
  font-size: 2.8em;
  color: #B80000;
  margin-bottom: 25px;
}

.page-casino-slot-games__intro-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Game Types Section */
.page-casino-slot-games__game-types {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-casino-slot-games__types-heading {
  font-size: 2.8em;
  color: #B80000;
  margin-bottom: 25px;
}

.page-casino-slot-games__types-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
}

.page-casino-slot-games__type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-casino-slot-games__type-card {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-casino-slot-games__type-card:hover {
  transform: translateY(-10px);
}

.page-casino-slot-games__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-casino-slot-games__card-title {
  font-size: 1.8em;
  color: #B80000;
  margin-bottom: 15px;
}

.page-casino-slot-games__card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

/* Why Choose Section */
.page-casino-slot-games__why-choose {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-casino-slot-games__why-heading {
  font-size: 2.8em;
  color: #B80000;
  text-align: center;
  margin-bottom: 25px;
}

.page-casino-slot-games__why-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-casino-slot-games__advantage-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700; /* Auxiliary color accent */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
  color: #333333;
}

.page-casino-slot-games__advantage-item strong {
  color: #B80000;
}

/* How To Start Section */
.page-casino-slot-games__how-to-start {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-casino-slot-games__start-heading {
  font-size: 2.8em;
  color: #B80000;
  margin-bottom: 25px;
}

.page-casino-slot-games__start-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-slot-games__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-casino-slot-games__step-item {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-casino-slot-games__step-title {
  font-size: 1.6em;
  color: #B80000;
  margin-bottom: 15px;
}

.page-casino-slot-games__step-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

/* Popular Titles Section */
.page-casino-slot-games__popular-titles {
  padding: 60px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-casino-slot-games__titles-heading {
  font-size: 2.8em;
  color: #B80000;
  margin-bottom: 25px;
}

.page-casino-slot-games__titles-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-slot-games__game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-casino-slot-games__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-casino-slot-games__game-card:hover {
  transform: translateY(-10px);
}

.page-casino-slot-games__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-casino-slot-games__game-card-title {
  font-size: 1.6em;
  color: #B80000;
  margin-bottom: 10px;
}

.page-casino-slot-games__game-card-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

/* Responsible Gaming Section */
.page-casino-slot-games__responsible-gaming {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-casino-slot-games__responsible-heading {
  font-size: 2.8em;
  color: #B80000;
  margin-bottom: 25px;
}

.page-casino-slot-games__responsible-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-casino-slot-games__faq {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-casino-slot-games__faq-heading {
  font-size: 2.8em;
  color: #B80000;
  text-align: center;
  margin-bottom: 40px;
}

.page-casino-slot-games__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 25px;
}

.page-casino-slot-games__faq-question {
  font-size: 1.5em;
  color: #B80000;
  margin-bottom: 10px;
}

.page-casino-slot-games__faq-answer {
  font-size: 1em;
  color: #666666;
  margin-bottom: 15px;
}

/* Call to Action Section */
.page-casino-slot-games__call-to-action {
  padding: 60px 0;
  background-color: #B80000; /* Main color background */
  color: #ffffff;
  text-align: center;
}

.page-casino-slot-games__cta-heading {
  font-size: 3em;
  color: #FFD700; /* Auxiliary color for highlight */
  margin-bottom: 20px;
}

.page-casino-slot-games__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-slot-games__hero-title {
    font-size: 3em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-casino-slot-games__intro-heading,
  .page-casino-slot-games__types-heading,
  .page-casino-slot-games__why-heading,
  .page-casino-slot-games__start-heading,
  .page-casino-slot-games__titles-heading,
  .page-casino-slot-games__responsible-heading,
  .page-casino-slot-games__faq-heading,
  .page-casino-slot-games__cta-heading {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-casino-slot-games__hero-section {
    padding: 60px 15px;
    min-height: 500px;
  }
  .page-casino-slot-games__hero-content {
    padding: 30px;
  }
  .page-casino-slot-games__hero-title {
    font-size: 2.5em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 1em;
  }
  .page-casino-slot-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-slot-games__btn {
    width: 100%;
  }
  .page-casino-slot-games__intro-heading,
  .page-casino-slot-games__types-heading,
  .page-casino-slot-games__why-heading,
  .page-casino-slot-games__start-heading,
  .page-casino-slot-games__titles-heading,
  .page-casino-slot-games__responsible-heading,
  .page-casino-slot-games__faq-heading,
  .page-casino-slot-games__cta-heading {
    font-size: 1.8em;
  }
  .page-casino-slot-games__intro-text,
  .page-casino-slot-games__types-description,
  .page-casino-slot-games__why-description,
  .page-casino-slot-games__start-description,
  .page-casino-slot-games__titles-description,
  .page-casino-slot-games__responsible-description,
  .page-casino-slot-games__cta-description {
    font-size: 0.95em;
  }
  .page-casino-slot-games__type-cards,
  .page-casino-slot-games__advantages-list,
  .page-casino-slot-games__steps-list,
  .page-casino-slot-games__game-cards {
    grid-template-columns: 1fr;
  }
  .page-casino-slot-games__card-image,
  .page-casino-slot-games__game-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px; /* Ensure images are not too small */
  }
  .page-casino-slot-games__advantage-item,
  .page-casino-slot-games__step-item,
  .page-casino-slot-games__game-card,
  .page-casino-slot-games__faq-item {
    padding: 20px;
  }
  .page-casino-slot-games__card-title,
  .page-casino-slot-games__step-title,
  .page-casino-slot-games__game-card-title,
  .page-casino-slot-games__faq-question {
    font-size: 1.4em;
  }
  /* Mobile content area images must use max-width: 100%; height: auto; */
  .page-casino-slot-games img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure no image display size is less than 200px */
  .page-casino-slot-games__type-card .page-casino-slot-games__card-image,
  .page-casino-slot-games__game-card .page-casino-slot-games__game-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-casino-slot-games__hero-title {
    font-size: 2em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 0.9em;
  }
  .page-casino-slot-games__intro-heading,
  .page-casino-slot-games__types-heading,
  .page-casino-slot-games__why-heading,
  .page-casino-slot-games__start-heading,
  .page-casino-slot-games__titles-heading,
  .page-casino-slot-games__responsible-heading,
  .page-casino-slot-games__faq-heading,
  .page-casino-slot-games__cta-heading {
    font-size: 1.5em;
  }
}