
    /* CSS cho trang gacam67thomo1 */
    .page-gacam67thomo1 {
      font-family: 'Arial', sans-serif;
      background-color: #000000;
      color: #FFFFFF;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    /* Hero Section */
    .page-gacam67thomo1__hero-section {
      position: relative;
      padding-top: 10px; /* An toàn cho thanh điều hướng cố định */
      background-color: #000000;
      text-align: center;
      padding-bottom: 30px;
    }

    .page-gacam67thomo1__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      object-fit: cover;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-gacam67thomo1__hero-content {
      position: relative;
      z-index: 1;
      margin-top: 20px;
    }

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

    .page-gacam67thomo1__hero-description {
      font-size: 1.1em;
      color: #E0E0E0;
      margin-bottom: 25px;
    }

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

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

    /* Section Styling */
    .page-gacam67thomo1__section {
      padding: 40px 0;
      background-color: #1a1a1a;
      margin-bottom: 20px;
      border-radius: 8px;
    }

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

    .page-gacam67thomo1__section-title {
      font-size: 2em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-gacam67thomo1__text-content {
      font-size: 1em;
      color: #E0E0E0;
      margin-bottom: 20px;
    }

    .page-gacam67thomo1__text-content strong {
      color: #FFD700;
    }

    /* Game Categories */
    .page-gacam67thomo1__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-gacam67thomo1__game-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-gacam67thomo1__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    }

    .page-gacam67thomo1__game-logo {
      width: 100%;
      max-width: 250px; /* Adjust max-width for game logos */
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
      object-fit: contain;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-gacam67thomo1__game-name {
      font-size: 1.1em;
      font-weight: bold;
      color: #FFD700;
      margin-top: 10px;
    }

    /* Features Section */
    .page-gacam67thomo1__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-gacam67thomo1__feature-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-gacam67thomo1__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    }

    .page-gacam67thomo1__feature-icon {
      width: 100%;
      max-width: 300px;
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
      object-fit: cover;
      box-sizing: border-box;
      overflow: hidden;
    }

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

    .page-gacam67thomo1__feature-description {
      font-size: 0.95em;
      color: #E0E0E0;
    }

    /* FAQ Section */
    .page-gacam67thomo1__faq-section {
      padding: 40px 0;
      background-color: #0d0d0d;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-gacam67thomo1__faq-list {
      margin-top: 30px;
    }

    .page-gacam67thomo1__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

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

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

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

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

    .page-gacam67thomo1__faq-item.active .page-gacam67thomo1__faq-toggle {
      transform: rotate(45deg); /* Chuyển '+' thành 'x' hoặc '-' */
    }

    .page-gacam67thomo1__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #E0E0E0;
    }

    .page-gacam67thomo1__faq-item.active .page-gacam67thomo1__faq-answer {
      max-height: 2000px !important; /* Đảm bảo đủ không gian */
      padding: 20px 25px !important;
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .page-gacam67thomo1__hero-section {
        padding-top: 10px; /* An toàn cho thanh điều hướng cố định */
      }
      .page-gacam67thomo1__hero-title {
        font-size: 1.8em;
      }
      .page-gacam67thomo1__hero-description {
        font-size: 0.95em;
      }
      .page-gacam67thomo1__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-gacam67thomo1__section-title {
        font-size: 1.6em;
      }
      .page-gacam67thomo1__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      }
      .page-gacam67thomo1__features-grid {
        grid-template-columns: 1fr;
      }
      .page-gacam67thomo1__faq-question {
        padding: 15px 20px;
      }
      .page-gacam67thomo1__faq-question h3 {
        font-size: 1em;
      }
      .page-gacam67thomo1__faq-answer {
        padding: 0 20px;
      }
      .page-gacam67thomo1__faq-item.active .page-gacam67thomo1__faq-answer {
        padding: 15px 20px !important;
      }
      .page-gacam67thomo1__hero-image,
      .page-gacam67thomo1__game-logo,
      .page-gacam67thomo1__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  