
    /* Page-specific CSS for Lo To 188 */
    .page-loto188 {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a1a; /* Nền tối */
      color: #ffffff; /* Chữ trắng */
      line-height: 1.6;
      padding-bottom: 50px; /* Khoảng trống cho footer */
    }

    .page-loto188__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-loto188__section {
      padding: 40px 0;
    }

    .page-loto188__section-title {
      color: #FFD700; /* Vàng cho tiêu đề */
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.2em;
      position: relative;
      padding-bottom: 10px;
    }

    .page-loto188__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }

    /* Hero Section */
    .page-loto188__hero-section {
      background-color: #000;
      padding-top: 10px; /* Khoảng đệm để tránh bị header cố định che khuất */
      padding-bottom: 30px;
      text-align: center;
    }

    .page-loto188__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-loto188__hero-content {
      padding: 0 15px;
    }

    .page-loto188__hero-title {
      font-size: 2.8em;
      color: #FFD700;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-loto188__hero-subtitle {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-loto188__button {
      display: inline-block;
      background-color: #FFD700;
      color: #1a1a1a;
      padding: 12px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-loto188__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Intro Section */
    .page-loto188__intro-section {
      background-color: #222222;
    }

    .page-loto188__intro-text {
      font-size: 1.1em;
      text-align: justify;
      margin-bottom: 20px;
      color: #e0e0e0;
    }

    .page-loto188__intro-highlight {
      color: #FFD700;
      font-weight: bold;
    }

    /* Game Categories Section */
    .page-loto188__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      padding: 0 15px;
    }

    .page-loto188__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-loto188__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-loto188__game-card-image {
      width: 100%;
      max-width: 100%;
      height: 200px; /* Chiều cao cố định để nhất quán */
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
    }

    .page-loto188__game-card-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-loto188__game-card-description {
      font-size: 0.95em;
      color: #cccccc;
      padding: 0 15px;
    }

    /* Game Providers Section */
    .page-loto188__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Đảm bảo đủ không gian cho hình ảnh 200x200px */
      gap: 20px;
      padding: 0 15px;
      justify-items: center;
    }

    .page-loto188__provider-logo {
      width: 200px; /* Nghiêm ngặt 200px */
      height: 200px; /* Nghiêm ngặt 200px */
      object-fit: contain;
      background-color: #333333;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-loto188__provider-logo:hover {
      transform: scale(1.05);
    }

    /* CTA Section */
    .page-loto188__cta-section {
      background-color: #222222;
      text-align: center;
      padding: 50px 15px;
      border-top: 1px solid #333;
    }

    .page-loto188__cta-title {
      font-size: 2em;
      color: #FFD700;
      margin-bottom: 20px;
    }

    .page-loto188__cta-description {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Why Choose Section */
    .page-loto188__why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 0 15px;
    }

    .page-loto188__why-choose-item {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-loto188__why-choose-item:hover {
      transform: translateY(-5px);
    }

    .page-loto188__why-choose-icon {
      width: 200px; /* Kích thước tối thiểu 200x200px */
      height: 200px; /* Kích thước tối thiểu 200x200px */
      margin-bottom: 20px;
      display: inline-block;
      object-fit: contain; /* Đảm bảo hình ảnh vừa vặn */
    }

    .page-loto188__why-choose-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-loto188__why-choose-description {
      font-size: 1em;
      color: #cccccc;
    }

    /* FAQ Section */
    .page-loto188__faq-section {
      background-color: #222222;
    }

    .page-loto188__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-loto188__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-loto188__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #333333;
      color: #FFD700;
      font-size: 1.15em;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      border-bottom: 1px solid transparent;
    }

    .page-loto188__faq-question:hover {
      background-color: #444444;
    }
    
    .page-loto188__faq-question h3 {
      margin: 0;
      color: #FFD700;
      font-size: 1.15em;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-loto188__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      margin-left: 15px;
      pointer-events: none; /* Ngăn toggle chặn sự kiện click */
      transition: transform 0.3s ease;
    }

    .page-loto188__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #2a2a2a;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-loto188__faq-item.active .page-loto188__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px !important;
      opacity: 1;
    }

    .page-loto188__faq-answer p {
      margin: 0;
    }

    /* Social Media Section */
    .page-loto188__social-media {
      background-color: #1a1a1a;
      text-align: center;
      padding: 40px 15px;
      border-top: 1px solid #333;
    }

    .page-loto188__social-icons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-loto188__social-icon-link {
      display: inline-block;
      width: 200px; /* Kích thước tối thiểu 200x200px */
      height: 200px; /* Kích thước tối thiểu 200x200px */
      border-radius: 8px; /* Bo góc nhẹ */
      background-color: #333333;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      text-decoration: none;
    }

    .page-loto188__social-icon-link:hover {
      background-color: #FFD700;
      transform: translateY(-3px);
    }

    .page-loto188__social-icon {
      width: 150px; /* Vừa vặn bên trong khu vực 200x200px */
      height: 150px;
      object-fit: contain;
      /* KHÔNG SỬ DỤNG filter để thay đổi màu */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-loto188__hero-title {
        font-size: 2em;
      }

      .page-loto188__hero-subtitle {
        font-size: 1.1em;
      }

      .page-loto188__section-title {
        font-size: 1.8em;
      }

      .page-loto188__game-categories-grid,
      .page-loto188__providers-grid,
      .page-loto188__why-choose-grid {
        grid-template-columns: 1fr;
      }

      .page-loto188__game-card-image {
        height: 180px;
      }

      .page-loto188__cta-title {
        font-size: 1.6em;
      }

      .page-loto188__cta-description {
        font-size: 1em;
      }

      .page-loto188__faq-question {
        font-size: 1em;
        padding: 15px;
      }
      .page-loto188__faq-question h3 {
        font-size: 1em;
      }

      .page-loto188__faq-answer {
        padding: 0 15px;
      }
      .page-loto188__faq-item.active .page-loto188__faq-answer {
        padding: 15px !important;
      }

      /* Tối ưu hóa hình ảnh cho thiết bị di động */
      .page-loto188 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-loto188__game-card-image,
      .page-loto188__why-choose-icon {
        width: 100% !important; /* Đảm bảo hình ảnh không vượt quá chiều rộng màn hình */
        height: auto !important; /* Duy trì tỷ lệ khung hình */
        min-height: 180px !important; /* Đảm bảo chiều cao tối thiểu */
        object-fit: cover !important; /* Điều chỉnh cách hiển thị */
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-loto188__provider-logo,
      .page-loto188__social-icon-link {
        width: 200px !important; /* Duy trì kích thước tối thiểu 200px ngay cả trên di động */
        height: 200px !important;
        max-width: 100% !important; /* Đảm bảo không tràn màn hình nếu màn hình nhỏ hơn 200px */
        box-sizing: border-box !important;
      }
      .page-loto188__social-icon {
        width: 150px !important;
        height: 150px !important;
      }
    }
    
    /* Đảm bảo tất cả các vùng chứa hình ảnh đều phản hồi */
    .page-loto188__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

  