.page-slot-games__wrapper {
  padding-top: 180px; /* Top padding for fixed header on desktop */
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Inherit body background */
}

@media (max-width: 768px) {
  .page-slot-games__wrapper {
    padding-top: 140px; /* Top padding for fixed header on mobile */
  }
}

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

.page-slot-games__section {
  padding: 60px 0;
  background-color: transparent; /* Default to transparent to show body background */
}

.page-slot-games__dark-section {
  background-color: #0A2463; /* Primary brand color for dark sections */
  color: #ffffff;
}

.page-slot-games__main-title {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff; /* White text for main title */
}

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff; /* White text for section titles */
}

.page-slot-games__highlight {
  color: #E5B80B; /* Auxiliary color for highlights */
}

.page-slot-games__description {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for body text */
}

.page-slot-games__intro-image,
.page-slot-games__section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-slot-games__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.page-slot-games__btn-primary {
  background: linear-gradient(135deg, #E5B80B, #FFD700);
  color: #000000; /* Black text for gold button */
  box-shadow: 0 4px 15px rgba(229, 184, 11, 0.4);
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(135deg, #FFD700, #E5B80B);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229, 184, 11, 0.6);
}

.page-slot-games__btn-secondary {
  background: #0A2463;
  color: #ffffff;
  border: 2px solid #E5B80B;
  box-shadow: 0 4px 15px rgba(10, 36, 99, 0.4);
}

.page-slot-games__btn-secondary:hover {
  background: #1a3a8a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10, 36, 99, 0.6);
}

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

.page-slot-games__card {
  background: #1a3a8a; /* Dark blue for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #E5B80B;
  margin-bottom: 15px;
}

.page-slot-games__card p {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games__card-button {
  display: inline-block;
  background: #E5B80B;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto;
}

.page-slot-games__card-button:hover {
  background-color: #FFD700;
  transform: translateY(-2px);
}

.page-slot-games__ordered-list,
.page-slot-games__unordered-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games__ordered-list li,
.page-slot-games__unordered-list li {
  background: #1a3a8a;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__ordered-list li:last-child,
.page-slot-games__unordered-list li:last-child {
  margin-bottom: 0;
}

.page-slot-games__list-title {
  font-size: 22px;
  font-weight: bold;
  color: #E5B80B;
  margin-bottom: 10px;
}

.page-slot-games__ordered-list p,
.page-slot-games__unordered-list p {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
}

/* FAQ Section */
.page-slot-games__faq-section {
  background-color: #0A2463; /* Primary dark blue */
  padding: 60px 0;
}

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #1a3a8a; /* Darker blue for question background */
  border: 1px solid #2e52a0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-slot-games__faq-question:hover {
  background: #2e52a0;
  border-color: #4a70d6;
}

.page-slot-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff; /* White text for questions */
  pointer-events: none;
}

.page-slot-games__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #E5B80B; /* Gold toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-slot-games__faq-item.active .page-slot-games__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Change to 'x' or '-' */
}

.page-slot-games__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #0a2e70; /* Slightly lighter dark blue for answer background */
  border-radius: 0 0 8px 8px;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-slot-games__faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
  margin: 0;
}

/* News/Blog Section */
.page-slot-games__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__news-card {
  background: #1a3a8a;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slot-games__news-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-slot-games__news-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-slot-games__news-title a {
  color: #E5B80B; /* Gold for news titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games__news-title a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-slot-games__news-excerpt {
  font-size: 15px;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-slot-games__news-readmore {
  display: inline-block;
  color: #E5B80B;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: color 0.3s ease;
  margin-top: auto;
}

.page-slot-games__news-readmore:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__main-title {
    font-size: 42px;
  }
  .page-slot-games__section-title {
    font-size: 32px;
  }
  .page-slot-games__description {
    font-size: 17px;
  }
  .page-slot-games__card-title {
    font-size: 22px;
  }
  .page-slot-games__list-title {
    font-size: 20px;
  }
  .page-slot-games__faq-question h3 {
    font-size: 17px;
  }
  .page-slot-games__news-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__main-title {
    font-size: 36px;
  }
  .page-slot-games__section-title {
    font-size: 28px;
  }
  .page-slot-games__description {
    font-size: 16px;
    text-align: left;
  }
  .page-slot-games__intro-image,
  .page-slot-games__section-image {
    margin: 30px auto;
    border-radius: 8px;
  }
  .page-slot-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__cta-button {
    font-size: 16px;
    padding: 12px 25px;
    min-width: unset;
    width: 100%;
  }
  .page-slot-games__section {
    padding: 40px 0;
  }
  .page-slot-games__container {
    padding: 0 15px;
  }
  .page-slot-games__grid {
    gap: 20px;
  }
  .page-slot-games__card {
    padding: 20px;
    border-radius: 8px;
  }
  .page-slot-games__card-title {
    font-size: 20px;
  }
  .page-slot-games__card p {
    font-size: 15px;
  }
  .page-slot-games__card-button {
    font-size: 15px;
    padding: 8px 15px;
  }
  .page-slot-games__ordered-list li,
  .page-slot-games__unordered-list li {
    padding: 20px;
    border-radius: 8px;
  }
  .page-slot-games__list-title {
    font-size: 18px;
  }
  .page-slot-games__ordered-list p,
  .page-slot-games__unordered-list p {
    font-size: 15px;
  }
  .page-slot-games__faq-question {
    padding: 15px 20px;
    border-radius: 8px;
  }
  .page-slot-games__faq-question h3 {
    font-size: 16px;
  }
  .page-slot-games__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }
  .page-slot-games__faq-answer {
    padding: 0 20px;
  }
  .page-slot-games__faq-item.active .page-slot-games__faq-answer {
    padding: 15px 20px !important;
  }
  .page-slot-games__faq-answer p {
    font-size: 15px;
  }
  .page-slot-games__news-grid {
    gap: 20px;
  }
  .page-slot-games__news-card {
    border-radius: 8px;
  }
  .page-slot-games__news-image {
    height: 180px;
  }
  .page-slot-games__news-content {
    padding: 20px;
  }
  .page-slot-games__news-title {
    font-size: 18px;
  }
  .page-slot-games__news-excerpt {
    font-size: 14px;
  }
  .page-slot-games__news-readmore {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: 30px;
  }
  .page-slot-games__section-title {
    font-size: 24px;
  }
  .page-slot-games__description {
    font-size: 15px;
  }
  .page-slot-games__faq-question h3 {
    font-size: 15px;
  }
  .page-slot-games__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
    margin-left: 10px;
  }
  .page-slot-games__news-image {
    height: 160px;
  }
  .page-slot-games__news-title {
    font-size: 16px;
  }
  .page-slot-games__news-excerpt {
    font-size: 13px;
  }
}