
    /* CSS cho trang 68 Game Bài */
    :root {
      --page-68gamebai-primary-color: #e44d26; /* Cam đỏ */
      --page-68gamebai-secondary-color: #ffb74d; /* Vàng cam */
      --page-68gamebai-dark-bg: #1a1a1a; /* Nền tối */
      --page-68gamebai-light-text: #f0f0f0; /* Chữ sáng */
      --page-68gamebai-gray-text: #cccccc; /* Chữ xám */
      --page-68gamebai-accent-color: #4CAF50; /* Xanh lá nhấn */
      --page-68gamebai-spacing-unit: 1rem;
    }

    .page-68gamebai {
      font-family: 'Arial', sans-serif;
      color: var(--page-68gamebai-light-text);
      background-color: var(--page-68gamebai-dark-bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-68gamebai__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--page-68gamebai-spacing-unit);
    }

    /* Hero Section */
    .page-68gamebai__hero-section {
      position: relative;
      background-image: url('[GALLERY:hero:68gamebai,banner,mobile_gaming]');
      background-size: cover;
      background-position: center top; /* Đảm bảo banner ở trên cùng */
      background-repeat: no-repeat;
      height: 60vh; /* Chiều cao banner */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 160px; /* Vùng an toàn cho menu nổi */
      min-height: 400px; /* Đảm bảo chiều cao tối thiểu */
    }

    .page-68gamebai__hero-content {
      position: relative;
      z-index: 2;
      padding: var(--page-68gamebai-spacing-unit);
      background: rgba(0, 0, 0, 0.5); /* Lớp phủ để chữ dễ đọc */
      border-radius: 8px;
      max-width: 90%;
    }

    .page-68gamebai__hero-content h1 {
      font-size: 2.5rem;
      color: var(--page-68gamebai-primary-color);
      margin-bottom: 0.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-68gamebai__hero-content p {
      font-size: 1.2rem;
      color: var(--page-68gamebai-light-text);
      margin-bottom: 1.5rem;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Floating Button */
    .page-68gamebai__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-68gamebai-accent-color);
      color: var(--page-68gamebai-light-text);
      padding: 1rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .page-68gamebai__floating-button:hover {
      background-color: #45a049;
      transform: translateY(-5px);
    }

    .page-68gamebai__floating-button span {
      display: none; /* Ẩn chữ trên di động mặc định */
    }

    .page-68gamebai__floating-button svg {
      width: 24px;
      height: 24px;
      fill: var(--page-68gamebai-light-text);
    }

    /* General Section Styling */
    .page-68gamebai__section {
      padding: 3rem 0;
      text-align: center;
    }

    .page-68gamebai__section--alt-bg {
      background-color: #222;
    }

    .page-68gamebai__section-title {
      font-size: 2rem;
      color: var(--page-68gamebai-primary-color);
      margin-bottom: 2rem;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-68gamebai__text-content {
      max-width: 800px;
      margin: 0 auto 2rem auto;
      text-align: left;
      font-size: 1.1rem;
      color: var(--page-68gamebai-gray-text);
    }

    .page-68gamebai__text-content p {
      margin-bottom: 1rem;
    }

    .page-68gamebai__text-content strong {
      color: var(--page-68gamebai-primary-color);
    }

    /* Game Categories/Products */
    .page-68gamebai__games-grid,
    .page-68gamebai__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .page-68gamebai__game-card,
    .page-68gamebai__provider-logo {
      background-color: #282828;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: var(--page-68gamebai-light-text);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .page-68gamebai__game-card:hover,
    .page-68gamebai__provider-logo:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-68gamebai__game-card img,
    .page-68gamebai__provider-logo img {
      width: 100%;
      max-width: 120px;
      height: auto;
      border-radius: 5px;
      margin-bottom: 0.8rem;
    }

    .page-68gamebai__game-card h3 {
      font-size: 1.1rem;
      color: var(--page-68gamebai-primary-color);
      margin: 0;
      text-align: center;
    }

    .page-68gamebai__provider-logo h4 {
      font-size: 0.9rem;
      color: var(--page-68gamebai-gray-text);
      margin: 0;
      text-align: center;
    }

    /* Promotions Section */
    .page-68gamebai__promotion-item {
      background-color: #282828;
      border-radius: 10px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-68gamebai__promotion-item h3 {
      color: var(--page-68gamebai-secondary-color);
      font-size: 1.5rem;
      margin-top: 0;
    }

    .page-68gamebai__promotion-item p {
      color: var(--page-68gamebai-gray-text);
      margin-bottom: 1rem;
    }

    .page-68gamebai__promotion-item .page-68gamebai__button {
      display: inline-block;
      background-color: var(--page-68gamebai-primary-color);
      color: var(--page-68gamebai-light-text);
      padding: 0.8rem 1.5rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-68gamebai__promotion-item .page-68gamebai__button:hover {
      background-color: #d13a17;
    }

    /* Guide Section */
    .page-68gamebai__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
    }

    .page-68gamebai__guide-step {
      background-color: #282828;
      border-radius: 10px;
      padding: 1.5rem;
      flex: 1 1 calc(33% - 2rem);
      min-width: 280px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
    }

    .page-68gamebai__guide-step h4 {
      color: var(--page-68gamebai-primary-color);
      font-size: 1.3rem;
      margin-top: 0;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .page-68gamebai__guide-step h4 .page-68gamebai__step-number {
      background-color: var(--page-68gamebai-secondary-color);
      color: var(--page-68gamebai-dark-bg);
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1rem;
    }

    .page-68gamebai__guide-step p {
      color: var(--page-68gamebai-gray-text);
    }

    /* Why Choose Section */
    .page-68gamebai__why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .page-68gamebai__why-choose-item {
      background-color: #282828;
      border-radius: 10px;
      padding: 1.5rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
    }

    .page-68gamebai__why-choose-item h3 {
      color: var(--page-68gamebai-secondary-color);
      font-size: 1.3rem;
      margin-top: 0;
      margin-bottom: 0.8rem;
    }

    .page-68gamebai__why-choose-item p {
      color: var(--page-68gamebai-gray-text);
    }

    /* Payment and Social Section */
    .page-68gamebai__payment-methods,
    .page-68gamebai__social-media {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .page-68gamebai__payment-method-logo,
    .page-68gamebai__social-icon {
      background-color: #333;
      border-radius: 8px;
      padding: 10px 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
      text-decoration: none;
      color: var(--page-68gamebai-light-text);
      font-weight: bold;
    }

    .page-68gamebai__payment-method-logo:hover,
    .page-68gamebai__social-icon:hover {
      transform: translateY(-3px);
    }

    .page-68gamebai__payment-method-logo img,
    .page-68gamebai__social-icon img {
      height: 30px;
      width: auto;
      max-width: 80px;
      margin-right: 8px;
    }

    .page-68gamebai__social-icon svg {
      width: 30px;
      height: 30px;
      fill: var(--page-68gamebai-light-text);
    }

    /* FAQ Section */
    .page-68gamebai__faq-item {
      background-color: #282828;
      border-radius: 10px;
      margin-bottom: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
    }

    .page-68gamebai__faq-question {
      display: block;
      background-color: #333;
      color: var(--page-68gamebai-light-text);
      padding: 1rem 1.5rem;
      cursor: pointer;
      font-size: 1.1rem;
      font-weight: bold;
      position: relative;
      transition: background-color 0.3s ease;
    }

    .page-68gamebai__faq-question::after {
      content: '+';
      position: absolute;
      right: 1.5rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }

    .page-68gamebai__faq-question.active::after {
      content: '-';
      transform: translateY(-50%) rotate(0deg);
    }

    .page-68gamebai__faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease-out;
      color: var(--page-68gamebai-gray-text);
    }

    .page-68gamebai__faq-answer p {
      padding-bottom: 1rem;
      margin-top: 1rem;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-68gamebai__hero-section {
        height: 50vh;
        padding-top: 140px; /* Vùng an toàn nhỏ hơn trên di động */
      }

      .page-68gamebai__hero-content h1 {
        font-size: 2rem;
      }

      .page-68gamebai__hero-content p {
        font-size: 1rem;
      }

      .page-68gamebai__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        border-radius: 40px;
      }

      .page-68gamebai__floating-button span {
        display: inline; /* Hiển thị chữ trên di động */
      }

      .page-68gamebai__section-title {
        font-size: 1.8rem;
      }

      .page-68gamebai__text-content {
        font-size: 1rem;
      }

      .page-68gamebai__games-grid,
      .page-68gamebai__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
      }

      .page-68gamebai__game-card img,
      .page-68gamebai__provider-logo img {
        max-width: 80px;
      }

      .page-68gamebai__guide-step {
        flex: 1 1 100%;
        min-width: unset;
      }

      .page-68gamebai__why-choose-grid {
        grid-template-columns: 1fr;
      }

      .page-68gamebai__payment-method-logo img,
      .page-68gamebai__social-icon img {
        height: 25px;
        max-width: 60px;
      }
      .page-68gamebai__payment-method-logo,
      .page-68gamebai__social-icon {
        padding: 8px 12px;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .page-68gamebai__hero-section {
        height: 45vh;
        padding-top: 120px;
      }
      .page-68gamebai__hero-content h1 {
        font-size: 1.8rem;
      }
      .page-68gamebai__hero-content p {
        font-size: 0.9rem;
      }
      .page-68gamebai__floating-button {
        bottom: 10px;
        right: 10px;
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
      }
      .page-68gamebai__floating-button span {
        display: none; /* Ẩn chữ trên màn hình rất nhỏ để tiết kiệm không gian */
      }
      .page-68gamebai__floating-button svg {
        width: 20px;
        height: 20px;
      }
      .page-68gamebai__section-title {
        font-size: 1.5rem;
      }
      .page-68gamebai__games-grid,
      .page-68gamebai__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
      }
      .page-68gamebai__game-card h3 {
        font-size: 1rem;
      }
      .page-68gamebai__provider-logo h4 {
        font-size: 0.8rem;
      }
    }
  