
    /* CSS Styles for page-gacam67 */
    :root {
      --page-gacam67-primary-color: #e44d26; /* Cam đỏ */
      --page-gacam67-secondary-color: #ffb74d; /* Cam nhạt */
      --page-gacam67-dark-color: #2c3e50; /* Xám đậm */
      --page-gacam67-light-color: #ecf0f1; /* Xám nhạt */
      --page-gacam67-text-color: #333333; /* Màu chữ chính */
      --page-gacam67-white: #ffffff;
      --page-gacam67-gradient: linear-gradient(90deg, #e44d26, #ff7043);
    }

    .page-gacam67 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-gacam67-text-color);
      background-color: var(--page-gacam67-light-color);
      padding-bottom: 80px; /* Space for fixed button */
    }

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

    .page-gacam67-hero {
      position: relative;
      width: 100%;
      height: 250px; /* Adjust height for mobile */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-color: var(--page-gacam67-dark-color);
      color: var(--page-gacam67-white);
      margin-bottom: 20px;
    }

    .page-gacam67-hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.6);
      z-index: 1;
    }

    .page-gacam67-hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
    }

    .page-gacam67-hero-content h1 {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: var(--page-gacam67-white);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-gacam67-hero-content p {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-gacam67-white);
      text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    }

    .page-gacam67-button {
      display: inline-block;
      padding: 12px 25px;
      background: var(--page-gacam67-gradient);
      color: var(--page-gacam67-white);
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      border: none;
      cursor: pointer;
    }

    .page-gacam67-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.3);
      opacity: 0.9;
    }

    .page-gacam67-section {
      background-color: var(--page-gacam67-white);
      padding: 30px 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-gacam67-section h2 {
      color: var(--page-gacam67-primary-color);
      font-size: 1.8em;
      margin-bottom: 20px;
      text-align: center;
      border-bottom: 2px solid var(--page-gacam67-secondary-color);
      padding-bottom: 10px;
    }

    .page-gacam67-section h3 {
      color: var(--page-gacam67-dark-color);
      font-size: 1.4em;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-gacam67-section p {
      margin-bottom: 15px;
      color: var(--page-gacam67-text-color);
    }

    .page-gacam67-section ul {
      list-style-type: disc;
      padding-left: 20px;
      margin-bottom: 15px;
    }

    .page-gacam67-section ul li {
      margin-bottom: 8px;
      color: var(--page-gacam67-text-color);
    }

    .page-gacam67-image-wrapper {
      text-align: center;
      margin: 20px 0;
    }

    .page-gacam67-image-wrapper img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

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

    .page-gacam67-game-card {
      background-color: var(--page-gacam67-light-color);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 150px;
    }

    .page-gacam67-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .page-gacam67-game-card img {
      width: 70px;
      height: 70px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-gacam67-game-card h4 {
      font-size: 1.1em;
      color: var(--page-gacam67-dark-color);
      margin-bottom: 0;
    }

    .page-gacam67-faq-item {
      margin-bottom: 15px;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }

    .page-gacam67-faq-item:last-child {
      border-bottom: none;
    }

    .page-gacam67-faq-question {
      font-weight: bold;
      color: var(--page-gacam67-primary-color);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
    }

    .page-gacam67-faq-question::after {
      content: '+';
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-gacam67-faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-gacam67-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      color: var(--page-gacam67-text-color);
      padding: 0 10px;
    }

    .page-gacam67-faq-answer p {
      margin-top: 10px;
    }

    .page-gacam67-floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--page-gacam67-gradient);
      color: var(--page-gacam67-white);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      z-index: 1000;
      white-space: nowrap;
      animation: page-gacam67-pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-gacam67-floating-button:hover {
      transform: translateX(-50%) translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }

    @keyframes page-gacam67-pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.03); }
      100% { transform: translateX(-50%) scale(1); }
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-gacam67-hero {
        height: 200px;
      }
      .page-gacam67-hero-content h1 {
        font-size: 1.8em;
      }
      .page-gacam67-hero-content p {
        font-size: 1em;
      }
      .page-gacam67-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-gacam67-section h2 {
        font-size: 1.5em;
      }
      .page-gacam67-section h3 {
        font-size: 1.2em;
      }
      .page-gacam67-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-gacam67-floating-button {
        font-size: 1em;
        padding: 12px 25px;
        bottom: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-gacam67-hero {
        height: 180px;
      }
      .page-gacam67-hero-content h1 {
        font-size: 1.5em;
      }
      .page-gacam67-hero-content p {
        font-size: 0.9em;
      }
      .page-gacam67-button {
        padding: 8px 18px;
        font-size: 0.85em;
      }
      .page-gacam67-section {
        padding: 20px 15px;
      }
      .page-gacam67-section h2 {
        font-size: 1.3em;
      }
      .page-gacam67-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-gacam67-floating-button {
        font-size: 0.9em;
        padding: 10px 20px;
        bottom: 10px;
      }
    }
  