.page-slot-games {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-slot-games__hero-section {
  position: relative;
  text-align: center;
  padding-top: 10px; /* Small top padding */
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px; /* Adjust as needed for visual impact */
  object-fit: cover;
  display: block; /* Ensure no extra space below image */
}

.page-slot-games__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px; /* Space between image and content */
  text-align: center;
}

.page-slot-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #F2C14E, #FFD36B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-slot-games__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.page-slot-games__btn--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-slot-games__btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-slot-games__btn--secondary {
  background-color: #111111;
  color: #FFD36B;
  border: 1px solid #3A2A12;
}

.page-slot-games__btn--secondary:hover {
  background-color: #222222;
  color: #FFD86A;
}

.page-slot-games__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
  background: linear-gradient(90deg, #F2C14E, #FFD36B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-slot-games__intro-section,
.page-slot-games__categories-section,
.page-slot-games__popular-games-section,
.page-slot-games__benefits-section,
.page-slot-games__faq-section,
.page-slot-games__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-slot-games__text-content {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-slot-games__category-card,
.page-slot-games__game-card,
.page-slot-games__benefit-item {
  background-color: #111111;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__category-image,
.page-slot-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__category-title,
.page-slot-games__game-title,
.page-slot-games__benefit-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD36B;
}

.page-slot-games__category-description,
.page-slot-games__benefit-description {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-slot-games__btn--play {
  margin-top: 15px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.page-slot-games__btn--play:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.page-slot-games__accordion {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__accordion-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 25px;
  background-color: #111111;
  color: #FFD36B;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.page-slot-games__accordion-header:hover {
  background-color: #222222;
}

.page-slot-games__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-slot-games__accordion-content p {
  padding-bottom: 18px;
  margin: 0;
  color: #FFF6D6;
  font-size: 0.95rem;
}

.page-slot-games__accordion-item.active .page-slot-games__accordion-content {
  max-height: 200px; /* Max height for content, adjust as needed */
  padding-top: 10px;
}

.page-slot-games__cta-section--bottom {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-slot-games__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-slot-games__hero-content {
    padding: 30px 15px;
  }

  .page-slot-games__hero-buttons,
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games__btn {
    width: 100%;
    max-width: 280px;
  }

  .page-slot-games__section-title {
    font-size: 1.8rem;
    padding-top: 30px;
  }

  .page-slot-games__intro-section,
  .page-slot-games__categories-section,
  .page-slot-games__popular-games-section,
  .page-slot-games__benefits-section,
  .page-slot-games__faq-section,
  .page-slot-games__cta-section {
    padding: 40px 15px;
  }

  .page-slot-games__categories-grid,
  .page-slot-games__game-grid,
  .page-slot-games__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games__category-card,
  .page-slot-games__game-card,
  .page-slot-games__benefit-item {
    padding: 20px;
  }

  .page-slot-games__category-image,
  .page-slot-games__game-image,
  .page-slot-games__image-full-width {
    max-width: 100%;
    height: auto;
  }

  .page-slot-games__accordion-header {
    font-size: 1rem;
    padding: 15px 20px;
  }

  /* Ensure content images don't overflow */
  .page-slot-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: clamp(1.6rem, 10vw, 2.2rem);
  }
}