.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Màu chữ nhạt hơn để tăng tương phản trên nền tối */
  background-color: #1A1A1A; /* Nền đen sâu */
}

.page-slot-games a {
  color: #FFD700; /* Màu vàng kim cho link */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games a:hover {
  color: #FFF0B3; /* Vàng nhạt hơn khi hover */
}

.page-slot-games h1, .page-slot-games h2, .page-slot-games h3 {
  color: #FFD700; /* Tiêu đề màu vàng kim */
  text-align: center;
  margin-bottom: 30px;
}

.page-slot-games h1 {
  font-size: 3.2em;
  margin-top: 20px;
  line-height: 1.2;
}

.page-slot-games h2 {
  font-size: 2.5em;
  padding-top: 40px;
}

.page-slot-games h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-slot-games p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #E0E0E0;
  text-align: center;
}

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

/* Hero Section */
.page-slot-games .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #1A1A1A;
  overflow: hidden;
}

.page-slot-games .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-slot-games .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.page-slot-games .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border: 2px solid #FFD700; /* Viền vàng cho ảnh hero */
}

.page-slot-games .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-slot-games .hero-content p {
  font-size: 1.2em;
  color: #F0F0F0;
}

.page-slot-games .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-slot-games .cta-button:hover {
  background: #FFF0B3;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games .large-button {
  padding: 18px 50px;
  font-size: 1.4em;
}

/* General Section Styling */
.page-slot-games section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-slot-games section:last-of-type {
  border-bottom: none;
}

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

.page-slot-games .section-why-choose .feature-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slot-games .section-why-choose .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games .section-why-choose .feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 50%; /* Biểu tượng có thể tròn */
  background-color: rgba(255, 215, 0, 0.1);
  padding: 10px;
}

.page-slot-games .section-why-choose .feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-slot-games .section-why-choose .feature-item p {
  color: #E0E0E0;
  font-size: 0.95em;
  text-align: center;
}

/* Game Types Section */
.page-slot-games .section-game-types .game-type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games .section-game-types .game-card {
  background-color: #2A2A2A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slot-games .section-game-types .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games .section-game-types .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-slot-games .section-game-types .game-card h3 {
  color: #FFD700;
  font-size: 1.6em;
  padding: 15px 15px 0;
  text-align: left;
}

.page-slot-games .section-game-types .game-card h3 a {
  color: #FFD700;
}

.page-slot-games .section-game-types .game-card p {
  color: #E0E0E0;
  font-size: 0.9em;
  padding: 0 15px 15px;
  text-align: left;
}

.page-slot-games .section-game-types .card-button {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 10px 0;
  background: #FFD700;
  color: #1A1A1A;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-slot-games .section-game-types .card-button:hover {
  background: #FFF0B3;
}

/* Registration Guide Section */
.page-slot-games .section-registration-guide ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-slot-games .section-registration-guide ol li {
  counter-increment: step-counter;
  background-color: #2A2A2A;
  margin-bottom: 20px;
  padding: 20px 30px 20px 70px;
  border-radius: 10px;
  position: relative;
  font-size: 1.1em;
  line-height: 1.6;
  color: #F0F0F0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: left;
}

.page-slot-games .section-registration-guide ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A1A1A;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-slot-games .section-registration-guide ol li strong {
  color: #FFD700;
}

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

/* Tips Section */
.page-slot-games .section-tips ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-slot-games .section-tips ul li {
  background-color: #2A2A2A;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #F0F0F0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
  text-align: left;
}

.page-slot-games .section-tips ul li strong {
  color: #FFD700;
}

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

.page-slot-games .section-promotions .promo-card {
  background-color: #2A2A2A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slot-games .section-promotions .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games .section-promotions .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-slot-games .section-promotions .promo-card h3 {
  color: #FFD700;
  font-size: 1.6em;
  padding: 15px 15px 0;
  text-align: left;
}

.page-slot-games .section-promotions .promo-card h3 a {
  color: #FFD700;
}

.page-slot-games .section-promotions .promo-card p {
  color: #E0E0E0;
  font-size: 0.9em;
  padding: 0 15px 15px;
  text-align: left;
}

