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

.page-casino-slots__hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Blend of primary and secondary for backdrop */
  padding: 0;
  text-align: center;
}

.page-casino-slots__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.page-casino-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.page-casino-slots__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}

.page-casino-slots__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino-slots__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-casino-slots__hero-button,
.page-casino-slots__cta-button,
.page-casino-slots__game-button,
.page-casino-slots__cta-footer-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-casino-slots__hero-button:hover,
.page-casino-slots__cta-button:hover,
.page-casino-slots__game-button:hover,
.page-casino-slots__cta-footer-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-casino-slots__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-casino-slots__section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-casino-slots__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-casino-slots__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-casino-slots__features-grid,
.page-casino-slots__game-types-grid,
.page-casino-slots__games-grid,
.page-casino-slots__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-casino-slots__feature-card,
.page-casino-slots__game-type-card,
.page-casino-slots__game-card,
.page-casino-slots__step-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;
  border: 1px solid #f0f0f0;
}

.page-casino-slots__feature-card:hover,
.page-casino-slots__game-type-card:hover,
.page-casino-slots__game-card:hover,
.page-casino-slots__step-card:hover {
  transform: translateY(-5px);
}

.page-casino-slots__feature-title,
.page-casino-slots__game-type-title,
.page-casino-slots__game-title,
.page-casino-slots__step-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-casino-slots__feature-text,
.page-casino-slots__game-type-text,
.page-casino-slots__game-provider,
.page-casino-slots__step-text {
  font-size: 1em;
  color: #666666;
}

.page-casino-slots__game-type-image,
.page-casino-slots__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-casino-slots__game-card .page-casino-slots__game-button {
  margin-top: 20px;
}

.page-casino-slots__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #8B0000;
  color: #FFD700;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino-slots__cta-container {
  text-align: center;
  margin-top: 40px;
}

.page-casino-slots__responsible-gaming-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.page-casino-slots__responsible-gaming-link {
  display: inline-block;
  color: #8B0000;
  text-decoration: underline;
  font-weight: bold;
  margin-top: 20px;
  font-size: 1.1em;
}

.page-casino-slots__responsible-gaming-link:hover {
  color: #FFD700;
}

.page-casino-slots__faq-section {
  padding: 60px 20px;
}

.page-casino-slots__faq-item {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-casino-slots__faq-question {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-casino-slots__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-casino-slots__call-to-action-footer {
  background-color: #8B0000;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  margin-top: 40px;
}

.page-casino-slots__cta-footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-casino-slots__cta-footer-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-casino-slots__cta-footer-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .page-casino-slots__hero-title {
    font-size: 2.8em;
  }
  .page-casino-slots__hero-description {
    font-size: 1.1em;
  }
  .page-casino-slots__section-title {
    font-size: 2em;
  }
  .page-casino-slots__cta-footer-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-casino-slots__hero-section {
    padding: 30px 15px;
  }
  .page-casino-slots__hero-title {
    font-size: 2.2em;
  }
  .page-casino-slots__hero-description {
    font-size: 1em;
  }
  .page-casino-slots__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-casino-slots__content-area {
    padding: 30px 15px;
  }
  .page-casino-slots__section-title {
    font-size: 1.8em;
  }
  .page-casino-slots__features-grid,
  .page-casino-slots__game-types-grid,
  .page-casino-slots__games-grid,
  .page-casino-slots__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-slots__game-type-image,
  .page-casino-slots__game-image {
    height: auto; /* Allow height to adjust */
    max-width: 100%;
  }
  .page-casino-slots__feature-card,
  .page-casino-slots__game-type-card,
  .page-casino-slots__game-card,
  .page-casino-slots__step-card {
    padding: 20px;
  }
  .page-casino-slots__feature-title,
  .page-casino-slots__game-type-title,
  .page-casino-slots__game-title,
  .page-casino-slots__step-title {
    font-size: 1.4em;
  }
  .page-casino-slots__faq-question {
    font-size: 1.2em;
  }
  .page-casino-slots__cta-footer-title {
    font-size: 2em;
  }
  .page-casino-slots__cta-footer-description {
    font-size: 1.1em;
  }
  /* Ensure all images within .page-casino-slots are responsive and don't overflow */
  .page-casino-slots img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-casino-slots__hero-title {
    font-size: 1.8em;
  }
  .page-casino-slots__hero-description {
    font-size: 0.95em;
  }
  .page-casino-slots__section-title {
    font-size: 1.6em;
  }
  .page-casino-slots__cta-footer-title {
    font-size: 1.8em;
  }
}