.page-slot-games {
  background-color: #08162B; /* Deep Navy */
  color: #F3F8FF; /* Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for inner pages */
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slot-games__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive font size */
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-games__section-description {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Hero Section - Main Title Area for Slot Games Page */
.page-slot-games__hero-section {
  background: linear-gradient(180deg, #113B7A 0%, #08162B 100%); /* Deep Blue to Deep Navy */
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slot-games__hero-content-wrapper {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
  z-index: 2;
  position: relative; /* Ensure text is above any background effects */
}

.page-slot-games__main-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem); /* H1 - Use clamp for responsiveness */
  font-weight: 700;
  line-height: 1.1;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-slot-games__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
  color: #F3F8FF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain max width of image */
  margin-top: 40px;
  z-index: 1;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* About Slots Section */
.page-slot-games__about-slots-section {
  padding: 80px 0;
  background-color: #10233F; /* Card BG */
}

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

.page-slot-games__feature-item {
  background-color: #08162B; /* Deep Navy */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #244D84; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__feature-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games__feature-text {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
}

/* Game Categories Section */
.page-slot-games__game-categories-section {
  padding: 80px 0;
}

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

.page-slot-games__category-card {
  background-color: #10233F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__category-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-slot-games__category-title {
  font-size: 1.4rem;
  color: #F3F8FF; /* Text Main */
  margin: 20px 20px 10px;
  font-weight: bold;
}

.page-slot-games__category-text {
  font-size: 0.95rem;
  color: #AFC4E8; /* Text Secondary */
  margin: 0 20px 20px;
}

.page-slot-games__category-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
  color: #F3F8FF;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-slot-games__category-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

/* Game Grid Section */
.page-slot-games__game-grid-section {
  padding: 80px 0;
  background-color: #08162B; /* Deep Navy */
}

.page-slot-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid for games */
  gap: 20px;
  margin-top: 50px;
}

.page-slot-games__game-tile {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__game-tile:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__game-tile img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-slot-games__view-more-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-slot-games__cta-button--secondary {
  background: #1D5FD1; /* Auxiliary color */
  border: 1px solid #113B7A;
}

.page-slot-games__cta-button--secondary:hover {
  background: #113B7A; /* Main color on hover */
}

/* Promotions Section */
.page-slot-games__promotions-section {
  padding: 80px 0;
  background-color: #10233F; /* Card BG */
}

.page-slot-games__promotions-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-slot-games__promotions-text-content {
  flex: 1;
  text-align: left;
}

.page-slot-games__promotions-text-content .page-slot-games__section-title,
.page-slot-games__promotions-text-content .page-slot-games__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-slot-games__promotions-image-wrapper {
  flex: 1;
  min-width: 300px; /* Ensure image doesn't get too small */
}

.page-slot-games__promotions-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-slot-games__faq-section {
  padding: 80px 0;
  background-color: #08162B; /* Deep Navy */
}

.page-slot-games__faq-list {
  max-width: 800px;
  margin: 50px auto 0;
  border: 1px solid #244D84; /* Border color */
  border-radius: 10px;
  overflow: hidden;
}

.page-slot-games__faq-item {
  background-color: #10233F; /* Card BG */
  margin-bottom: 10px;
}

.page-slot-games__faq-item:last-child {
  margin-bottom: 0;
}

.page-slot-games__faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: none;
  border: none;
  color: #F3F8FF; /* Text Main */
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-slot-games__faq-question:hover,
.page-slot-games__faq-question[aria-expanded="true"] {
  background-color: #113B7A; /* Main color */
}

.page-slot-games__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-slot-games__faq-question[aria-expanded="true"]::after {
  content: '-';
  transform: rotate(180deg);
}

.page-slot-games__faq-answer {
  padding: 0 20px;
  background-color: #08162B; /* Deep Navy */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-slot-games__faq-answer p {
  padding-bottom: 20px;
  color: #AFC4E8; /* Text Secondary */
  font-size: 0.95rem;
}

.page-slot-games__faq-question[aria-expanded="true"] + .page-slot-games__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-slot-games__faq-image-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-slot-games__faq-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-slot-games__promotions-inner {
    flex-direction: column;
    text-align: center;
  }
  .page-slot-games__promotions-text-content {
    text-align: center;
  }
  .page-slot-games__promotions-text-content .page-slot-games__section-title,
  .page-slot-games__promotions-text-content .page-slot-games__section-description {
    text-align: center;
  }
  .page-slot-games__promotions-image-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__container {
    padding: 0 15px;
  }
  .page-slot-games__hero-section {
    padding: 40px 0;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-slot-games__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-slot-games__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-slot-games__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-slot-games__section-description {
    margin-bottom: 30px;
  }
  .page-slot-games__about-slots-section,
  .page-slot-games__game-categories-section,
  .page-slot-games__game-grid-section,
  .page-slot-games__promotions-section,
  .page-slot-games__faq-section {
    padding: 60px 0;
  }
  .page-slot-games__feature-list,
  .page-slot-games__categories-grid,
  .page-slot-games__game-grid {
    grid-template-columns: 1fr; /* Stack columns on small screens */
    gap: 20px;
  }
  .page-slot-games__game-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Allow 2 columns for games if space permits */
  }
  .page-slot-games__feature-item,
  .page-slot-games__category-card,
  .page-slot-games__game-tile {
    margin-bottom: 15px;
  }
  .page-slot-games__faq-list {
    margin-top: 30px;
  }
  /* Ensure all images inside .page-slot-games are responsive */
  .page-slot-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-slot-games__game-grid {
    grid-template-columns: 1fr; /* Stack game images on very small screens */
  }
}