/* style/slot-games.css */
/* body đã padding-top: var(--header-offset) từ shared.css, page-slot-games không cần thêm */
.page-slot-games {
  background-color: #08160F; /* Nền chính của trang */
  color: #F2FFF6; /* Màu chữ chính cho nền tối */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Nhỏ để không bị đè lên header, body đã có padding-top */
  padding-bottom: 60px;
  background-color: #08160F;
}

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

.page-slot-games__hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 1; /* Đảm bảo nội dung nổi lên trên ảnh */
}

.page-slot-games__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Sử dụng clamp thay vì fixed lớn */
  font-weight: bold;
  color: #F2C14E; /* Màu vàng Gold cho tiêu đề chính */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__description {
  font-size: 1.1em;
  color: #F2FFF6;
  margin-bottom: 30px;
}

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

.page-slot-games__cta-buttons--center {
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-slot-games__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

.page-slot-games__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.page-slot-games__text-block {
  font-size: 1.05em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games__text-link {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-slot-games__text-link:hover {
  color: #2AD16F;
}

.page-slot-games__highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

/* Section backgrounds */
.page-slot-games__bg-color {
  background-color: #08160F;
  padding: 60px 0;
}

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

.page-slot-games__introduction-section,
.page-slot-games__guide-section,
.page-slot-games__promotions-section,
.page-slot-games__mobile-app-section,
.page-slot-games__conclusion-section {
  padding: 60px 0;
}

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

.page-slot-games__game-card,
.page-slot-games__strategy-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

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

.page-slot-games__card-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px;
  text-align: justify;
}

.page-slot-games__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-slot-games__step-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #57E38D; /* Glow */
}

.page-slot-games__step-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

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

.page-slot-games__full-width-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 40px;
  display: block;
}

.page-slot-games__promo-list,
.page-slot-games__safety-features,
.page-slot-games__app-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 40px 0;
}

.page-slot-games__promo-item,
.page-slot-games__feature-item,
.page-slot-games__benefit-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__promo-item::before,
.page-slot-games__feature-item::before,
.page-slot-games__benefit-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-slot-games__app-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.page-slot-games__app-text {
  flex: 2;
  min-width: 300px;
}

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

.page-slot-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

.page-slot-games__faq-question:hover {
  background-color: #13994A;
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D; /* Glow */
  transition: transform 0.3s ease;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  transform: rotate(45deg);
}

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

.page-slot-games__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-slot-games__hero-content {
    max-width: 600px;
  }
  .page-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-slot-games__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-slot-games__app-image {
    order: -1; /* Đẩy ảnh lên trên trong mobile */
  }
}

@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;
  }
  .page-slot-games__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-slot-games__description {
    font-size: 1em;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-slot-games__game-grid,
  .page-slot-games__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-slot-games__text-block {
    font-size: 0.95em;
  }
  .page-slot-games__app-image {
    width: 100%;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games__container {
    padding: 0 15px;
  }
  /* Mobile image and video responsiveness */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games video,
  .page-slot-games__video {
    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__video-section,
  .page-slot-games__video-container,
  .page-slot-games__video-wrapper,
  .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;
    overflow: hidden !important;
  }
  .page-slot-games__video-section {
    padding-top: 10px !important;
  }
  .page-slot-games__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-slot-games__cta-buttons {
    flex-direction: column;
  }
}