.page-index-latest-promotions {
  --primary-color: #0A2239;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f4f7f6;
  --background-dark: #0A2239;
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.page-index-latest-promotions .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-latest-promotions .text-center {
  text-align: center;
}

.page-index-latest-promotions .section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  position: relative;
}

.page-index-latest-promotions .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* HERO Section */
.page-index-latest-promotions .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a5a 100%);
  color: var(--text-light);
}

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

.page-index-latest-promotions .hero-image {
  width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  overflow: hidden;
}

.page-index-latest-promotions .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-index-latest-promotions .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-latest-promotions .hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions .hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-latest-promotions .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--secondary-color);
}

.page-index-latest-promotions .cta-button:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-latest-promotions .secondary-button {
  background: none;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-index-latest-promotions .secondary-button:hover {
  background: var(--text-light);
  color: var(--primary-color);
  border-color: var(--text-light);
}

/* Module 1: Giới thiệu F168 */
.page-index-latest-promotions .section-intro {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

.page-index-latest-promotions .intro-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions .intro-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions .intro-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 4px solid var(--secondary-color);
  padding: 10px;
}

.page-index-latest-promotions .intro-item h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-latest-promotions .intro-item p {
  font-size: 16px;
  color: var(--text-dark);
}

/* Module 2: Liên kết truy cập nhanh */
.page-index-latest-promotions .section-quick-links {
  padding: 80px 0;
  background-color: #e6eef5;
}

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

.page-index-latest-promotions .link-card {
  display: block;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions .link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-latest-promotions .link-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid var(--secondary-color);
}

.page-index-latest-promotions .link-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-index-latest-promotions .link-card p {
  font-size: 15px;
  color: var(--text-dark);
}

/* Module 3: Core Games/Services */
.page-index-latest-promotions .section-games {
  padding: 80px 0;
  background-color: var(--background-light);
}

.page-index-latest-promotions .games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-promotions .game-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions .game-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions .game-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-latest-promotions .game-item h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-latest-promotions .game-item p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-index-latest-promotions .btn-game {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions .btn-game:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
}

/* Module 4: Ưu đãi hoạt động */
.page-index-latest-promotions .section-promotions {
  padding: 80px 0;
  background-color: #e6eef5;
}

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

.page-index-latest-promotions .promo-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions .promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-latest-promotions .promo-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-latest-promotions .promo-card p {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-index-latest-promotions .btn-promo {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions .btn-promo:hover {
  background-color: #071a2b;
  transform: translateY(-2px);
}

/* Module 5: An toàn & Hỗ trợ khách hàng */
.page-index-latest-promotions .section-security-support {
  padding: 80px 0;
  background-color: var(--background-light);
}

.page-index-latest-promotions .security-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-promotions .ss-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions .ss-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions .ss-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 4px solid var(--secondary-color);
  padding: 10px;
}

.page-index-latest-promotions .ss-item h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-index-latest-promotions .ss-item p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-index-latest-promotions .btn-support {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions .btn-support:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
}

/* Module 6: FAQ */
.page-index-latest-promotions .section-faq {
  padding: 80px 0;
  background-color: #e6eef5;
}

.page-index-latest-promotions .faq-list {
  margin-top: 40px;
}

.page-index-latest-promotions .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions .faq-question:hover {
  background: #f5f5f5;
}

.page-index-latest-promotions .faq-question h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin: 0;
}

.page-index-latest-promotions .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-index-latest-promotions .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-index-latest-promotions .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  border: 1px solid #e0e0e0;
  border-top: none;
}

.page-index-latest-promotions .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.page-index-latest-promotions .faq-answer p {
  font-size: 16px;
  color: var(--text-dark);
}

/* Module 7: Latest Blog Content */
.page-index-latest-promotions .section-blog {
  padding: 80px 0;
  background-color: var(--background-light);
}

.page-index-latest-promotions .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-promotions .blog-post-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions .blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions .blog-post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-index-latest-promotions .blog-post-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  padding: 20px 25px 10px;
}

.page-index-latest-promotions .blog-post-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-index-latest-promotions .blog-post-card h3 a:hover {
  text-decoration: underline;
}

.page-index-latest-promotions .blog-post-card p {
  font-size: 15px;
  color: var(--text-dark);
  padding: 0 25px 15px;
}

.page-index-latest-promotions .blog-post-card .post-date {
  font-size: 13px;
  color: #888;
  padding: 0 25px 20px;
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions .hero-content h1 {
    font-size: 40px;
  }
  .page-index-latest-promotions .hero-content p {
    font-size: 18px;
  }
  .page-index-latest-promotions .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions .hero-section {
    padding: 40px 15px;
  }
  .page-index-latest-promotions .hero-content h1 {
    font-size: 32px;
  }
  .page-index-latest-promotions .hero-content p {
    font-size: 16px;
  }
  .page-index-latest-promotions .cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin: 8px 10px;
  }
  .page-index-latest-promotions .section-intro, 
  .page-index-latest-promotions .section-quick-links, 
  .page-index-latest-promotions .section-games, 
  .page-index-latest-promotions .section-promotions, 
  .page-index-latest-promotions .section-security-support, 
  .page-index-latest-promotions .section-faq, 
  .page-index-latest-promotions .section-blog {
    padding: 60px 0;
  }
  .page-index-latest-promotions .section-title {
    font-size: 28px;
  }
  .page-index-latest-promotions .intro-grid, 
  .page-index-latest-promotions .links-grid, 
  .page-index-latest-promotions .games-grid, 
  .page-index-latest-promotions .promotions-grid, 
  .page-index-latest-promotions .security-support-grid, 
  .page-index-latest-promotions .blog-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions .faq-question {
    padding: 15px 20px;
  }
  .page-index-latest-promotions .faq-question h3 {
    font-size: 16px;
  }
  .page-index-latest-promotions .faq-answer {
    padding: 0 20px;
  }
  .page-index-latest-promotions .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions .hero-content h1 {
    font-size: 28px;
  }
  .page-index-latest-promotions .hero-content p {
    font-size: 14px;
  }
  .page-index-latest-promotions .cta-button {
    padding: 10px 20px;
    font-size: 14px;
    margin: 5px;
  }
  .page-index-latest-promotions .section-title {
    font-size: 24px;
  }
  .page-index-latest-promotions .intro-item img, 
  .page-index-latest-promotions .link-card img, 
  .page-index-latest-promotions .ss-item img {
    width: 100px;
    height: 100px;
  }
  .page-index-latest-promotions .intro-item h3, 
  .page-index-latest-promotions .link-card h3, 
  .page-index-latest-promotions .game-item h3, 
  .page-index-latest-promotions .promo-card h3, 
  .page-index-latest-promotions .ss-item h3, 
  .page-index-latest-promotions .blog-post-card h3 {
    font-size: 20px;
  }
}