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

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

/* Hero Section */
.page-casino-slot-games__hero-section {
  position: relative;
  background-color: #003366;
  color: #ffffff;
  overflow: hidden;
  padding-bottom: 60px; /* Add padding at the bottom */
}

.page-casino-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 100%; /* Ensure image does not overflow */
}

.page-casino-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

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

.page-casino-slot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* General Button Styles */
.page-casino-slot-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

.page-casino-slot-games__button--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Royal Blue */
  border: 2px solid #FFD700;
}

.page-casino-slot-games__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-casino-slot-games__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-casino-slot-games__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-casino-slot-games__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: 120px;
}

.page-casino-slot-games__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  min-width: 250px;
}

/* Section Styling */
.page-casino-slot-games__section-title {
  font-size: 2.5em;
  color: #003366; /* Royal Blue */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-casino-slot-games__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

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

.page-casino-slot-games__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  min-height: 450px; /* Ensure cards are tall enough for images */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

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

.page-casino-slot-games__feature-icon {
  width: 200px; /* Minimum size for content images */
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
  max-width: 100%;
}

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

.page-casino-slot-games__feature-description {
  color: #666666;
  font-size: 1em;
  flex-grow: 1;
}

/* Top Slots Section */
.page-casino-slot-games__top-slots-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-casino-slot-games__game-category {
  margin-bottom: 60px;
}

.page-casino-slot-games__category-title {
  font-size: 2em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}

.page-casino-slot-games__category-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #555555;
}

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

.page-casino-slot-games__game-card {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 480px; /* Ensure cards are tall enough */
}

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

.page-casino-slot-games__game-image {
  width: 100%;
  max-width: 400px; /* Max width for images within cards */
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 8px;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px; /* Ensure images are not too small */
}

.page-casino-slot-games__game-name {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-casino-slot-games__game-details {
  color: #666666;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How to Play Section */
.page-casino-slot-games__how-to-play-section {
  background-color: #eef4f8;
  padding: 60px 0;
}

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

.page-casino-slot-games__step-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-casino-slot-games__step-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-casino-slot-games__step-description a {
  color: #003366;
  text-decoration: underline;
}

.page-casino-slot-games__step-description a:hover {
  color: #FFD700;
}

/* Strategy Section */
.page-casino-slot-games__strategy-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-casino-slot-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-casino-slot-games__strategy-item {
  background-color: #fefefe;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.page-casino-slot-games__strategy-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

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

.page-casino-slot-games__strategy-description a {
  color: #003366;
  text-decoration: underline;
}

.page-casino-slot-games__strategy-description a:hover {
  color: #FFD700;
}

.page-casino-slot-games__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #003366;
  border-radius: 10px;
  color: #ffffff;
}

.page-casino-slot-games__cta-text {
  font-size: 1.4em;
  margin-bottom: 20px;
  color: #ffffff;
}

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

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

.page-casino-slot-games__bonus-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 280px;
}

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

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

.page-casino-slot-games__bonus-description {
  color: #666666;
  font-size: 1em;
  flex-grow: 1;
  margin-bottom: 20px;
}

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

.page-casino-slot-games__responsible-gaming-list {
  list-style: disc inside;
  max-width: 800px;
  margin: 40px auto 30px auto;
  padding-left: 20px;
  color: #555555;
}

.page-casino-slot-games__responsible-gaming-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-casino-slot-games__responsible-gaming-guidance {
  text-align: center;
  font-size: 1.1em;
  color: #555555;
}

.page-casino-slot-games__responsible-gaming-guidance a {
  color: #003366;
  text-decoration: underline;
}

.page-casino-slot-games__responsible-gaming-guidance a:hover {
  color: #FFD700;
}

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

.page-casino-slot-games__faq-accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-slot-games__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  overflow: hidden;
}

.page-casino-slot-games__faq-question {
  font-size: 1.4em;
  color: #003366;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.page-casino-slot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-casino-slot-games__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-casino-slot-games__faq-answer {
  padding: 0 25px 20px 25px;
  color: #666666;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}}