/* style/casino-slot-games.css */
.page-casino-slot-games {
  color: #333333; /* Dark text for default white 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;
}

.page-casino-slot-games__container--center {
  text-align: center;
}

.page-casino-slot-games__section {
  padding: 60px 0;
}

.page-casino-slot-games__section:nth-of-type(odd) {
  background-color: #f9f9f9;
}

.page-casino-slot-games__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
  background-color: #000000; /* Fallback if image fails */
}

.page-casino-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-casino-slot-games__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

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

.page-casino-slot-games__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
  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;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

.page-casino-slot-games__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1E90FF; /* Royal Blue for contrast */
  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: #1E90FF; /* Royal Blue */
  color: #ffffff;
  border: 2px solid #1E90FF;
}

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

.page-casino-slot-games__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
  min-width: unset;
}

.page-casino-slot-games__button--large {
  padding: 15px 30px;
  font-size: 1.3em;
  min-width: 250px;
}

.page-casino-slot-games__heading {
  font-size: 2.5em;
  color: #1E90FF; /* Royal Blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-casino-slot-games__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-casino-slot-games__text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-slot-games__text a {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-slot-games__text a:hover {
  text-decoration: underline;
}

.page-casino-slot-games__text--small {
  font-size: 0.9em;
  color: #666666;
}

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

.page-casino-slot-games__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-casino-slot-games__card-title {
  font-size: 1.6em;
  color: #1E90FF;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-casino-slot-games__card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 20px;
}

.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: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-casino-slot-games__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-casino-slot-games__bonus-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-casino-slot-games__bonus-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-casino-slot-games__list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 800px;
}

.page-casino-slot-games__list-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #333333;
  text-align: left;
}

.page-casino-slot-games__list-item strong {
  color: #1E90FF;
}

.page-casino-slot-games__buttons-center {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-casino-slot-games__mobile-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-casino-slot-games__mobile-text-content {
  flex: 1;
  min-width: 300px;
}

.page-casino-slot-games__mobile-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-casino-slot-games__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-casino-slot-games__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino-slot-games__hero-title {
    font-size: 2.8em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-casino-slot-games__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-casino-slot-games__hero-title {
    font-size: 2.2em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 1em;
  }
  .page-casino-slot-games__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-slot-games__button {
    min-width: unset;
    width: 80%;
    margin: 0 auto;
  }
  .page-casino-slot-games__heading {
    font-size: 1.8em;
  }
  .page-casino-slot-games__text {
    font-size: 1em;
  }
  .page-casino-slot-games__card-image, .page-casino-slot-games__bonus-image {
    height: 200px; /* Ensure images are not too small */
  }
  .page-casino-slot-games__grid, .page-casino-slot-games__bonus-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-slot-games__mobile-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-casino-slot-games__mobile-image {
    max-width: 100%;
  }
  /* Mobile content area images must not cause horizontal scroll */
  .page-casino-slot-games img {
    max-width: 100%;
    height: auto;
  }
  .page-casino-slot-games {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-casino-slot-games__hero-title {
    font-size: 1.8em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 0.9em;
  }
  .page-casino-slot-games__heading {
    font-size: 1.5em;
  }
  .page-casino-slot-games__button--large {
    font-size: 1.1em;
    padding: 12px 20px;
  }
}