
    :root {
      --page-2899q-com__primary-color: #e04a4a; /* Đỏ rực */
      --page-2899q-com__secondary-color: #ffcc00; /* Vàng sáng */
      --page-2899q-com__dark-background: #1a1a1a; /* Nền tối */
      --page-2899q-com__light-text: #ffffff; /* Chữ trắng */
      --page-2899q-com__gray-text: #cccccc; /* Chữ xám nhạt */
      --page-2899q-com__button-hover: #ff6666; /* Đỏ nhạt hơn khi hover */
    }

    .page-2899q-com {
      font-family: 'Arial', sans-serif;
      color: var(--page-2899q-com__light-text);
      background-color: var(--page-2899q-com__dark-background);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Fixed navigation bar spacing */
    .page-2899q-com__hero-section,
    .page-2899q-com__about-section,
    .page-2899q-com__games-section,
    .page-2899q-com__promotions-section,
    .page-2899q-com__why-choose-us-section,
    .page-2899q-com__faq-section,
    .page-2899q-com__cta-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-2899q-com__hero-section {
      position: relative;
      text-align: center;
      padding-top: 10px; /* Adjust for shared header offset */
      background-color: var(--page-2899q-com__dark-background);
      overflow: hidden;
    }

    .page-2899q-com__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
    }

    .page-2899q-com__hero-content {
      position: relative;
      z-index: 1;
      padding: 60px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }

    .page-2899q-com__brand-logo {
      font-size: 3.5em;
      font-weight: bold;
      color: var(--page-2899q-com__primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
      text-align: center;
    }

    .page-2899q-com__hero-title {
      font-size: 2.8em;
      color: var(--page-2899q-com__secondary-color);
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
      text-align: center;
    }

    .page-2899q-com__hero-subtitle {
      font-size: 1.3em;
      color: var(--page-2899q-com__gray-text);
      margin-bottom: 40px;
      max-width: 800px;
      text-align: center;
    }

    .page-2899q-com__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .page-2899q-com__floating-button {
      background-color: var(--page-2899q-com__primary-color);
      color: var(--page-2899q-com__light-text);
      border: none;
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
      flex: 1;
      margin: 0 5px;
      max-width: 150px;
    }

    .page-2899q-com__floating-button:hover {
      background-color: var(--page-2899q-com__button-hover);
      transform: translateY(-2px);
    }

    .page-2899q-com__section-title {
      font-size: 2.2em;
      color: var(--page-2899q-com__secondary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-2899q-com__text-content {
      font-size: 1.1em;
      color: var(--page-2899q-com__gray-text);
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-2899q-com__text-content strong {
      color: var(--page-2899q-com__primary-color);
    }

    .page-2899q-com__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-2899q-com__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-2899q-com__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-2899q-com__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-2899q-com__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-2899q-com__game-card:hover .page-2899q-com__game-image {
      transform: scale(1.05);
    }

    .page-2899q-com__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-2899q-com__game-title {
      font-size: 1.5em;
      color: var(--page-2899q-com__secondary-color);
      margin-bottom: 10px;
    }

    .page-2899q-com__game-description {
      font-size: 0.95em;
      color: var(--page-2899q-com__gray-text);
      margin-bottom: 20px;
    }

    .page-2899q-com__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-2899q-com__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-2899q-com__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-2899q-com__promo-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-2899q-com__promo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-2899q-com__promo-card:hover .page-2899q-com__promo-image {
      transform: scale(1.05);
    }

    .page-2899q-com__promo-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-2899q-com__promo-title {
      font-size: 1.5em;
      color: var(--page-2899q-com__primary-color);
      margin-bottom: 10px;
    }

    .page-2899q-com__promo-description {
      font-size: 0.95em;
      color: var(--page-2899q-com__gray-text);
      margin-bottom: 15px;
    }

    .page-2899q-com__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
    }

    .page-2899q-com__feature-item {
      background-color: #2a2a2a;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-2899q-com__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-2899q-com__feature-title {
      font-size: 1.4em;
      color: var(--page-2899q-com__secondary-color);
      margin-top: 15px;
      margin-bottom: 10px;
    }

    .page-2899q-com__feature-description {
      font-size: 0.95em;
      color: var(--page-2899q-com__gray-text);
    }

    .page-2899q-com__payment-providers,
    .page-2899q-com__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-2899q-com__provider-logo-wrapper {
      background-color: #2a2a2a;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
      height: 80px;
      box-sizing: border-box;
    }

    .page-2899q-com__provider-logo-wrapper:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 12px rgba(0, 0, 0, 0.5);
    }

    .page-2899q-com__provider-logo {
      max-width: 100%;
      max-height: 50px;
      height: auto;
      object-fit: contain;
    }

    .page-2899q-com__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-2899q-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #333;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-2899q-com__faq-question:hover {
      background-color: #444;
    }

    .page-2899q-com__faq-question h3 {
      font-size: 1.2em;
      color: var(--page-2899q-com__light-text);
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-2899q-com__faq-toggle {
      font-size: 1.8em;
      color: var(--page-2899q-com__primary-color);
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-2899q-com__faq-item.active .page-2899q-com__faq-toggle {
      transform: rotate(45deg); /* For '-' effect */
    }

    .page-2899q-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-2899q-com__gray-text);
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-2899q-com__faq-item.active .page-2899q-com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-2899q-com__cta-button {
      display: block;
      width: fit-content;
      margin: 40px auto 0 auto;
      background-color: var(--page-2899q-com__primary-color);
      color: var(--page-2899q-com__light-text);
      border: none;
      padding: 15px 40px;
      border-radius: 8px;
      font-size: 1.3em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
    }

    .page-2899q-com__cta-button:hover {
      background-color: var(--page-2899q-com__button-hover);
      transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-2899q-com__hero-content {
        padding: 40px 15px;
        min-height: 300px;
      }

      .page-2899q-com__brand-logo {
        font-size: 2.8em;
      }

      .page-2899q-com__hero-title {
        font-size: 2em;
      }

      .page-2899q-com__hero-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-2899q-com__floating-buttons {
        padding: 8px 0;
      }

      .page-2899q-com__floating-button {
        padding: 10px 15px;
        font-size: 1em;
        max-width: 120px;
      }

      .page-2899q-com__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-2899q-com__text-content {
        font-size: 1em;
      }

      .page-2899q-com__games-grid,
      .page-2899q-com__promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-2899q-com__game-image-wrapper,
      .page-2899q-com__promo-image-wrapper {
        height: 180px;
      }

      .page-2899q-com__game-title,
      .page-2899q-com__promo-title {
        font-size: 1.3em;
      }

      .page-2899q-com__game-description,
      .page-2899q-com__promo-description {
        font-size: 0.9em;
      }

      .page-2899q-com__features-list {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-2899q-com__feature-item {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-2899q-com__features-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-2899q-com__feature-title {
        font-size: 1.2em;
      }

      .page-2899q-com__faq-question {
        padding: 15px 20px;
      }

      .page-2899q-com__faq-question h3 {
        font-size: 1.1em;
      }

      .page-2899q-com__faq-answer {
        padding: 0 20px;
        font-size: 0.9em;
      }

      .page-2899q-com__faq-item.active .page-2899q-com__faq-answer {
        padding: 15px 20px !important;
      }

      .page-2899q-com__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
        margin-top: 30px;
      }

      .page-2899q-com__payment-providers,
      .page-2899q-com__game-providers {
        gap: 15px;
      }

      .page-2899q-com__provider-logo-wrapper {
        min-width: 100px;
        height: 70px;
        padding: 10px 15px;
      }

      .page-2899q-com__game-image,
      .page-2899q-com__promo-image,
      .page-2899q-com__provider-logo,
      .page-2899q-com__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-2899q-com__game-image-wrapper,
      .page-2899q-com__promo-image-wrapper,
      .page-2899q-com__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-2899q-com__brand-logo {
        font-size: 2.2em;
      }

      .page-2899q-com__hero-title {
        font-size: 1.6em;
      }

      .page-2899q-com__hero-subtitle {
        font-size: 0.9em;
      }

      .page-2899q-com__floating-button {
        font-size: 0.9em;
        padding: 8px 10px;
      }

      .page-2899q-com__section-title {
        font-size: 1.6em;
      }
    }
  