
    :root {
      --page-game-68k-primary-color: #e44d26; /* Một màu cam đỏ mạnh mẽ */
      --page-game-68k-secondary-color: #333;
      --page-game-68k-accent-color: #ffc107; /* Màu vàng nổi bật */
      --page-game-68k-background-dark: #1a1a1a;
      --page-game-68k-background-light: #2c2c2c;
      --page-game-68k-text-light: #f0f0f0;
      --page-game-68k-text-dark: #333;
      --page-game-68k-border-color: #444;
      --page-game-68k-spacing-unit: 1rem;
    }

    /* Base styles for the page content */
    .page-game-68k {
      font-family: 'Arial', sans-serif;
      color: var(--page-game-68k-text-light);
      background-color: var(--page-game-68k-background-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-game-68k__section {
      padding: calc(2 * var(--page-game-68k-spacing-unit)) var(--page-game-68k-spacing-unit);
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-game-68k__section--dark {
      background-color: var(--page-game-68k-background-dark);
    }

    .page-game-68k__section--light {
      background-color: var(--page-game-68k-background-light);
    }

    .page-game-68k__heading {
      color: var(--page-game-68k-primary-color);
      margin-bottom: calc(1.5 * var(--page-game-68k-spacing-unit));
      font-size: 2.5rem;
      font-weight: bold;
    }

    .page-game-68k__subheading {
      color: var(--page-game-68k-text-light);
      margin-bottom: var(--page-game-68k-spacing-unit);
      font-size: 1.8rem;
    }

    .page-game-68k__paragraph {
      margin-bottom: var(--page-game-68k-spacing-unit);
      font-size: 1.1rem;
    }

    /* Hero Section */
    .page-game-68k__hero-section {
      position: relative;
      overflow: hidden;
      padding: 10px 0 calc(4 * var(--page-game-68k-spacing-unit)); /* Rely on body padding for header offset */
      background-color: var(--page-game-68k-background-dark);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 60vh;
    }

    .page-game-68k__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-game-68k__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: var(--page-game-68k-spacing-unit);
    }

    .page-game-68k__hero-title {
      font-size: 3.5rem;
      color: var(--page-game-68k-primary-color);
      margin-bottom: var(--page-game-68k-spacing-unit);
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-game-68k__hero-description {
      font-size: 1.3rem;
      color: var(--page-game-68k-text-light);
      margin-bottom: calc(2 * var(--page-game-68k-spacing-unit));
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    .page-game-68k__cta-button {
      display: inline-block;
      background-color: var(--page-game-68k-primary-color);
      color: white;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2rem;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-game-68k__cta-button:hover {
      background-color: #ff6f40;
      transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-game-68k__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: var(--page-game-68k-spacing-unit);
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .page-game-68k__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 10px;
      background-color: var(--page-game-68k-primary-color);
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 1.1rem;
      font-weight: bold;
      cursor: pointer;
      text-align: center;
      transition: background-color 0.3s ease;
    }

    .page-game-68k__floating-button:hover {
      background-color: #ff6f40;
    }

    /* Game Categories / Product Display */
    .page-game-68k__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: calc(2 * var(--page-game-68k-spacing-unit));
      margin-top: calc(2 * var(--page-game-68k-spacing-unit));
    }

    .page-game-68k__game-card {
      background-color: var(--page-game-68k-background-light);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center; /* Center content horizontally */
      text-align: center;
      padding-bottom: var(--page-game-68k-spacing-unit);
    }

    .page-game-68k__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-game-68k__game-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for image consistency */
        overflow: hidden;
        margin-bottom: var(--page-game-68k-spacing-unit);
        box-sizing: border-box; /* Crucial for responsive images */
    }

    .page-game-68k__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      max-width: 100%; /* Ensure image is responsive */
    }

    .page-game-68k__game-card:hover .page-game-68k__game-image {
      transform: scale(1.05);
    }

    .page-game-68k__game-title {
      font-size: 1.5rem;
      color: var(--page-game-68k-primary-color);
      margin-bottom: 0.5rem;
      padding: 0 1rem;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-game-68k__game-description {
      font-size: 0.95rem;
      color: var(--page-game-68k-text-light);
      padding: 0 1rem;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    /* Promotions Section */
    .page-game-68k__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: calc(2 * var(--page-game-68k-spacing-unit));
      margin-top: calc(2 * var(--page-game-68k-spacing-unit));
    }

    .page-game-68k__promotion-card {
      background-color: var(--page-game-68k-background-light);
      border-radius: 12px;
      padding: calc(1.5 * var(--page-game-68k-spacing-unit));
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-game-68k__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-game-68k__promotion-title {
      font-size: 1.6rem;
      color: var(--page-game-68k-accent-color);
      margin-bottom: var(--page-game-68k-spacing-unit);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-game-68k__promotion-description {
      font-size: 1rem;
      color: var(--page-game-68k-text-light);
      margin-bottom: calc(1.5 * var(--page-game-68k-spacing-unit));
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* About Section */
    .page-game-68k__about-content {
      text-align: left;
    }

    .page-game-68k__about-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      margin-bottom: calc(1.5 * var(--page-game-68k-spacing-unit));
      max-width: 100%; /* Ensure image is responsive */
      box-sizing: border-box;
    }

    .page-game-68k__provider-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--page-game-68k-spacing-unit);
      margin-top: calc(1.5 * var(--page-game-68k-spacing-unit));
      list-style: none;
      padding: 0;
    }

    .page-game-68k__provider-item {
      background-color: var(--page-game-68k-primary-color);
      color: white;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: bold;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Payment Methods */
    .page-game-68k__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: calc(1.5 * var(--page-game-68k-spacing-unit));
      margin-top: calc(2 * var(--page-game-68k-spacing-unit));
    }

    .page-game-68k__payment-item {
      background-color: var(--page-game-68k-background-light);
      border-radius: 10px;
      padding: var(--page-game-68k-spacing-unit);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 100px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-game-68k__payment-item:hover {
      transform: translateY(-5px);
    }

    .page-game-68k__payment-icon {
      width: 80px;
      height: 50px;
      object-fit: contain;
      margin-bottom: 0.5rem;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-game-68k__payment-name {
      font-size: 0.9rem;
      color: var(--page-game-68k-text-light);
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-game-68k__faq-container {
      margin-top: calc(2 * var(--page-game-68k-spacing-unit));
      text-align: left;
    }

    .page-game-68k__faq-item {
      background-color: var(--page-game-68k-background-light);
      margin-bottom: var(--page-game-68k-spacing-unit);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-game-68k__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-game-68k-primary-color);
      color: white;
      cursor: pointer;
      user-select: none;
      font-size: 1.1rem;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-game-68k__faq-question:hover {
      background-color: #ff6f40;
    }

    .page-game-68k__faq-question h3 {
      margin: 0;
      font-size: 1.1rem;
      color: inherit; /* Inherit color from parent */
      pointer-events: none; /* Prevent h3 from blocking click */
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex-grow: 1; /* Allow h3 to take available space */
    }

    .page-game-68k__faq-toggle {
      font-size: 1.5rem;
      line-height: 1;
      margin-left: 10px;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      transition: transform 0.3s ease;
    }

    .page-game-68k__faq-item.active .page-game-68k__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-game-68k__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      background-color: var(--page-game-68k-background-dark);
      color: var(--page-game-68k-text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      font-size: 1rem;
    }

    .page-game-68k__faq-item.active .page-game-68k__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Social Media Section */
    .page-game-68k__social-media-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: calc(1.5 * var(--page-game-68k-spacing-unit));
      margin-top: calc(2 * var(--page-game-68k-spacing-unit));
      list-style: none;
      padding: 0;
    }

    .page-game-68k__social-item {
      background-color: var(--page-game-68k-background-light);
      border-radius: 10px;
      padding: var(--page-game-68k-spacing-unit);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100px; /* Adjusted for larger icons */
      height: 100px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-game-68k__social-item:hover {
      transform: translateY(-5px);
    }

    .page-game-68k__social-icon {
      width: 60px; /* Larger icon size */
      height: 60px;
      object-fit: contain;
      margin-bottom: 0.5rem;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-game-68k__social-name {
      font-size: 0.9rem;
      color: var(--page-game-68k-text-light);
      font-weight: bold;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-game-68k__section {
        padding: calc(1.5 * var(--page-game-68k-spacing-unit)) calc(0.8 * var(--page-game-68k-spacing-unit));
      }

      .page-game-68k__hero-title {
        font-size: 2.5rem;
      }

      .page-game-68k__hero-description {
        font-size: 1.1rem;
      }

      .page-game-68k__heading {
        font-size: 2rem;
      }

      .page-game-68k__subheading {
        font-size: 1.5rem;
      }

      .page-game-68k__paragraph {
        font-size: 1rem;
      }

      .page-game-68k__game-categories {
        grid-template-columns: 1fr; /* Stack cards on mobile */
      }

      .page-game-68k__game-card,
      .page-game-68k__promotion-card,
      .page-game-68k__payment-item,
      .page-game-68k__social-item,
      .page-game-68k__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important; /* Adjust padding for mobile */
        padding-right: 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-game-68k__provider-list,
      .page-game-68k__payment-methods,
      .page-game-68k__social-media-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-game-68k__game-image-wrapper {
        height: 180px;
      }

      .page-game-68k__floating-button {
        font-size: 1rem;
        padding: 10px 5px;
      }

      .page-game-68k__faq-question {
        padding: 12px 15px;
        font-size: 1rem;
      }

      .page-game-68k__faq-question h3 {
        font-size: 1rem;
      }

      .page-game-68k__faq-answer {
        font-size: 0.95rem;
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-game-68k__hero-title {
        font-size: 2rem;
      }
      .page-game-68k__hero-description {
        font-size: 1rem;
      }
      .page-game-68k__cta-button {
        padding: 12px 20px;
        font-size: 1rem;
      }
      .page-game-68k__floating-buttons {
        padding: 8px;
      }
      .page-game-68k__floating-button {
        padding: 8px 5px;
        font-size: 0.9rem;
      }
    }
  