/* Security and Support Section */
.page-slot-games .section-security-support .security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games .section-security-support .security-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slot-games .section-security-support .security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games .section-security-support .security-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 50%;
  background-color: rgba(255, 215, 0, 0.1);
  padding: 10px;
}

.page-slot-games .section-security-support .security-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-slot-games .section-security-support .security-item p {
  color: #E0E0E0;
  font-size: 0.95em;
  text-align: center;
}

/* FAQ Section */
.page-slot-games .section-faq .faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-slot-games .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2A2A2A;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-slot-games .faq-question:hover {
  background: #3A3A3A;
}

.page-slot-games .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #FFD700;
  text-align: left;
}

.page-slot-games .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-slot-games .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #1F1F1F;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-slot-games .faq-item.active .faq-answer {
  max-height: 500px; /* Đủ lớn để chứa nội dung */
  padding: 20px 25px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-slot-games .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Latest News Section */
.page-slot-games .section-latest-news .news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games .section-latest-news .news-card {
  background-color: #2A2A2A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slot-games .section-latest-news .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games .section-latest-news .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-slot-games .section-latest-news .news-card h3 {
  color: #FFD700;
  font-size: 1.6em;
  padding: 15px 15px 0;
  text-align: left;
}

.page-slot-games .section-latest-news .news-card h3 a {
  color: #FFD700;
}

.page-slot-games .section-latest-news .news-card p {
  color: #E0E0E0;
  font-size: 0.9em;
  padding: 0 15px 15px;
  text-align: left;
}

/* Final CTA Section */
.page-slot-games .section-final-cta {
  background-color: #1A1A1A;
  padding: 80px 20px;
  text-align: center;
}

.page-slot-games .section-final-cta p {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games h1 {
    font-size: 2.8em;
  }
  .page-slot-games h2 {
    font-size: 2em;
  }
  .page-slot-games .hero-section {
    padding: 60px 15px;
  }
  .page-slot-games .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-slot-games .large-button {
    padding: 15px 40px;
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games h1 {
    font-size: 2.2em;
  }
  .page-slot-games h2 {
    font-size: 1.8em;
  }
  .page-slot-games h3 {
    font-size: 1.4em;
  }
  .page-slot-games p {
    font-size: 0.95em;
  }
  .page-slot-games section {
    padding: 40px 0;
  }
  .page-slot-games .hero-image {
    margin-bottom: 20px;
  }
  .page-slot-games .feature-icon, .page-slot-games .security-icon {
    width: 80px;
    height: 80px;
  }
  .page-slot-games .section-registration-guide ol li {
    padding: 15px 20px 15px 60px;
    font-size: 1em;
  }
  .page-slot-games .section-registration-guide ol li::before {
    left: 15px;
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page-slot-games .faq-question {
    padding: 15px 20px;
  }
  .page-slot-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-slot-games .faq-toggle {
    font-size: 20px;
  }
  .page-slot-games .faq-answer {
    padding: 0 20px;
  }
  .page-slot-games .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-slot-games .promo-card h3, .page-slot-games .news-card h3, .page-slot-games .game-card h3 {
    font-size: 1.3em;
  }
  .page-slot-games .promo-card p, .page-slot-games .news-card p, .page-slot-games .game-card p {
    font-size: 0.85em;
  }
  .page-slot-games .card-button {
    padding: 8px 0;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-slot-games h1 {
    font-size: 1.8em;
  }
  .page-slot-games h2 {
    font-size: 1.6em;
  }
  .page-slot-games .hero-section {
    padding: 40px 10px;
  }
  .page-slot-games .cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-slot-games .large-button {
    font-size: 1.1em;
    padding: 12px 30px;
  }
  .page-slot-games .features-grid, .page-slot-games .game-type-cards, .page-slot-games .promo-cards, .page-slot-games .security-grid, .page-slot-games .news-cards {
    grid-template-columns: 1fr;
  }
  .page-slot-games .section-registration-guide ol li {
    font-size: 0.95em;
  }
  .page-slot-games .faq-question h3 {
    font-size: 1em;
  }
  .page-slot-games .faq-toggle {
    font-size: 18px;
  }
}