
    .page-gacam67acom {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Đen */
      color: #ffffff; /* Trắng */
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 80px; /* Để chừa chỗ cho nút nổi */
    }

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

    .page-gacam67acom__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-gacam67acom__section--light {
      background-color: #1a1a1a; /* Xám đậm hơn */
    }

    .page-gacam67acom__hero-section {
      position: relative;
      color: #ffffff;
      text-align: center;
      padding-top: 150px; /* An toàn cho thanh điều hướng cố định trên di động */
      padding-bottom: 40px;
    }

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

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

    .page-gacam67acom__hero-title {
      font-size: 2.5em;
      color: #FFD700; /* Vàng */
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-gacam67acom__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-gacam67acom__button {
      display: inline-block;
      background-color: #FFD700; /* Vàng */
      color: #000000; /* Đen */
      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;
      border: none;
      cursor: pointer;
    }

    .page-gacam67acom__button:hover {
      background-color: #e6c200; /* Vàng đậm hơn */
      transform: translateY(-2px);
    }

    .page-gacam67acom__heading {
      font-size: 2em;
      color: #FFD700; /* Vàng */
      margin-bottom: 30px;
      text-align: center;
    }

    .page-gacam67acom__text-block {
      max-width: 800px;
      margin: 0 auto 30px auto;
      font-size: 1em;
      color: #e0e0e0;
    }

    .page-gacam67acom__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-gacam67acom__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 200px; /* Đảm bảo kích thước tối thiểu */
    }

    .page-gacam67acom__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    }

    .page-gacam67acom__game-card-image {
      width: 100%;
      height: 120px; /* Kích thước cố định cho ảnh game */
      object-fit: contain; /* Đảm bảo ảnh không bị biến dạng */
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .page-gacam67acom__game-card-title {
      font-size: 1.1em;
      color: #FFD700;
      font-weight: bold;
      margin-bottom: 10px;
      pointer-events: none; /* Ngăn chặn việc chặn click */
    }

    .page-gacam67acom__game-card-link {
      color: #FFD700;
      text-decoration: none;
      display: block;
      padding: 5px 0;
      transition: color 0.3s ease;
    }

    .page-gacam67acom__game-card-link:hover {
      color: #ffffff;
    }

    .page-gacam67acom__gamelogo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-gacam67acom__gamelogo-item {
      background-color: #0d0d0d;
      border-radius: 8px;
      padding: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      width: 100%; /* Đảm bảo card chiếm đủ không gian */
      max-width: 150px; /* Giới hạn chiều rộng tối đa */
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-gacam67acom__gamelogo-item:hover {
      transform: scale(1.05);
    }

    .page-gacam67acom__gamelogo-image {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 5px;
      min-width: 100px; /* Đảm bảo kích thước tối thiểu cho logo */
      min-height: 50px; /* Đảm bảo kích thước tối thiểu cho logo */
    }

    .page-gacam67acom__steps-list {
      list-style: none;
      padding: 0;
      text-align: left;
      max-width: 700px;
      margin: 0 auto 30px auto;
    }

    .page-gacam67acom__step-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .page-gacam67acom__step-number {
      background-color: #FFD700;
      color: #000000;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      flex-shrink: 0;
    }

    .page-gacam67acom__step-content h3 {
      color: #FFD700;
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.2em;
    }

    .page-gacam67acom__step-content p {
      color: #e0e0e0;
      margin-bottom: 0;
    }

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

    .page-gacam67acom__faq-section {
      background-color: #0d0d0d;
    }

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

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

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

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

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

    .page-gacam67acom__faq-item.active .page-gacam67acom__faq-toggle {
      transform: rotate(45deg); /* Hoặc xoay 90 độ nếu muốn dấu X */
    }

    .page-gacam67acom__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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;
    }

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

    .page-gacam67acom__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #FFD700; /* Vàng */
      color: #000000; /* Đen */
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap; /* Ngăn chặn xuống dòng */
    }

    .page-gacam67acom__floating-button:hover {
      background-color: #e6c200;
      transform: translateX(-50%) translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-gacam67acom__hero-section {
        padding-top: 150px; /* An toàn cho thanh điều hướng cố định trên di động */
      }

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

      .page-gacam67acom__hero-subtitle {
        font-size: 1em;
      }

      .page-gacam67acom__heading {
        font-size: 1.6em;
      }

      .page-gacam67acom__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-gacam67acom__game-card-image {
        height: 100px;
      }

      .page-gacam67acom__game-card-title {
        font-size: 1em;
      }

      .page-gacam67acom__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-gacam67acom__step-content h3 {
        font-size: 1.1em;
      }

      .page-gacam67acom__step-number {
        margin-bottom: 10px;
      }

      .page-gacam67acom__gamelogo-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }

      .page-gacam67acom__gamelogo-image {
        min-width: 80px;
        min-height: 40px;
      }

      .page-gacam67acom__faq-question {
        padding: 12px 15px;
      }

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

      .page-gacam67acom__faq-answer {
        padding: 0 15px;
      }

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

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

      .page-gacam67acom__floating-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      /* Force responsive image styles */
      .page-gacam67acom__hero-image,
      .page-gacam67acom__game-card-image,
      .page-gacam67acom__gamelogo-image,
      .page-gacam67acom__step-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-gacam67acom__game-card-image-wrapper,
      .page-gacam67acom__gamelogo-item,
      .page-gacam67acom__step-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (min-width: 769px) {
      .page-gacam67acom__hero-section {
        padding-top: 10px; /* An toàn cho thanh điều hướng cố định trên desktop */
      }
    }
  