.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
}

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

.page-slot-games__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relies on body padding-top for header offset */
  overflow: hidden;
  background: linear-gradient(180deg, #C61F1F 0%, #E53030 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-slot-games__hero-image-wrap {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
}

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

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
}

.page-slot-games__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF1E8; /* Text Main */
}

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

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
  color: #FFF1E8; /* Text Main */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-slot-games__btn-secondary {
  background: #2A1212; /* Card BG */
  color: #F3C54D; /* Gold */
  border: 2px solid #F3C54D; /* Gold */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-secondary:hover {
  transform: translateY(-3px);
  background: #6A1E1E; /* Border */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-slot-games__section-description {
  font-size: 1.1em;
  color: #FFF1E8; /* Text Main */
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-slot-games__content-area {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.05em;
  color: #FFF1E8; /* Text Main */
}

.page-slot-games__content-area p {
  margin-bottom: 1em;
}

.page-slot-games__introduction-section {
  background-color: #140C0C; /* Background */
}

.page-slot-games__game-types-section {
  background-color: #2A1212; /* Card BG */
}

.page-slot-games__products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__game-card {
  background: #140C0C; /* Background */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-slot-games__game-card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-slot-games__game-card-title {
  font-size: 1.5em;
  color: #F3C54D; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games__game-card-title a {
  color: #F3C54D;
  text-decoration: none;
}

.page-slot-games__game-card-title a:hover {
  text-decoration: underline;
}

