
    /* CSS Styles for vip79gamebai page */
    :root {
      --page-vip79gamebai__primary-color: #e44d26; /* Cam đỏ */
      --page-vip79gamebai__secondary-color: #333; /* Đen đậm */
      --page-vip79gamebai__accent-color: #ffc107; /* Vàng */
      --page-vip79gamebai__background-light: #f8f8f8;
      --page-vip79gamebai__text-dark: #333;
      --page-vip79gamebai__text-light: #fff;
      --page-vip79gamebai__border-color: #ddd;
    }

    .page-vip79gamebai {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--page-vip79gamebai__text-dark);
      line-height: 1.6;
      background-color: var(--page-vip79gamebai__background-light);
    }

    .page-vip79gamebai__hero-section {
      text-align: center;
      padding: 60px 20px 40px; /* Adjusted padding-top for fixed header */
      background-color: var(--page-vip79gamebai__secondary-color);
      color: var(--page-vip79gamebai__text-light);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 300px;
    }

    .page-vip79gamebai__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 20px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-vip79gamebai__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-vip79gamebai__accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-vip79gamebai__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      color: var(--page-vip79gamebai__text-light);
    }

    .page-vip79gamebai__cta-button {
      display: inline-block;
      background-color: var(--page-vip79gamebai__primary-color);
      color: var(--page-vip79gamebai__text-light);
      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;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-vip79gamebai__cta-button:hover {
      background-color: #c73c1d;
      transform: translateY(-2px);
    }

    .page-vip79gamebai__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--page-vip79gamebai__text-light);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 25px;
    }

    .page-vip79gamebai__section--dark {
      background-color: var(--page-vip79gamebai__secondary-color);
      color: var(--page-vip79gamebai__text-light);
    }

    .page-vip79gamebai__section-title {
      font-size: 2.2em;
      color: var(--page-vip79gamebai__primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-vip79gamebai__section-title--light {
      color: var(--page-vip79gamebai__accent-color);
    }

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

    .page-vip79gamebai__text-content p {
      margin-bottom: 15px;
      font-size: 1.1em;
      text-align: justify;
    }

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

    .page-vip79gamebai__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--page-vip79gamebai__border-color);
    }

    .page-vip79gamebai__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-vip79gamebai__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid var(--page-vip79gamebai__border-color);
    }

    .page-vip79gamebai__game-card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-vip79gamebai__game-card-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--page-vip79gamebai__primary-color);
    }

    .page-vip79gamebai__game-card-description {
      font-size: 0.95em;
      color: #666;
    }

    .page-vip79gamebai__game-card-link {
      display: block;
      margin-top: 15px;
      background-color: var(--page-vip79gamebai__accent-color);
      color: var(--page-vip79gamebai__secondary-color);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-vip79gamebai__game-card-link:hover {
      background-color: #e6a700;
    }

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

    .page-vip79gamebai__provider-logo {
      width: 100%;
      max-width: 180px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      background-color: #fff;
      padding: 10px;
      box-sizing: border-box;
      border: 1px solid var(--page-vip79gamebai__border-color);
    }

    .page-vip79gamebai__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-vip79gamebai__list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-vip79gamebai__list-item {
      background-color: var(--page-vip79gamebai__background-light);
      padding: 15px 20px;
      margin-bottom: 10px;
      border-radius: 8px;
      border-left: 5px solid var(--page-vip79gamebai__primary-color);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      font-size: 1.05em;
    }

    .page-vip79gamebai__faq-container {
      margin-top: 30px;
    }

    .page-vip79gamebai__faq-item {
      background-color: var(--page-vip79gamebai__background-light);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      border: 1px solid var(--page-vip79gamebai__border-color);
    }

    .page-vip79gamebai__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: var(--page-vip79gamebai__primary-color);
      color: var(--page-vip79gamebai__text-light);
      cursor: pointer;
      font-weight: bold;
      font-size: 1.15em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-vip79gamebai__faq-question:hover {
      background-color: #c73c1d;
    }

    .page-vip79gamebai__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-vip79gamebai__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-vip79gamebai__faq-item.active .page-vip79gamebai__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-vip79gamebai__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #fff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      opacity: 0;
      color: var(--page-vip79gamebai__text-dark);
    }

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

    .page-vip79gamebai__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-vip79gamebai__floating-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-vip79gamebai__accent-color);
      color: var(--page-vip79gamebai__secondary-color);
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: page-vip79gamebai__pulse 2s infinite;
      transition: background-color 0.3s ease;
    }

    .page-vip79gamebai__floating-promo:hover {
      background-color: #e6a700;
    }

    @keyframes page-vip79gamebai__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .page-vip79gamebai__promo-icon {
      font-size: 1.5em;
      line-height: 1;
    }

    .page-vip79gamebai__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px; /* Add some space below images */
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-vip79gamebai__hero-section {
        padding-top: 50px; /* Adjusted padding-top for fixed header on mobile */
        padding-left: 15px;
        padding-right: 15px;
        min-height: 250px;
      }

      .page-vip79gamebai__hero-title {
        font-size: 2em;
      }

      .page-vip79gamebai__hero-subtitle {
        font-size: 1.1em;
      }

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

      .page-vip79gamebai__section {
        padding: 30px 15px;
      }

      .page-vip79gamebai__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-vip79gamebai__text-content p {
        font-size: 1em;
      }

      .page-vip79gamebai__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-vip79gamebai__game-card-title {
        font-size: 1.2em;
      }

      .page-vip79gamebai__game-card-description {
        font-size: 0.9em;
      }

      .page-vip79gamebai__provider-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .page-vip79gamebai__list-item {
        font-size: 0.95em;
        padding: 12px 15px;
      }

      .page-vip79gamebai__faq-question {
        font-size: 1em;
        padding: 15px;
      }

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

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

      .page-vip79gamebai__floating-promo {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-vip79gamebai__promo-icon {
        font-size: 1.2em;
      }

      /* Image responsive styles */
      .page-vip79gamebai__image-wrapper,
      .page-vip79gamebai__hero-image,
      .page-vip79gamebai__game-card-image,
      .page-vip79gamebai__provider-logo,
      .page-vip79gamebai__content-image {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important; /* Ensure width is also 100% */
      }
    }
  