/* style/slot-games.css */
.page-slot-games {
  background-color: #08160F; /* Nền tối */
  color: #F2FFF6; /* Chữ sáng */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.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; /* Nhỏ hơn để body padding-top xử lý khoảng cách với header */
  overflow: hidden;
  color: #F2FFF6;
}

.page-slot-games__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 700px; /* Giới hạn chiều cao của hình ảnh hero */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

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

.page-slot-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card B G với độ trong suốt */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-slot-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

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

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

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 8px 25px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-slot-games__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  color: #F2FFF6;
  border-color: #57E38D;
  transform: translateY(-2px);
}

.page-slot-games__section {
  padding: 50px 20px;
  text-align: center;
  background-color: #08160F; /* Nền tối */
  color: #F2FFF6;
}

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

.page-slot-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
  font-weight: 600;
}

.page-slot-games__text-block {
  font-size: 1.05rem;
  color: #A7D9B8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__card {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #F2FFF6;
  height: 100%;
  box-sizing: border-box;
}

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

.page-slot-games__card p,
.page-slot-games__card ul {
  color: #A7D9B8;
  font-size: 1rem;
}

.page-slot-games__card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-slot-games__card li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-slot-games__card li::before {
  content: '✓';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-slot-games__feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

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

.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-card {
  text-align: center;
  align-items: center;
}

.page-slot-games__step-card a {
  color: #57E38D;
  text-decoration: none;
}

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

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

.page-slot-games__strategy-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 40px;
}

.page-slot-games__faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}

.page-slot-games__faq-item {
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  background-color: #11271B; /* Card B G */
  padding: 20px;
  color: #F2FFF6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  cursor: pointer;
  padding-right: 10px;
  list-style: none;
  position: relative;
}

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

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

.page-slot-games__faq-toggle {
  font-size: 1.8rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-left: 10px;
}

.page-slot-games__faq-answer {
  padding-top: 15px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.5;
}

.page-slot-games__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto 0 auto;
  max-width: 800px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-slot-games__cta-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-slot-games__cta-content .page-slot-games__description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #F2FFF6;
}

.page-slot-games__cta-content .page-slot-games__description a {
  color: #57E38D;
  text-decoration: none;
  font-weight: bold;
}

.page-slot-games__cta-content .page-slot-games__description a:hover {
  text-decoration: underline;
}

.page-slot-games__btn-large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

/* Responsive styles */
@media (min-width: 769px) {
  .page-slot-games__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games__strategy-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-slot-games__faq-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-slot-games__hero-section {
    padding: 80px 20px;
    padding-top: 10px;
  }
  .page-slot-games__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-slot-games__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

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

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

  .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__section,
  .page-slot-games__card,
  .page-slot-games__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games__content-image {
    margin-left: auto;
    margin-right: auto;
  }

  .page-slot-games__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }

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

  .page-slot-games__faq-question {
    font-size: 1.1rem;
  }

  .page-slot-games__strategy-list,
  .page-slot-games__faq-list {
    grid-template-columns: 1fr;
  }
}