
    /* Tổng quan */
    .page-789betvip {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Nền đen */
      color: #ffffff; /* Chữ trắng */
      line-height: 1.6;
      padding-top: 150px; /* Đảm bảo không bị che bởi header cố định */
    }

    .page-789betvip__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-789betvip__section {
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0.05); /* Nền hơi trong suốt cho các section */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-789betvip__section-title {
      font-size: 2.5em;
      color: #ffd700; /* Chữ vàng */
      text-align: center;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-789betvip__section-subtitle {
      font-size: 1.8em;
      color: #ffffff;
      text-align: center;
      margin-bottom: 20px;
    }

    .page-789betvip__text {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Hero Section */
    .page-789betvip__hero-section {
      text-align: center;
      padding: 0; /* Remove padding as image is full width */
      background: none;
      box-shadow: none;
      margin-bottom: 0;
    }

    .page-789betvip__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 30px;
    }

    .page-789betvip__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-789betvip__hero-content {
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin: 0 20px 30px;
    }

    .page-789betvip__hero-title {
      font-size: 3.5em;
      color: #ffd700;
      margin-bottom: 15px;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .page-789betvip__hero-description {
      font-size: 1.3em;
      color: #ffffff;
      margin-bottom: 30px;
    }

    .page-789betvip__cta-button {
      display: inline-block;
      background-color: #ffd700;
      color: #000000;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-789betvip__cta-button:hover {
      background-color: #ffeb3b;
      transform: translateY(-3px);
    }

    /* Floating Login/Register Button */
    .page-789betvip__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4500; /* Cam nổi bật */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      line-height: 1.2;
      border: none;
      cursor: pointer;
    }

    .page-789betvip__floating-button:hover {
      background-color: #ff6347;
      transform: translateY(-5px);
    }

    /* Game Categories Section */
    .page-789betvip__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-789betvip__game-card {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-789betvip__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    }

    .page-789betvip__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        flex-grow: 1; /* Make image container take available space */
    }

    .page-789betvip__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 2px solid #ffd700;
    }

    .page-789betvip__game-title {
      font-size: 1.4em;
      color: #ffd700;
      padding: 15px 10px;
      font-weight: bold;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Promotions Section */
    .page-789betvip__promo-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-789betvip__promo-item {
      background-color: rgba(255, 215, 0, 0.1);
      border-left: 5px solid #ffd700;
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-789betvip__promo-item:hover {
      background-color: rgba(255, 215, 0, 0.15);
    }

    .page-789betvip__promo-title {
      font-size: 1.5em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-789betvip__promo-description {
      color: #e0e0e0;
      font-size: 1.1em;
    }

    /* Why Choose Section */
    .page-789betvip__advantage-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-789betvip__advantage-item {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      transition: background-color 0.3s ease;
    }

    .page-789betvip__advantage-item:hover {
      background-color: rgba(255, 255, 255, 0.15);
    }

    .page-789betvip__advantage-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 15px;
      filter: invert(0); /* Ensure original color, explicitly state no filter */
    }

    .page-789betvip__advantage-title {
      font-size: 1.3em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-789betvip__advantage-description {
      color: #e0e0e0;
    }

    /* Providers and Payments Section */
    .page-789betvip__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-789betvip__logo-item {
      background-color: rgba(255, 255, 255, 0.08);
      padding: 15px;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      width: 100%;
      max-width: 200px; /* Limit width for logos */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-789betvip__logo-item:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }

    .page-789betvip__logo-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-789betvip__logo-image {
      max-width: 100%;
      max-height: 70px; /* Adjust max-height for logos */
      height: auto;
      object-fit: contain;
      filter: invert(0); /* Ensure original color */
    }

    /* FAQ Section */
    .page-789betvip__faq-list {
      margin-top: 30px;
    }

    .page-789betvip__faq-item {
      background-color: rgba(255, 255, 255, 0.08);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-789betvip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: rgba(255, 215, 0, 0.15);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-789betvip__faq-question:hover {
      background-color: rgba(255, 215, 0, 0.25);
    }

    .page-789betvip__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #ffd700;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-789betvip__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffd700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-789betvip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: rgba(255, 255, 255, 0.05);
      color: #e0e0e0;
    }

    .page-789betvip__faq-item.active .page-789betvip__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-789betvip__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Call to Action Bottom */
    .page-789betvip__cta-bottom {
      text-align: center;
      padding: 50px 20px;
      background-color: rgba(255, 215, 0, 0.1);
      border-radius: 8px;
      margin-top: 50px;
    }

    .page-789betvip__cta-bottom-title {
      font-size: 2.2em;
      color: #ffd700;
      margin-bottom: 20px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-789betvip {
        padding-top: 100px; /* Adjust for mobile fixed header */
      }

      .page-789betvip__section {
        padding: 30px 15px;
      }

      .page-789betvip__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-789betvip__hero-title {
        font-size: 2.5em;
      }

      .page-789betvip__hero-description {
        font-size: 1.1em;
      }

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

      .page-789betvip__game-grid {
        grid-template-columns: 1fr;
      }

      .page-789betvip__game-image {
        height: 180px;
      }

      .page-789betvip__game-title {
        font-size: 1.2em;
      }

      .page-789betvip__promo-item {
        padding: 15px;
      }

      .page-789betvip__promo-title {
        font-size: 1.3em;
      }

      .page-789betvip__advantage-list {
        grid-template-columns: 1fr;
      }

      .page-789betvip__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-789betvip__logo-item {
        height: 80px;
        max-width: 150px;
      }

      .page-789betvip__logo-image {
        max-height: 50px;
      }

      .page-789betvip__faq-question {
        padding: 15px 20px;
      }

      .page-789betvip__faq-question h3 {
        font-size: 1.1em;
      }

      .page-789betvip__faq-toggle {
        font-size: 1.5em;
      }

      .page-789betvip__faq-answer {
        padding: 0 20px;
      }

      .page-789betvip__faq-item.active .page-789betvip__faq-answer {
        padding: 15px 20px !important;
      }

      .page-789betvip__cta-bottom-title {
        font-size: 1.8em;
      }

      /* Force responsive image styles for mobile */
      .page-789betvip__hero-image,
      .page-789betvip__game-image,
      .page-789betvip__advantage-icon,
      .page-789betvip__logo-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-789betvip__hero-image-wrapper,
      .page-789betvip__game-image-wrapper,
      .page-789betvip__logo-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  