
    :root {
      --page-789betvip__primary-color: #e44d26; /* Cam đậm */
      --page-789betvip__secondary-color: #f7931e; /* Cam nhạt */
      --page-789betvip__accent-color: #4CAF50; /* Xanh lá cây */
      --page-789betvip__dark-bg: #1a1a1a;
      --page-789betvip__light-bg: #f5f5f5;
      --page-789betvip__text-color: #333;
      --page-789betvip__white-text: #fff;
      --page-789betvip__border-color: #ddd;
      --page-789betvip__card-bg: #2a2a2a;
      --page-789betvip__card-text: #eee;
      --page-789betvip__button-hover: #ff6600;
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-789betvip__text-color);
      background-color: var(--page-789betvip__light-bg);
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .page-789betvip {
      max-width: 100%;
      margin: 0 auto;
      background-color: var(--page-789betvip__dark-bg);
      color: var(--page-789betvip__white-text);
    }

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

    .page-789betvip__section {
      padding: 60px 20px;
      text-align: center;
    }

    .page-789betvip__section--light {
      background-color: var(--page-789betvip__card-bg);
      color: var(--page-789betvip__card-text);
    }

    .page-789betvip__heading {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-789betvip__primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-789betvip__subheading {
      font-size: 1.8em;
      margin-bottom: 30px;
      color: var(--page-789betvip__secondary-color);
    }

    .page-789betvip__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      line-height: 1.8;
      color: var(--page-789betvip__card-text);
    }

    .page-789betvip__button {
      display: inline-block;
      background-color: var(--page-789betvip__primary-color);
      color: var(--page-789betvip__white-text);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-789betvip__button:hover {
      background-color: var(--page-789betvip__button-hover);
      transform: translateY(-3px);
    }

    /* Hero Section */
    .page-789betvip__hero-section {
      background-color: #000;
      padding-top: 120px; /* For fixed header */
      position: relative;
      overflow: hidden;
    }

    .page-789betvip__hero-image {
      width: 100%;
      height: auto;
      max-height: 500px; /* Limit height for aesthetic */
      min-width: 300px; /* Ensure substantial size on desktop */
      min-height: 200px;
      display: block;
      object-fit: cover; /* Hero usually covers */
      margin: 0 auto;
    }

    .page-789betvip__hero-content {
      padding: 40px 20px;
      text-align: center;
      background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
      margin-top: -80px; /* Overlap with image slightly for smooth transition */
      position: relative;
      z-index: 1;
    }

    .page-789betvip__hero-title {
      font-size: 3.5em;
      color: var(--page-789betvip__primary-color);
      margin-bottom: 15px;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-789betvip__hero-description {
      font-size: 1.3em;
      color: var(--page-789betvip__white-text);
      max-width: 800px;
      margin: 0 auto 30px auto;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }

    /* Floating Login Button */
    .page-789betvip__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-789betvip__accent-color);
      color: var(--page-789betvip__white-text);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-789betvip__pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .page-789betvip__floating-login-button:hover {
      background-color: #449d48;
      transform: scale(1.05);
      animation-play-state: paused;
    }

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

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

    .page-789betvip__game-card {
      background-color: var(--page-789betvip__card-bg);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-789betvip__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-789betvip__game-card-image {
      width: 100%;
      height: 250px; /* Fixed height for consistent cards, ensure it's >200 */
      min-width: 250px; /* Ensure it's not too small on desktop */
      min-height: 200px;
      object-fit: cover;
      display: block;
      border-bottom: 2px solid var(--page-789betvip__primary-color);
    }

    .page-789betvip__game-card-title {
      font-size: 1.5em;
      color: var(--page-789betvip__secondary-color);
      margin: 20px 10px 10px 10px;
    }

    .page-789betvip__game-card-title a {
      color: var(--page-789betvip__secondary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-789betvip__game-card-title a:hover {
      color: var(--page-789betvip__primary-color);
    }

    .page-789betvip__game-card-description {
      font-size: 0.95em;
      color: var(--page-789betvip__card-text);
      padding: 0 15px;
      margin-bottom: 20px;
    }

    /* Game Providers */
    .page-789betvip__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for larger logos */
      gap: 20px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-789betvip__provider-logo {
      width: 200px; /* Enforce minimum width on desktop */
      height: auto; /* Let height scale proportionally */
      min-height: 100px; /* Ensure some height, even if width is 200px */
      object-fit: contain;
      border-radius: 8px;
      padding: 10px;
      background-color: rgba(255, 255, 255, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: block;
      margin: 0 auto;
    }

    .page-789betvip__provider-logo:hover {
      transform: scale(1.1);
      box-shadow: 0 0 15px var(--page-789betvip__secondary-color);
    }

    /* Features Section */
    .page-789betvip__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-789betvip__feature-item {
      background-color: var(--page-789betvip__card-bg);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-789betvip__feature-image {
        width: 200px; /* Minimum size on desktop */
        height: 200px; /* Minimum size on desktop */
        margin-bottom: 20px;
        display: block;
        margin-left: 0;
        object-fit: contain;
    }

    .page-789betvip__feature-title {
      font-size: 1.8em;
      color: var(--page-789betvip__primary-color);
      margin-bottom: 15px;
    }

    .page-789betvip__feature-description {
      font-size: 1em;
      color: var(--page-789betvip__card-text);
    }

    /* FAQ Section */
    .page-789betvip__faq-section {
      text-align: left;
      background-color: #1a1a1a;
      color: var(--page-789betvip__white-text);
    }

    .page-789betvip__faq-item {
      margin-bottom: 15px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      background-color: var(--page-789betvip__card-bg);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-789betvip__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #2c2c2c;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-789betvip__secondary-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-789betvip__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-789betvip__secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-789betvip__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-789betvip__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      color: var(--page-789betvip__primary-color);
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-789betvip__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-789betvip__card-text);
      background-color: #333;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1em;
      line-height: 1.7;
    }

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

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

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

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

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

      .page-789betvip__heading {
        font-size: 2em;
      }

      .page-789betvip__subheading {
        font-size: 1.4em;
      }

      .page-789betvip__game-categories,
      .page-789betvip__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .page-789betvip__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* More compact grid for logos on mobile */
      }

      .page-789betvip__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-789betvip__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-789betvip__faq-question h3 {
        font-size: 1.1em;
      }

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

      /* Image responsive optimization */
      .page-789betvip img {
        max-width: 100% !important;
        height: auto !important;
        /* Allow images to shrink below 200px on mobile to fit screen */
        min-width: unset !important;
        min-height: unset !important;
      }
      .page-789betvip__game-card-image {
        height: 150px !important; /* Adjust card image height for mobile */
      }
      .page-789betvip__provider-logo,
      .page-789betvip__feature-image {
        width: 100% !important;
        max-width: 150px !important; /* Allow logos/features to be smaller on mobile for better grid flow */
        height: auto !important;
        min-width: unset !important;
        min-height: unset !important;
      }
    }

  