
    .page-bong-vip-79 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f0f2f5;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* General Section Styling */
    .page-bong-vip-79__section-title {
      font-size: 2.2em;
      color: #0056b3; /* A strong blue for titles */
      text-align: center;
      margin-bottom: 20px;
      padding-top: 20px;
      font-weight: bold;
    }

    .page-bong-vip-79__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      color: #555;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-bong-vip-79__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust for mobile view */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding: 10px 0; /* Minimal padding-top, body handles offset */
    }

    .page-bong-vip-79__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.5); /* Darken image for text readability, not changing color */
    }

    .page-bong-vip-79__hero-content {
      position: relative;
      z-index: 1;
      padding: 0 20px;
      max-width: 900px;
    }

    .page-bong-vip-79__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
      color: #ffcc00; /* Gold-like color for contrast */
    }

    .page-bong-vip-79__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-bong-vip-79__hero-cta-wrapper {
      margin-top: 30px;
    }

    .page-bong-vip-79__hero-cta-button {
      display: inline-block;
      background-color: #e44d26; /* Orange-red for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-bong-vip-79__hero-cta-button:hover {
      background-color: #f66d49;
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-bong-vip-79__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-bong-vip-79__float-button {
      background-color: #007bff; /* Blue for general buttons */
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 120px; /* Ensure buttons are not too small */
      text-align: center;
    }

    .page-bong-vip-79__float-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-bong-vip-79__float-register {
      background-color: #28a745; /* Green for register */
    }

    .page-bong-vip-79__float-register:hover {
      background-color: #218838;
    }

    .page-bong-vip-79__float-login {
      background-color: #ffc107; /* Yellow for login */
      color: #333;
    }

    .page-bong-vip-79__float-login:hover {
      background-color: #e0a800;
    }

    /* Product Grid */
    .page-bong-vip-79__products-section,
    .page-bong-vip-79__promotions-section,
    .page-bong-vip-79__news-section,
    .page-bong-vip-79__providers-section,
    .page-bong-vip-79__payments-section,
    .page-bong-vip-79__faq-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-bong-vip-79__product-grid,
    .page-bong-vip-79__promo-grid,
    .page-bong-vip-79__news-grid,
    .page-bong-vip-79__provider-grid,
    .page-bong-vip-79__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      justify-content: center; /* Center items in grid */
    }

    .page-bong-vip-79__product-item,
    .page-bong-vip-79__promo-item,
    .page-bong-vip-79__news-item,
    .page-bong-vip-79__provider-item,
    .page-bong-vip-79__payment-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-bong-vip-79__product-item:hover,
    .page-bong-vip-79__promo-item:hover,
    .page-bong-vip-79__news-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-bong-vip-79__product-image,
    .page-bong-vip-79__promo-image,
    .page-bong-vip-79__news-image,
    .page-bong-vip-79__provider-logo,
    .page-bong-vip-79__payment-logo {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 15px;
      border-radius: 10px 10px 0 0;
      object-fit: cover; /* Ensure images cover their area */
    }

    .page-bong-vip-79__product-image,
    .page-bong-vip-79__promo-image,
    .page-bong-vip-79__news-image {
      height: 200px; /* Fixed height for consistency */
      width: 100%;
    }

    .page-bong-vip-79__provider-logo,
    .page-bong-vip-79__payment-logo {
      height: 80px; /* Smaller height for logos */
      width: auto;
      margin-top: 20px;
      margin-bottom: 10px;
    }


    .page-bong-vip-79__product-title,
    .page-bong-vip-79__promo-title,
    .page-bong-vip-79__news-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-bong-vip-79__product-text,
    .page-bong-vip-79__promo-text,
    .page-bong-vip-79__news-excerpt {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-bong-vip-79__news-date {
      font-size: 0.85em;
      color: #999;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-bong-vip-79__provider-name,
    .page-bong-vip-79__payment-name {
      font-size: 1.1em;
      color: #333;
      font-weight: bold;
      padding: 0 10px 10px;
    }


    /* FAQ Section */
    .page-bong-vip-79__faq-container {
      max-width: 800px;
      margin: 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      background-color: #fff;
    }

    .page-bong-vip-79__faq-item {
      border-bottom: 1px solid #eee;
    }

    .page-bong-vip-79__faq-item:last-child {
      border-bottom: none;
    }

    .page-bong-vip-79__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-bong-vip-79__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-bong-vip-79__faq-q-text {
      margin: 0;
      font-size: 1.15em;
      color: #333;
      font-weight: bold;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-bong-vip-79__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      min-width: 20px;
      text-align: center;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-bong-vip-79__faq-item.active .page-bong-vip-79__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or rotate to '-' */
    }

    .page-bong-vip-79__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #ffffff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      font-size: 1em;
    }

    .page-bong-vip-79__faq-item.active .page-bong-vip-79__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-bong-vip-79__faq-answer p {
      margin: 0;
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-bong-vip-79__hero-title {
        font-size: 2.5em;
      }
      .page-bong-vip-79__hero-subtitle {
        font-size: 1.1em;
      }
      .page-bong-vip-79__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-bong-vip-79__hero-section {
        height: 50vh;
      }
      .page-bong-vip-79__hero-title {
        font-size: 2em;
      }
      .page-bong-vip-79__hero-subtitle {
        font-size: 1em;
      }
      .page-bong-vip-79__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-bong-vip-79__section-title {
        font-size: 1.8em;
      }
      .page-bong-vip-79__section-description {
        font-size: 0.95em;
        margin-bottom: 20px;
      }

      .page-bong-vip-79__product-grid,
      .page-bong-vip-79__promo-grid,
      .page-bong-vip-79__news-grid,
      .page-bong-vip-79__provider-grid,
      .page-bong-vip-79__payment-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
      }

      .page-bong-vip-79__product-item,
      .page-bong-vip-79__promo-item,
      .page-bong-vip-79__news-item,
      .page-bong-vip-79__provider-item,
      .page-bong-vip-79__payment-item {
        width: 100% !important; /* Force full width for list items */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-bottom: 15px; /* Adjust padding for mobile */
      }

      .page-bong-vip-79__product-image,
      .page-bong-vip-79__promo-image,
      .page-bong-vip-79__news-image,
      .page-bong-vip-79__provider-logo,
      .page-bong-vip-79__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
      }

      .page-bong-vip-79__product-title,
      .page-bong-vip-79__promo-title,
      .page-bong-vip-79__news-title {
        font-size: 1.2em;
      }

      .page-bong-vip-79__product-text,
      .page-bong-vip-79__promo-text,
      .page-bong-vip-79__news-excerpt {
        font-size: 0.9em;
      }

      .page-bong-vip-79__faq-question {
        padding: 15px 20px;
      }
      .page-bong-vip-79__faq-q-text {
        font-size: 1em;
      }
      .page-bong-vip-79__faq-toggle {
        font-size: 1.3em;
      }
      .page-bong-vip-79__faq-answer {
        padding: 15px 20px;
      }
      .page-bong-vip-79__faq-item.active .page-bong-vip-79__faq-answer {
        padding: 15px 20px !important;
      }

      .page-bong-vip-79__floating-buttons {
        bottom: 10px;
        gap: 10px;
      }
      .page-bong-vip-79__float-button {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: 100px;
      }
    }

    @media (max-width: 480px) {
      .page-bong-vip-79__hero-title {
        font-size: 1.8em;
      }
      .page-bong-vip-79__hero-subtitle {
        font-size: 0.9em;
      }
      .page-bong-vip-79__hero-cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-bong-vip-79__section-title {
        font-size: 1.6em;
      }
      .page-bong-vip-79__faq-question {
        padding: 12px 15px;
      }
      .page-bong-vip-79__faq-q-text {
        font-size: 0.95em;
      }
      .page-bong-vip-79__faq-answer {
        padding: 12px 15px;
      }
      .page-bong-vip-79__faq-item.active .page-bong-vip-79__faq-answer {
        padding: 12px 15px !important;
      }
      .page-bong-vip-79__floating-buttons {
        flex-direction: row; /* Keep row for small screens, stack if needed */
        gap: 8px;
      }
      .page-bong-vip-79__float-button {
        padding: 8px 15px;
        font-size: 0.85em;
        min-width: 90px;
      }
    }
  