
    /* CSS Styles for page-789bet */
    :root {
      --page-789bet-primary-color: #e44d26; /* Cam đỏ */
      --page-789bet-secondary-color: #f7b731; /* Vàng cam */
      --page-789bet-dark-bg: #1a1a1a; /* Nền tối */
      --page-789bet-light-bg: #f5f5f5; /* Nền sáng */
      --page-789bet-text-color: #ffffff; /* Chữ trắng */
      --page-789bet-dark-text: #333333; /* Chữ tối */
      --page-789bet-border-color: #333333; /* Màu viền */
      --page-789bet-button-hover-color: #ff6a00; /* Màu hover nút */
    }

    .page-789bet {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-789bet-dark-text); /* Default text color for light sections */
      background-color: var(--page-789bet-light-bg);
      overflow-x: hidden;
    }

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

    .page-789bet__section {
      padding: 60px 20px;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-789bet__section--dark {
      background-color: var(--page-789bet-dark-bg);
      color: var(--page-789bet-text-color);
    }

    .page-789bet__section-title {
      font-size: 2.5em;
      color: var(--page-789bet-primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
      display: inline-block;
    }

    .page-789bet__section-title--dark {
      color: var(--page-789bet-secondary-color);
    }

    .page-789bet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--page-789bet-secondary-color);
      border-radius: 2px;
    }
    .page-789bet__section-title--dark::after {
      background-color: var(--page-789bet-primary-color);
    }

    .page-789bet__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-789bet__text-link {
        color: var(--page-789bet-primary-color);
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
    }
    .page-789bet__text-link:hover {
        color: var(--page-789bet-button-hover-color);
        text-decoration: underline;
    }

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

    .page-789bet__button:hover {
      background-color: var(--page-789bet-button-hover-color);
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-789bet__hero-section {
      position: relative;
      text-align: center;
      color: var(--page-789bet-text-color);
      overflow: hidden;
      padding-top: 120px; /* Space for fixed header */
      padding-bottom: 60px;
      background-color: var(--page-789bet-dark-bg); /* Fallback background */
    }

    .page-789bet__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }
    .page-789bet__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        object-fit: cover; /* Ensure it covers the area, might crop */
    }

    .page-789bet__hero-content {
      position: relative;
      z-index: 2;
      padding: 0 20px;
    }

    .page-789bet__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--page-789bet-secondary-color);
    }

    .page-789bet__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-789bet-text-color);
    }

    /* Floating Login Button */
    .page-789bet__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-789bet-primary-color);
      color: var(--page-789bet-text-color);
      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.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-789bet__pulse 1.5s infinite;
    }

    .page-789bet__floating-login-button:hover {
      background-color: var(--page-789bet-button-hover-color);
      transform: scale(1.05);
      animation: none;
    }

    @keyframes page-789bet__pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(228, 77, 38, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(228, 77, 38, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(228, 77, 38, 0);
      }
    }

    /* Steps Grid */
    .page-789bet__steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    .page-789bet__step-card {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        text-align: left;
    }
    .page-789bet__step-title {
        font-size: 1.5em;
        color: var(--page-789bet-secondary-color);
        margin-bottom: 15px;
    }
    .page-789bet__step-description {
        font-size: 1em;
        color: var(--page-789bet-text-color);
    }

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

    .page-789bet__game-card {
      background-color: var(--page-789bet-dark-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      color: var(--page-789bet-text-color);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-789bet__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 200px; /* Fixed height for consistency */
        background-color: #2a2a2a;
    }
    .page-789bet__game-card-image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: contain; /* Ensure image fits without cropping */
    }

    .page-789bet__game-card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-789bet__game-card-title {
      font-size: 1.4em;
      margin-bottom: 15px;
      color: var(--page-789bet-secondary-color);
      text-decoration: none; /* For link inside card */
    }
    .page-789bet__game-card-title a {
        color: var(--page-789bet-secondary-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .page-789bet__game-card-title a:hover {
        color: var(--page-789bet-primary-color);
    }

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

    .page-789bet__provider-logo-wrapper {
        width: 100%;
        max-width: 150px; /* Max width for logos */
        height: 80px; /* Fixed height for consistency */
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .page-789bet__provider-logo-wrapper:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    .page-789bet__provider-logo {
        max-width: 80%;
        max-height: 80%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    /* App Download Section */
    .page-789bet__app-download-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 40px;
    }
    .page-789bet__app-download-image-wrapper {
        width: 100%;
        max-width: 300px; /* Max width for phone image */
        overflow: hidden;
        box-sizing: border-box;
    }
    .page-789bet__app-download-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    .page-789bet__app-download-text {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: var(--page-789bet-dark-text);
    }
    .page-789bet__app-download-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* FAQ Section */
    .page-789bet__faq-list {
      margin-top: 40px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-789bet__faq-item {
      background-color: var(--page-789bet-dark-bg);
      color: var(--page-789bet-text-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .page-789bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #2a2a2a;
      border-bottom: 1px solid var(--page-789bet-border-color);
      transition: background-color 0.3s ease;
    }

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

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

    .page-789bet__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-789bet-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-789bet__faq-item.active .page-789bet__faq-toggle {
      transform: rotate(45deg);
    }

    .page-789bet__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;
      color: var(--page-789bet-light-bg);
    }

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

    .page-789bet__faq-answer p {
        margin-bottom: 10px;
    }
    .page-789bet__faq-answer p:last-child {
        margin-bottom: 0;
    }

    .page-789bet__advantage-list {
        list-style: none;
        padding: 0;
        margin-top: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
    .page-789bet__advantage-list li {
        background-color: #ffffff;
        border-left: 5px solid var(--page-789bet-primary-color);
        padding: 15px 20px;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        font-size: 1.1em;
        color: var(--page-789bet-dark-text);
    }
    .page-789bet__advantage-list li strong {
        color: var(--page-789bet-primary-color);
        margin-right: 10px;
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789bet__hero-section {
        padding-top: 100px; /* Adjust for mobile fixed header */
        padding-bottom: 40px;
      }
      .page-789bet__hero-title {
        font-size: 2.2em;
      }
      .page-789bet__hero-subtitle {
        font-size: 1.2em;
      }
      .page-789bet__section-title {
        font-size: 2em;
      }
      .page-789bet__section {
        padding: 40px 15px;
      }
      .page-789bet__text {
        font-size: 1em;
      }
      .page-789bet__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-789bet__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-789bet__game-categories {
        grid-template-columns: 1fr;
      }
      .page-789bet__game-card-image-wrapper {
          height: 180px;
      }
      .page-789bet__provider-logo-wrapper {
          max-width: 120px;
          height: 70px;
      }
      .page-789bet__faq-question {
        padding: 15px 20px;
      }
      .page-789bet__faq-question h3 {
        font-size: 1.1em;
      }
      .page-789bet__faq-answer {
        padding: 0 20px;
      }
      .page-789bet__faq-item.active .page-789bet__faq-answer {
        padding: 15px 20px !important;
      }
      .page-789bet__advantage-list li {
        font-size: 1em;
        padding: 12px 15px;
      }

      /* Image responsive optimization for mobile */
      .page-789bet__hero-image,
      .page-789bet__game-card-image,
      .page-789bet__provider-logo,
      .page-789bet__app-download-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789bet__hero-image-wrapper,
      .page-789bet__game-card-image-wrapper,
      .page-789bet__provider-logo-wrapper,
      .page-789bet__app-download-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
    @media (max-width: 480px) {
        .page-789bet__hero-title {
            font-size: 1.8em;
        }
        .page-789bet__hero-subtitle {
            font-size: 1em;
        }
        .page-789bet__section-title {
            font-size: 1.8em;
        }
        .page-789bet__steps-grid {
            grid-template-columns: 1fr;
        }
    }
  