.page-slot-games__game-card-description {
  font-size: 0.95em;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games__btn-play {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
  color: #FFF1E8; /* Text Main */
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-slot-games__btn-play:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

.page-slot-games__how-to-play-section {
  background-color: #140C0C; /* Background */
}

.page-slot-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__step-item {
  background: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games__step-icon {
  width: 60px;
  height: 60px;
  background: #F3C54D; /* Gold */
  color: #140C0C; /* Background */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-slot-games__step-title {
  font-size: 1.4em;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games__step-item p {
  font-size: 1em;
  color: #FFF1E8; /* Text Main */
  text-align: center;
}

.page-slot-games__step-item p a {
  color: #F3C54D;
  text-decoration: none;
}

.page-slot-games__step-item p a:hover {
  text-decoration: underline;
}

.page-slot-games__cta-center {
  margin-top: 40px;
  text-align: center;
}

.page-slot-games__promotions-section {
  background-color: #2A1212; /* Card BG */
}

.page-slot-games__promotion-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-slot-games__promotion-list li {
  font-size: 1.1em;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.page-slot-games__list-icon {
  color: #F3C54D; /* Gold */
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
  flex-shrink: 0;
}

.page-slot-games__mobile-experience-section {
  background-color: #140C0C; /* Background */
}

.page-slot-games__mobile-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

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

.page-slot-games__mobile-content .page-slot-games__section-title {
  text-align: left;
}

.page-slot-games__mobile-content p {
  color: #FFF1E8; /* Text Main */
  margin-bottom: 20px;
}

.page-slot-games__mobile-app-buttons {
  justify-content: flex-start;
  margin-top: 30px;
}

.page-slot-games__mobile-image-wrap {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

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

.page-slot-games__tips-strategies-section {
  background-color: #2A1212; /* Card BG */
}

.page-slot-games__strategy-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-slot-games__strategy-list li {
  font-size: 1.1em;
  color: #FFF1E8; /* Text Main */
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.page-slot-games__strategy-list li strong {
  color: #F3C54D; /* Gold */
}

.page-slot-games__faq-section {
  background-color: #140C0C; /* Background */
}

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

details.page-slot-games__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #2A1212; /* 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 25px;
  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: #6A1E1E; /* Border */
}

.page-slot-games__faq-qtext {
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3C54D; /* Gold */
}

.page-slot-games__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #F3C54D; /* Gold */
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-slot-games__faq-item .page-slot-games__faq-answer {
  padding: 0 25px 25px;
  background: #140C0C; /* Background */
  border-radius: 0 0 8px 8px;
  color: #FFF1E8; /* Text Main */
  font-size: 1.05em;
  text-align: left;
}

.page-slot-games__conclusion-section {
  background-color: #2A1212; /* Card BG */
  padding-bottom: 80px;
}

/* --- Responsive Styles --- */

/* Desktop Grid adjustments for larger screens */
@media (min-width: 1025px) {
  .page-slot-games__products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-slot-games__steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) {
  .page-slot-games__container {
    padding: 20px 30px;
  }
  .page-slot-games__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }
  .page-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-slot-games__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
  }
  .page-slot-games__products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .page-slot-games__steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .page-slot-games__mobile-flex {
    flex-direction: column;
    gap: 30px;
  }
  .page-slot-games__mobile-content,
  .page-slot-games__mobile-image-wrap {
    max-width: 100%;
  }
  .page-slot-games__mobile-content .page-slot-games__section-title {
    text-align: center;
  }
  .page-slot-games__mobile-content p {
    text-align: center;
  }
  .page-slot-games__mobile-app-buttons {
    justify-content: center;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .page-slot-games__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO 主图区域 */
  .page-slot-games__hero-section {
    padding-top: 10px; /* Small top padding for mobile */
  }
  .page-slot-games__hero-image-wrap {
    max-height: unset;
  }
  .page-slot-games__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games__hero-content {
    padding: 30px 15px;
  }
  .page-slot-games__main-title {
    font-size: clamp(2em, 8vw, 2.8em);
    line-height: 1.3;
  }
  .page-slot-games__hero-description {
    font-size: 1em;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games__section {
    padding: 40px 0;
  }
  .page-slot-games__section-title {
    font-size: clamp(1.5em, 6vw, 2.2em);
    line-height: 1.3;
    padding: 0 10px;
  }
  .page-slot-games__section-description {
    font-size: 0.95em;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  /* 产品展示图区域 */
  .page-slot-games__products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    overflow-x: hidden;
  }
  .page-slot-games__game-card {
    padding: 15px;
  }
  .page-slot-games__game-card-title {
    font-size: 1.3em;
  }
  .page-slot-games__game-card-description {
    font-size: 0.9em;
  }
  .page-slot-games__btn-play {
    padding: 8px 15px;
    font-size: 0.9em;
  }

  .page-slot-games__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .page-slot-games__step-item {
    padding: 20px;
  }
  .page-slot-games__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-slot-games__step-title {
    font-size: 1.2em;
  }
  .page-slot-games__step-item p {
    font-size: 0.95em;
  }

  .page-slot-games__promotion-list {
    margin-top: 30px;
    padding: 0 15px;
  }
  .page-slot-games__promotion-list li {
    font-size: 1em;
    margin-bottom: 10px;
  }
  .page-slot-games__list-icon {
    font-size: 1.3em;
    margin-right: 10px;
  }

  .page-slot-games__mobile-flex {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }
  .page-slot-games__mobile-content .page-slot-games__section-title,
  .page-slot-games__mobile-content p {
    text-align: center;
  }
  .page-slot-games__mobile-app-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__mobile-image-wrap {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-slot-games__mobile-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games__strategy-list {
    margin-top: 30px;
    padding: 0 15px;
  }
  .page-slot-games__strategy-list li {
    font-size: 1em;
    margin-bottom: 10px;
  }

  .page-slot-games__faq-list {
    margin-top: 30px;
    padding: 0 15px;
  }
  details.page-slot-games__faq-item {
    border-radius: 5px;
  }
  details.page-slot-games__faq-item summary.page-slot-games__faq-question {
    padding: 15px 18px;
  }
  .page-slot-games__faq-qtext {
    font-size: 1em;
  }
  .page-slot-games__faq-toggle {
    font-size: 1.8em;
    margin-left: 15px;
    width: 25px;
  }
  details.page-slot-games__faq-item .page-slot-games__faq-answer {
    padding: 0 18px 18px;
    font-size: 0.95em;
  }

  /* Generic images and containers */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__content-area {
    text-align: left;
  }
}