.page-slot-games {
  background-color: #08160F; /* Nền chính */
  color: #F2FFF6; /* Màu chữ chính */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-slot-games__section-title,
.page-slot-games__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games__section-subtitle,
.page-slot-games__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 30px;
}

.page-slot-games__text-content {
  font-size: 16px;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-slot-games__card-bg {
  background-color: #11271B;
  padding: 60px 0;
}

.page-slot-games__dark-bg {
  background-color: #08160F;
  padding: 60px 0;
}

.page-slot-games__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6;
}

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

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-play,
.page-slot-games__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D;
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
}

.page-slot-games__btn-secondary:hover {
  background-color: #F2C14E;
  color: #08160F;
  box-shadow: 0 0 15px #F2C14E;
}

.page-slot-games__btn-play {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  padding: 8px 18px;
  font-size: 14px;
}

.page-slot-games__btn-play:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-slot-games__btn-link {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 1px solid #57E38D;
  padding: 8px 18px;
  font-size: 14px;
}

.page-slot-games__btn-link:hover {
  background-color: #57E38D;
  color: #08160F;
}

.page-slot-games__cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-slot-games__cta-buttons--center {
  justify-content: center;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top */
  overflow: hidden;
}

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

.page-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  color: #F2FFF6;
}

.page-slot-games__main-title {
  color: #F2C14E;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
  margin-bottom: 15px;
}

.page-slot-games__hero-description {
  color: #A7D9B8;
  margin-bottom: 30px;
}

/* Intro Section */
.page-slot-games__intro-section {
  text-align: center;
}

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

.page-slot-games__feature-item {
  text-align: center;
}

.page-slot-games__feature-icon {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

.page-slot-games__feature-title {
  font-size: 22px;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-slot-games__feature-description {
  font-size: 15px;
  color: #A7D9B8;
}

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

.page-slot-games__game-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-slot-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  min-height: 200px;
}

.page-slot-games__game-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-slot-games__game-title {
  font-size: 20px;
  color: #F2C14E;
  margin-bottom: 10px;
}

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

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

.page-slot-games__game-description {
  font-size: 14px;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-slot-games__promo-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
}

.page-slot-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 20px;
  min-height: 200px;
}

.page-slot-games__promo-title {
  font-size: 20px;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-slot-games__promo-description {
  font-size: 15px;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How to Play Section */
.page-slot-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-slot-games__step-number {
  width: 50px;
  height: 50px;
  background-color: #57E38D; /* Glow */
  color: #08160F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-slot-games__step-title {
  font-size: 20px;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-slot-games__step-description {
  font-size: 15px;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Tips Section */
.page-slot-games__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games__tips-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  position: relative;
}

.page-slot-games__tips-item::before {
  content: '✓';
  color: #57E38D;
  font-weight: bold;
  position: absolute;
  left: 10px;
  top: 20px;
}

.page-slot-games__tips-heading {
  font-size: 18px;
  color: #F2C14E;
  margin-bottom: 5px;
  padding-left: 25px;
}

.page-slot-games__tips-description {
  font-size: 15px;
  color: #A7D9B8;
  padding-left: 25px;
}

/* Mobile Section */
.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: 1;
  text-align: center;
}

.page-slot-games__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  min-height: 200px;
}

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

.page-slot-games__security-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
}

.page-slot-games__security-heading {
  font-size: 20px;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-slot-games__security-description {
  font-size: 15px;
  color: #A7D9B8;
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 40px;
}

.page-slot-games__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6;
  user-select: none;
  list-style: none;
}

.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #57E38D;
  margin-left: 15px;
}

.page-slot-games__faq-answer {
  padding: 0 25px 18px 25px;
  font-size: 15px;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-slot-games__faq-answer p {
  margin-bottom: 0;
}

/* CTA Section */
.page-slot-games__cta-section {
  text-align: center;
  padding: 80px 0;
}

.page-slot-games__cta-container {
  max-width: 800px;
}

.page-slot-games__cta-title {
  color: #F2C14E;
  margin-bottom: 20px;
}

.page-slot-games__cta-description {
  color: #A7D9B8;
  font-size: 18px;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games__hero-content {
    padding: 15px;
  }
  .page-slot-games__mobile-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .page-slot-games__mobile-text, .page-slot-games__mobile-image-wrapper {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section,
  .page-slot-games__intro-section,
  .page-slot-games__why-co88-section,
  .page-slot-games__games-section,
  .page-slot-games__promotions-section,
  .page-slot-games__how-to-play-section,
  .page-slot-games__tips-section,
  .page-slot-games__mobile-section,
  .page-slot-games__security-section,
  .page-slot-games__faq-section,
  .page-slot-games__cta-section {
    padding: 40px 0;
  }

  .page-slot-games__container {
    padding: 0 15px;
  }

  .page-slot-games__main-title,
  .page-slot-games__section-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-slot-games__hero-description,
  .page-slot-games__section-subtitle {
    font-size: clamp(15px, 3vw, 18px);
  }

  .page-slot-games__text-content,
  .page-slot-games__feature-description,
  .page-slot-games__game-description,
  .page-slot-games__promo-description,
  .page-slot-games__step-description,
  .page-slot-games__tips-description,
  .page-slot-games__security-description,
  .page-slot-games__faq-answer {
    font-size: 14px;
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games__btn-play,
  .page-slot-games__btn-link {
    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__hero-section {
    padding-bottom: 40px;
  }

  .page-slot-games__hero-image,
  .page-slot-games__feature-icon,
  .page-slot-games__game-image,
  .page-slot-games__promo-image,
  .page-slot-games__mobile-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-height: 200px;
  }

  .page-slot-games__hero-image-wrapper,
  .page-slot-games__feature-item,
  .page-slot-games__game-card,
  .page-slot-games__promo-card,
  .page-slot-games__mobile-image-wrapper,
  .page-slot-games__security-item,
  .page-slot-games__faq-item,
  .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-slot-games__hero-section {
    padding-top: 10px !important; /* Small top padding for hero section */
  }

  .page-slot-games__tips-item::before {
    left: 5px;
  }

  .page-slot-games__tips-heading,
  .page-slot-games__tips-description {
    padding-left: 10px;
  }
}