.page-slot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default light text for dark body background */
  background-color: var(--dark-bg-1);
}

.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.page-slot-games__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-slot-games__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  background: rgba(0, 51, 102, 0.85); /* Slightly transparent primary color */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-slot-games__hero-title {
  font-size: 42px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slot-games__hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-slot-games__cta-button:hover {
  background: #e6b800; /* Darker secondary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__cta-button--secondary {
  background: var(--primary-color);
  color: #ffffff;
}

.page-slot-games__cta-button--secondary:hover {
  background: #002244; /* Darker primary color */
}

.page-slot-games__text-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-slot-games__text-link:hover {
  text-decoration: underline;
  color: #e6b800;
}

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

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__dark-bg {
  background: var(--primary-color);
  color: #ffffff;
}

.page-slot-games__light-bg {
  background: #ffffff;
  color: #333333;
}

.page-slot-games__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: inherit; /* Inherit color from container */
}

.page-slot-games__sub-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: inherit;
}

.page-slot-games__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
  color: inherit;
}

.page-slot-games__paragraph--centered {
  text-align: center;
}

.page-slot-games__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-slot-games__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05); /* Light background for dark sections */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-slot-games__list-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-slot-games__list-item p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 0;
}

.page-slot-games__list-item-content {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.page-slot-games__list-icon {
  flex-shrink: 0;
  width: 100px; /* Minimum size for content images */
  height: auto;
  max-width: 100px;
  margin-right: 20px;
  border-radius: 4px;
  object-fit: cover;
}

.page-slot-games__list-text {
  flex-grow: 1;
}

.page-slot-games__numbered-list {
  list-style: decimal;
  padding-left: 25px;
  margin: 30px 0;
  color: inherit;
}

.page-slot-games__numbered-list li {
  margin-bottom: 20px;
  font-size: 17px;
  color: inherit;
}

.page-slot-games__numbered-list li h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
  color: inherit;
}

.page-slot-games__numbered-list li p {
  font-size: 16px;
  color: inherit;
}

.page-slot-games__inline-button {
  display: inline-block;
  padding: 8px 15px;
  background: var(--secondary-color);
  color: #000000;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-slot-games__inline-button:hover {
  background: #e6b800;
  transform: translateY(-1px);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2);
}

.page-slot-games__image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
}

.page-slot-games__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-slot-games__promotion-card {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
}

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

.page-slot-games__promotion-card h3 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-slot-games__promotion-card p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 25px;
}

.page-slot-games__promotion-image {
  max-width: 100%;
  height: 200px; /* Enforce minimum height for content images */
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* FAQ Section */
.page-slot-games__faq-section {
  padding: 60px 20px;
  background: var(--dark-bg-1);
}

.page-slot-games__faq-list {
  margin-top: 30px;
}

.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.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;
  padding: 0 15px;
  opacity: 0;
}

.page-slot-games__faq-item.active .page-slot-games__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #333333;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #333333;
}

.page-slot-games__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-slot-games__faq-question:active {
  background: #eeeeee;
}

.page-slot-games__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: inherit;
}

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

.page-slot-games__faq-item.active .page-slot-games__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg); /* Plus to X */
}

.page-slot-games__conclusion .page-slot-games__paragraph {
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games__hero-title {
    font-size: 38px;
  }

  .page-slot-games__hero-description {
    font-size: 16px;
  }

  .page-slot-games__section-title {
    font-size: 32px;
  }

  .page-slot-games__sub-title {
    font-size: 22px;
  }

  .page-slot-games__paragraph {
    font-size: 16px;
  }

  .page-slot-games__list-item h3 {
    font-size: 18px;
  }

  .page-slot-games__list-item p {
    font-size: 15px;
  }

  .page-slot-games__numbered-list li h3 {
    font-size: 18px;
  }

  .page-slot-games__numbered-list li p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: 140px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-games__hero-title {
    font-size: 28px;
  }

  .page-slot-games__hero-description {
    font-size: 15px;
  }

  .page-slot-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-slot-games__section {
    padding: 40px 15px;
  }

  .page-slot-games__container {
    padding: 25px;
  }

  .page-slot-games__section-title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .page-slot-games__sub-title {
    font-size: 20px;
  }

  .page-slot-games__paragraph {
    font-size: 15px;
  }

  .page-slot-games__list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-slot-games__list-item-content {
    flex-direction: column;
    align-items: center;
  }

  .page-slot-games__list-icon {
    margin-right: 0;
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  .page-slot-games__list-item h3 {
    font-size: 18px;
  }

  .page-slot-games__list-item p {
    font-size: 14px;
  }

  .page-slot-games__numbered-list {
    padding-left: 20px;
  }

  .page-slot-games__numbered-list li h3 {
    font-size: 18px;
  }

  .page-slot-games__numbered-list li p {
    font-size: 14px;
  }

  .page-slot-games__promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__promotion-card {
    padding: 20px;
  }

  .page-slot-games__promotion-card h3 {
    font-size: 20px;
  }

  .page-slot-games__promotion-card p {
    font-size: 14px;
  }

  .page-slot-games__promotion-image {
    height: 150px;
  }

  .page-slot-games__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-slot-games__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-slot-games__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-slot-games__faq-answer {
    padding: 0 15px;
  }
  
  .page-slot-games__faq-item.active .page-slot-games__faq-answer {
    padding: 15px !important;
  }

  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__hero-container,
  .page-slot-games__hero-image,
  .page-slot-games__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__hero-title {
    font-size: 24px;
  }

  .page-slot-games__section-title {
    font-size: 22px;
  }

  .page-slot-games__hero-description {
    font-size: 14px;
  }

  .page-slot-games__cta-button {
    font-size: 14px;
    padding: 10px 25px;
  }

  .page-slot-games__container {
    padding: 20px;
  }

  .page-slot-games__list-icon {
    width: 60px;
    height: 60px;
  }

  .page-slot-games__promotion-card h3 {
    font-size: 18px;
  }
}