/* style/casino-slots.css */

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

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

.page-casino-slots__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Main brand color */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: bold;
}

.page-casino-slots__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-casino-slots__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}

.page-casino-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-casino-slots__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-casino-slots__hero-title {
  font-size: 3.5em;
  color: #FFC107; /* Auxiliary brand color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-casino-slots__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-casino-slots__hero-button {
  display: inline-block;
  background-color: #FFC107; /* Auxiliary brand color */
  color: #007BFF; /* Main brand color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-casino-slots__hero-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

/* Introduction Section */
.page-casino-slots__introduction-section {
  margin-bottom: 60px;
}

/* Game Types Section */
.page-casino-slots__game-types-section {
  background-color: #f9f9f9;
  padding: 60px 0;
  margin-bottom: 60px;
}

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

.page-casino-slots__game-type-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-casino-slots__card-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-casino-slots__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  padding: 0 20px;
  text-align: justify;
}

.page-casino-slots__card-button {
  display: inline-block;
  background-color: #007BFF; /* Main brand color */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-casino-slots__card-button:hover {
  background-color: #0056b3;
}

/* How to Play Section */
.page-casino-slots__how-to-play-section {
  margin-bottom: 60px;
}

.page-casino-slots__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 30px;
}

.page-casino-slots__list-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
}

.page-casino-slots__list-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFC107; /* Auxiliary brand color */
  color: #007BFF; /* Main brand color */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

/* Why Choose Section */
.page-casino-slots__why-choose-section {
  background-color: #f0f8ff;
  padding: 60px 0;
  margin-bottom: 60px;
}

.page-casino-slots__features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-casino-slots__features-list .page-casino-slots__list-item {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-casino-slots__features-list .page-casino-slots__list-item::before {
  content: '✓';
  color: #007BFF; /* Main brand color */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

/* FAQ Section */
.page-casino-slots__faq-section {
  margin-bottom: 60px;
}

.page-casino-slots__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
}

.page-casino-slots__faq-question {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-casino-slots__faq-answer {
  font-size: 1.05em;
  color: #555555;
  text-align: justify;
}

.page-casino-slots__inline-link {
  color: #007BFF;
  text-decoration: underline;
}

.page-casino-slots__inline-link:hover {
  color: #0056b3;
}

/* Call to Action Buttons */
.page-casino-slots__cta-button {
  display: inline-block;
  background-color: #007BFF; /* Main brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
}

.page-casino-slots__cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-casino-slots__cta-final-section {
  background-color: #FFC107;
  padding: 80px 0;
  text-align: center;
  color: #007BFF; /* Dark text for light background */
}

.page-casino-slots__cta-final-section .page-casino-slots__section-title {
  color: #007BFF;
}

.page-casino-slots__cta-final-section .page-casino-slots__paragraph {
  color: #007BFF;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-casino-slots__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-casino-slots__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #007BFF;
  color: #007BFF;
}

.page-casino-slots__cta-button--secondary:hover {
  background-color: #007BFF;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-casino-slots__hero-title {
    font-size: 3em;
  }
  .page-casino-slots__hero-description {
    font-size: 1.2em;
  }
  .page-casino-slots__section-title {
    font-size: 2em;
  }
  .page-casino-slots__game-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-casino-slots {
    padding-top: var(--header-offset, 80px);
  }
  .page-casino-slots__hero-content {
    width: 90%;
    padding: 15px;
  }
  .page-casino-slots__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-casino-slots__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-casino-slots__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-casino-slots__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .page-casino-slots__paragraph {
    font-size: 1em;
  }
  .page-casino-slots__game-types-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-slots__card-image {
    height: 200px; /* Ensure images are not too small */
  }
  .page-casino-slots__card-title {
    font-size: 1.5em;
  }
  .page-casino-slots__list-item {
    font-size: 1em;
    padding-left: 35px;
  }
  .page-casino-slots__list-item::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .page-casino-slots__features-list .page-casino-slots__list-item {
    font-size: 1em;
  }
  .page-casino-slots__faq-question {
    font-size: 1.2em;
  }
  .page-casino-slots__faq-answer {
    font-size: 0.95em;
  }
  .page-casino-slots__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
    margin-top: 20px;
  }
  .page-casino-slots__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-slots__cta-final-section .page-casino-slots__paragraph {
    font-size: 1em;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-casino-slots img {
    max-width: 100%;
    height: auto;
  }
}