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

.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #0A0A0A;
}

.page-slot-games__hero-container {
  position: relative;
  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;
  border: 1px solid #3A2A12; /* Border */
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-slot-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFD36B; /* Glow color for emphasis */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-slot-games__description {
  font-size: 1.1rem;
  color: #FFF6D6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
  border: none;
}

.page-slot-games__cta-button:hover {
  background: linear-gradient(180deg, #FFE082 0%, #E6B531 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

.page-slot-games__section {
  padding: 80px 20px;
  background-color: #0A0A0A;
}

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

.page-slot-games__container--center {
  text-align: center;
}

.page-slot-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-slot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F2C14E;
  border-radius: 2px;
}

.page-slot-games__paragraph {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-slot-games__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 3px 10px rgba(255, 211, 107, 0.3);
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #FFE082 0%, #E6B531 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.5);
}

.page-slot-games__btn-primary--center {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 250px;
}

.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-slot-games__btn-secondary:hover {
  background-color: #FFD36B;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(255, 211, 107, 0.3);
}

.page-slot-games__btn-link {
  color: #F2C14E;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-slot-games__btn-link:hover {
  color: #FFD36B;
  text-decoration: underline;
}

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

.page-slot-games__grid--two-cols {
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}

.page-slot-games__card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 211, 107, 0.2);
}

.page-slot-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

.page-slot-games__card-title {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games__card-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  line-height: 1.7;
  text-align: justify;
}

.page-slot-games__card--no-img {
  padding-top: 20px;
}

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

.page-slot-games__step-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
}

.page-slot-games__step-item::before {
  content: attr(data-step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #F2C14E;
  color: #111111;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  border: 2px solid #FFD36B;
}

.page-slot-games__step-item:nth-child(1)::before { content: '1'; }
.page-slot-games__step-item:nth-child(2)::before { content: '2'; }
.page-slot-games__step-item:nth-child(3)::before { content: '3'; }
.page-slot-games__step-item:nth-child(4)::before { content: '4'; }
.page-slot-games__step-item:nth-child(5)::before { content: '5'; }

.page-slot-games__step-title {
  font-size: 1.25rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-slot-games__step-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 15px;
}

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

.page-slot-games__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #FFF6D6;
  text-align: justify;
}

.page-slot-games__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F2C14E;
  font-weight: bold;
}

.page-slot-games__promo-card {
  background-color: #111111;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 211, 107, 0.2);
}

.page-slot-games__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

.page-slot-games__promo-title {
  font-size: 1.3rem;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games__promo-text {
  font-size: 0.9rem;
  color: #FFF6D6;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-slot-games__mobile-text {
  flex: 1;
}

.page-slot-games__mobile-image-wrapper {
  flex: 0 0 350px;
  max-width: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12;
}

.page-slot-games__mobile-image {
  width: 100%;
  height: auto;
  display: block;
}

/* FAQ Section */
details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #3A2A12; /* Border */
  overflow: hidden;
  background: #111111; /* Card BG */
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}
details.page-slot-games__faq-item summary.page-slot-games__faq-question:hover {
  background: rgba(242, 193, 78, 0.1);
}
.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF6D6;
}
.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F2C14E;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 20px 20px;
  background: rgba(17, 17, 17, 0.8);
  border-radius: 0 0 5px 5px;
  font-size: 0.95rem;
  color: #FFF6D6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-slot-games {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-games__hero-image img {
    border-radius: 4px;
  }
  
  .page-slot-games__main-title {
    font-size: 2rem;
  }

  .page-slot-games__description {
    font-size: 1rem;
  }

  .page-slot-games__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

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

  .page-slot-games__grid--two-cols {
    grid-template-columns: 1fr;
  }

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

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

  .page-slot-games__card-title {
    font-size: 1.2rem;
  }

  .page-slot-games__step-item {
    padding-left: 60px;
    padding-right: 15px;
  }

  .page-slot-games__step-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
    left: 15px;
  }

  .page-slot-games__promo-image {
    height: 120px;
  }

  .page-slot-games__mobile-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-slot-games__mobile-image-wrapper {
    flex: none;
    max-width: 250px;
  }

  details.page-slot-games__faq-item summary.page-slot-games__faq-question { padding: 15px; }
  .page-slot-games__faq-qtext { font-size: 15px; }
  details.page-slot-games__faq-item .page-slot-games__faq-answer { padding: 0 15px 15px; }

  /* Image responsiveness */
  .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__mobile-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button responsiveness */
  .page-slot-games__cta-button,
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games a[class*="button"],
  .page-slot-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-games__cta-buttons,
  .page-slot-games__button-group,
  .page-slot-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-slot-games__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}