
    :root {
      --page-789betbest__primary-color: #e63946; /* Đỏ rực */
      --page-789betbest__secondary-color: #f1faee; /* Trắng nhạt */
      --page-789betbest__accent-color: #457b9d; /* Xanh dương đậm */
      --page-789betbest__text-color: #1d3557; /* Xanh đen */
      --page-789betbest__light-text-color: #ffffff; /* Trắng */
      --page-789betbest__dark-bg: #1d3557; /* Xanh đen */
      --page-789betbest__light-bg: #f1faee; /* Trắng nhạt */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-789betbest__text-color);
      background-color: var(--page-789betbest__light-bg);
      margin: 0;
      padding: 0;
    }

    .page-789betbest {
      max-width: 100%;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    .page-789betbest__hero-section {
      position: relative;
      width: 100%;
      background-color: var(--page-789betbest__dark-bg);
      color: var(--page-789betbest__light-text-color);
      text-align: center;
      padding: 10px 0 60px 0; /* Adjusted for fixed header */
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-789betbest__hero-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      object-fit: cover;
      display: block;
      margin-bottom: 20px;
    }

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

    .page-789betbest__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-789betbest__primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-789betbest__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-789betbest__button {
      display: inline-block;
      background-color: var(--page-789betbest__primary-color);
      color: var(--page-789betbest__light-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-789betbest__button:hover {
      background-color: #d62839;
      transform: translateY(-2px);
    }

    .page-789betbest__floating-login-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      width: 90%;
      max-width: 350px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border-radius: 10px;
      overflow: hidden;
    }

    .page-789betbest__floating-login-button .page-789betbest__button {
      width: 100%;
      padding: 18px 20px;
      font-size: 1.2em;
      background-color: #ffc107; /* Vàng sáng */
      color: var(--page-789betbest__dark-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 2px solid #e0a800;
    }

    .page-789betbest__floating-login-button .page-789betbest__button:hover {
      background-color: #e0a800;
      transform: none;
    }

    .page-789betbest__section {
      padding: 60px 20px;
      text-align: center;
      background-color: var(--page-789betbest__light-bg);
    }

    .page-789betbest__section--dark {
      background-color: var(--page-789betbest__dark-bg);
      color: var(--page-789betbest__light-text-color);
    }

    .page-789betbest__section-title {
      font-size: 2em;
      margin-bottom: 40px;
      color: var(--page-789betbest__text-color);
    }

    .page-789betbest__section--dark .page-789betbest__section-title {
      color: var(--page-789betbest__primary-color);
    }

    .page-789betbest__section-description {
      max-width: 800px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: var(--page-789betbest__text-color);
    }

    .page-789betbest__section--dark .page-789betbest__section-description {
      color: var(--page-789betbest__secondary-color);
    }

    .page-789betbest__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-789betbest__card {
      background-color: var(--page-789betbest__light-text-color);
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-789betbest__card--dark {
      background-color: var(--page-789betbest__accent-color);
      color: var(--page-789betbest__light-text-color);
    }

    .page-789betbest__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-789betbest__card-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      max-width: 100%;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      display: block;
    }

    .page-789betbest__card-title {
      font-size: 1.4em;
      margin-bottom: 15px;
      color: var(--page-789betbest__primary-color);
    }

    .page-789betbest__card--dark .page-789betbest__card-title {
      color: var(--page-789betbest__light-text-color);
    }

    .page-789betbest__card-text {
      font-size: 1em;
      color: var(--page-789betbest__text-color);
    }

    .page-789betbest__card--dark .page-789betbest__card-text {
      color: var(--page-789betbest__secondary-color);
    }

    .page-789betbest__faq-section {
      padding: 60px 20px;
      background-color: var(--page-789betbest__secondary-color);
      text-align: center;
    }

    .page-789betbest__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-789betbest__faq-item {
      background-color: var(--page-789betbest__light-text-color);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-789betbest__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-789betbest__light-text-color);
      color: var(--page-789betbest__dark-bg);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-789betbest__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-789betbest__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-789betbest__dark-bg);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-789betbest__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: var(--page-789betbest__primary-color);
    }

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

    .page-789betbest__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #eaf4f4;
      color: var(--page-789betbest__text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-789betbest__faq-answer p {
      margin: 0 0 10px 0;
    }

    .page-789betbest__cta-section {
      background-color: var(--page-789betbest__primary-color);
      color: var(--page-789betbest__light-text-color);
      padding: 60px 20px;
      text-align: center;
    }

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

    .page-789betbest__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789betbest__hero-section {
        padding-top: 10px; /* Mobile header adjustment */
      }

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

      .page-789betbest__hero-subtitle {
        font-size: 1em;
      }

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

      .page-789betbest__section-title {
        font-size: 1.6em;
      }

      .page-789betbest__section-description {
        font-size: 0.95em;
      }

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

      .page-789betbest__card {
        padding: 20px;
      }

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

      .page-789betbest__card-text {
        font-size: 0.9em;
      }

      .page-789betbest__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-789betbest__faq-question h3 {
        font-size: 1em;
      }

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

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

      .page-789betbest__cta-title {
        font-size: 1.6em;
      }

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

      /* Ensure all images are responsive on mobile */
      img {
        max-width: 100% !important;
        height: auto !important;
        display: block; /* Important for proper spacing */
      }
      .page-789betbest__card-image {
        height: auto; /* Allow height to adjust on mobile */
        max-height: 180px; /* Cap max height if needed */
      }
    }
  