.page-casino-slot-games {
  color: #333333; /* Deep gray for text on light 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-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-casino-slot-games__hero-section {
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(51,51,51,0.8) 100%); /* Dark overlay for text readability */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

.page-casino-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background */
}

.page-casino-slot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

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

.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-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-casino-slot-games__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-casino-slot-games__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
}

.page-casino-slot-games__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-casino-slot-games__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  transform: translateY(-3px);
}

.page-casino-slot-games__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-casino-slot-games__text-content {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
  color: #444444;
}

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

.page-casino-slot-games__card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 16px 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-slot-games__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px 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: 20px;
  min-width: 200px; /* Enforce min-size for content images */
  min-height: 200px;
}

.page-casino-slot-games__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  padding: 0 20px;
}

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

.page-casino-slot-games__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  min-width: unset;
}

.page-casino-slot-games__button--small:hover {
  background-color: transparent;
  color: #FCBC45;
}

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

.page-casino-slot-games__feature-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-slot-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.page-casino-slot-games__feature-icon {
  width: 100px; /* Example display size for icons */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  padding: 10px;
  background-color: #FCBC45; /* Accent background for icons */
  min-width: 100px; /* Enforce min-size for icons */
  min-height: 100px;
}

.page-casino-slot-games__feature-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-casino-slot-games__feature-description {
  font-size: 0.95em;
  color: #555555;
}

.page-casino-slot-games__cta-center {
  text-align: center;
  margin-top: 60px;
}

.page-casino-slot-games__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-casino-slot-games__button--primary:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-casino-slot-games__button--cta-register {
  background-color: #000000; /* Use main brand color */
  color: #FFFFFF;
  border: 2px solid #000000;
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-casino-slot-games__button--cta-register:hover {
  background-color: transparent;
  color: #000000;
}

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

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

.page-casino-slot-games__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin: -60px auto 20px auto; /* Position above the card */
  border: 4px solid #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

.page-casino-slot-games__responsible-gaming {
  background-color: #f0f0f0;
  text-align: center;
}

.page-casino-slot-games__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-casino-slot-games__link:hover {
  color: #000000;
  text-decoration: underline;
}

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

.page-casino-slot-games__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-casino-slot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FCBC45;
}

.page-casino-slot-games__faq-question.active::after {
  content: '-';
}

.page-casino-slot-games__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  margin-top: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-casino-slot-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .page-casino-slot-games__hero-title {
    font-size: 3em;
  }

  .page-casino-slot-games__hero-description {
    font-size: 1.2em;
  }

  .page-casino-slot-games__section-title {
    font-size: 2em;
  }

  .page-casino-slot-games__button {
    min-width: 180px;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .page-casino-slot-games {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }

  .page-casino-slot-games__hero-section {
    padding: 60px 15px;
  }

  .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 {
    width: 100%;
    max-width: 300px; /* Constrain button width on mobile */
    margin: 0 auto;
  }

  .page-casino-slot-games__card-grid,
  .page-casino-slot-games__features-list,
  .page-casino-slot-games__steps-list {
    grid-template-columns: 1fr;
  }

  .page-casino-slot-games__card-image {
    height: auto;
    max-width: 100%;
    min-width: 200px; /* Ensure images are not too small even if constrained */
    min-height: 150px; /* Example min-height */
    object-fit: cover;
  }

  .page-casino-slot-games__feature-icon {
    width: 80px;
    height: 80px;
    min-width: 80px; /* Icons can be smaller than content images, but still not tiny */
    min-height: 80px;
  }

  .page-casino-slot-games__text-content {
    text-align: left;
  }

  .page-casino-slot-games__section-title {
    font-size: 1.8em;
  }
  
  /* Mobile content area overflow prevention */
  .page-casino-slot-games__container {
    overflow-x: hidden;
  }
}