
    /* CSS Styles for page-bongdaok9 */
    .page-bongdaok9 {
      font-family: 'Arial', sans-serif;
      background-color: #000;
      color: #fff;
      line-height: 1.6;
      padding-bottom: 60px; /* Dành chỗ cho footer/nút nổi tiềm năng */
    }

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

    .page-bongdaok9__hero-section {
      text-align: center;
      padding-top: 150px; /* Điều chỉnh để đảm bảo vùng an toàn cho header cố định */
      padding-bottom: 40px;
      background-color: #1a1a1a;
    }

    .page-bongdaok9__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-bongdaok9__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-bongdaok9__hero-title {
      font-size: 2.8em;
      color: #FFD700; /* Vàng */
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-bongdaok9__hero-description {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-bongdaok9__cta-button {
      display: inline-block;
      background-color: #FFD700; /* Vàng */
      color: #000;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .page-bongdaok9__cta-button:hover {
      background-color: #e0b800;
      transform: translateY(-2px);
    }

    .page-bongdaok9__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-bongdaok9__section--dark {
        background-color: #0d0d0d;
    }

    .page-bongdaok9__section-title {
      font-size: 2.2em;
      color: #FFD700;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-bongdaok9__text-content {
      max-width: 900px;
      margin: 0 auto 30px auto;
      text-align: left;
      font-size: 1.1em;
      color: #e0e0e0;
    }

    .page-bongdaok9__text-content p {
      margin-bottom: 15px;
    }

    .page-bongdaok9__text-content h3 {
        color: #FFD700;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.5em;
    }

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

    .page-bongdaok9__game-card {
      background-color: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-bongdaok9__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }

    .page-bongdaok9__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-bongdaok9__game-image {
      width: 100%;
      height: 200px; /* Đảm bảo kích thước tối thiểu và chiều cao nhất quán */
      object-fit: cover;
      display: block;
    }

    .page-bongdaok9__game-content {
      padding: 20px;
    }

    .page-bongdaok9__game-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .page-bongdaok9__game-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-bongdaok9__game-link {
      display: inline-block;
      background-color: #FFD700;
      color: #000;
      padding: 8px 18px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .page-bongdaok9__game-link:hover {
      background-color: #e0b800;
    }

    .page-bongdaok9__faq-section {
        background-color: #0d0d0d;
        padding: 60px 0;
        text-align: center;
    }

    .page-bongdaok9__faq-list {
        max-width: 900px;
        margin: 40px auto 0 auto;
        text-align: left;
    }

    .page-bongdaok9__faq-item {
        background-color: #1a1a1a;
        margin-bottom: 15px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-bongdaok9__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 25px;
        background-color: #2a2a2a;
        color: #fff;
        cursor: pointer;
        user-select: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-bongdaok9__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-bongdaok9__faq-question h3 {
        margin: 0;
        color: #FFD700;
        font-size: 1.1em; /* Đảm bảo h3 bên trong không quá lớn */
        pointer-events: none; /* Ngăn h3 chặn sự kiện click trên div cha */
    }

    .page-bongdaok9__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Ngăn toggle chặn sự kiện click trên div cha */
    }

    .page-bongdaok9__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Padding ban đầu 0 */
        color: #e0e0e0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        font-size: 0.95em;
    }

    .page-bongdaok9__faq-answer p {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .page-bongdaok9__faq-item.active .page-bongdaok9__faq-answer {
        max-height: 2000px !important; /* Đủ lớn */
        padding: 20px 25px !important; /* Ghi đè padding ban đầu */
        opacity: 1;
    }

    .page-bongdaok9__faq-item.active .page-bongdaok9__faq-toggle {
        transform: rotate(45deg); /* Thay đổi + thành X hoặc tương tự */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-bongdaok9__hero-section {
        padding-top: 100px; /* Giảm padding cho di động */
      }

      .page-bongdaok9__hero-title {
        font-size: 2em;
      }

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

      .page-bongdaok9__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

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

      .page-bongdaok9__game-grid {
        grid-template-columns: 1fr;
      }

      .page-bongdaok9__game-image {
        height: 180px;
      }

      .page-bongdaok9__game-title {
        font-size: 1.2em;
      }

      .page-bongdaok9__game-description {
        font-size: 0.9em;
      }

      .page-bongdaok9__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-bongdaok9__faq-question h3 {
        font-size: 1em;
      }

      .page-bongdaok9__faq-answer {
        padding: 0 20px;
        font-size: 0.9em;
      }

      .page-bongdaok9__faq-item.active .page-bongdaok9__faq-answer {
        padding: 15px 20px !important;
      }

      /* Force image responsiveness */
      .page-bongdaok9__hero-image,
      .page-bongdaok9__game-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-bongdaok9__hero-image-wrapper,
      .page-bongdaok9__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  