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

.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding for content */
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
  margin-top: 100px; /* Push content down to avoid overlapping the very top of the image */
}

.page-slot-games__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
}

.page-slot-games__hero-description {
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Light text for contrast */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.6);
  opacity: 0.9;
}

.page-slot-games__cta-button--secondary {
  background: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  box-shadow: none;
}

.page-slot-games__cta-button--secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

.page-slot-games__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
}

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

.page-slot-games__section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slot-games__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

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

.page-slot-games__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games__card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main for card content */
}

.page-slot-games__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(17, 168, 78, 0.5);
}

.page-slot-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

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

.page-slot-games__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-slot-games__dark-section {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-slot-games__feature-item {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-slot-games__feature-item:hover {
  transform: scale(1.03);
}

.page-slot-games__feature-icon {
  font-size: 3em;
  margin-bottom: 15px;
  display: block;
}

.page-slot-games__feature-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-slot-games__feature-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-slot-games__promotion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-slot-games__promotion-card .page-slot-games__card-image {
  height: 180px; /* Adjust for banner type images */
}

.page-slot-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-slot-games__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__step-number {
  font-size: 2.5em;
  color: #57E38D; /* Glow */
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.page-slot-games__step-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-slot-games__step-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__guide-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games__tips-item {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games__tips-icon {
  font-size: 2.5em;
  color: #57E38D; /* Glow */
  margin-bottom: 15px;
  display: block;
}

.page-slot-games__tips-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-slot-games__tips-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__faq-list {
  margin-top: 50px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1E3A2A; /* Divider for question background */
  border-bottom: 1px solid #2E7A4E;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-question {
  border-bottom: none;
}

.page-slot-games__faq-qtext {
  flex-grow: 1;
  color: #F2C14E; /* Gold for question text */
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to form an X or minus */
}

.page-slot-games__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-slot-games__hero-content {
    padding: 15px;
    margin-top: 50px;
  }

  .page-slot-games__main-title {
    font-size: 2.2em;
  }

  .page-slot-games__hero-description {
    font-size: 1em;
  }

  .page-slot-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    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: 2em;
    margin-bottom: 30px;
  }

  .page-slot-games__text-block {
    font-size: 0.95em;
  }

  .page-slot-games__grid,
  .page-slot-games__feature-list,
  .page-slot-games__promotion-cards,
  .page-slot-games__steps-grid,
  .page-slot-games__tips-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-slot-games__card,
  .page-slot-games__feature-item,
  .page-slot-games__step-card,
  .page-slot-games__tips-item {
    padding: 20px;
  }

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

  .page-slot-games__card-title {
    font-size: 1.3em;
  }

  .page-slot-games__feature-icon,
  .page-slot-games__step-number,
  .page-slot-games__tips-icon {
    font-size: 2.5em;
  }

  .page-slot-games__feature-title,
  .page-slot-games__step-title,
  .page-slot-games__tips-title {
    font-size: 1.2em;
  }

  .page-slot-games__guide-image {
    margin-top: 30px;
  }

  .page-slot-games__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-slot-games__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .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__hero-section,
  .page-slot-games__feature-item,
  .page-slot-games__promotion-card,
  .page-slot-games__step-card,
  .page-slot-games__tips-item,
  .page-slot-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  /* Specific override for hero section padding to avoid double padding */
  .page-slot-games__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-slot-games__video-section {
    padding-top: 10px !important; /* body đã xử lý --header-offset, không dùng ở đây */
  }

  .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;
  }
}