
    :root {
      --primary-color: #e040fb; /* Tím nổi bật */
      --secondary-color: #7b1fa2; /* Tím đậm hơn */
      --accent-color: #ffeb3b; /* Vàng sáng */
      --text-color: #ffffff; /* Trắng */
      --background-dark: #1a0033; /* Nền rất tối */
      --background-light: #2c0059; /* Nền tối vừa */
      --card-background: #3a0073; /* Nền thẻ */
      --border-color: #5e00b3; /* Màu viền */
      --button-hover: #ffc107; /* Vàng cam khi hover */
      --header-offset: 122px; /* Default offset */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-dark);
      margin: 0;
      padding: 0;
    }

    .page-bet-6789 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-bet-6789__section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: var(--background-light);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-bet-6789__section--dark {
      background-color: var(--background-dark);
    }

    .page-bet-6789__hero-section {
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
      color: var(--text-color);
      padding: 60px 20px;
      border-radius: 0; /* Hero section typically spans full width */
      margin-bottom: 0;
      padding-top: 10px; /* Small decorative top padding as body handles main offset */
    }

    .page-bet-6789__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
      color: var(--accent-color);
    }

    .page-bet-6789__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--text-color);
    }

    .page-bet-6789__button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--background-dark);
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    .page-bet-6789__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-top: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      display: block; /* Ensure it's block for margin auto to work */
      margin-left: auto;
      margin-right: auto;
    }

    .page-bet-6789__heading {
      font-size: 2.2em;
      color: var(--primary-color);
      margin-bottom: 30px;
      font-weight: bold;
      text-align: center;
    }

    .page-bet-6789__subheading {
      font-size: 1.8em;
      color: var(--accent-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-bet-6789__text {
      font-size: 1.1em;
      line-height: 1.8;
      max-width: 900px;
      margin: 0 auto 20px auto;
      color: #e0e0e0;
    }

    .page-bet-6789__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
      padding: 0 20px;
    }

    .page-bet-6789__card {
      background-color: var(--card-background);
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Important for responsive lists */
    }

    .page-bet-6789__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-bet-6789__card-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-bet-6789__card-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-bet-6789__card-description {
      font-size: 0.95em;
      color: #c0c0c0;
    }

    .page-bet-6789__list {
      list-style: none;
      padding: 0;
      margin: 30px auto;
      max-width: 900px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .page-bet-6789__list-item {
      background-color: var(--card-background);
      padding: 15px 20px;
      border-radius: 8px;
      margin-bottom: 10px;
      text-align: left;
      border: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      gap: 10px;
      box-sizing: border-box; /* Important for responsive lists */
      font-size: 1.05em;
      color: var(--text-color);
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-bet-6789__list-item::before {
      content: '✓';
      color: var(--accent-color);
      font-weight: bold;
      margin-right: 8px;
    }

    .page-bet-6789__provider-logo {
      width: 100%;
      max-width: 250px; /* Adjust max-width for logos */
      height: auto;
      border-radius: 5px;
      display: block;
      margin: 0 auto 10px auto;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
    }

    /* FAQ Styles */
    .page-bet-6789__faq-container {
      max-width: 800px;
      margin: 40px auto;
      padding: 0 15px;
      text-align: left;
    }

    .page-bet-6789__faq-item {
      background-color: var(--card-background);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-bet-6789__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--secondary-color);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-bet-6789__faq-question:hover {
      background-color: #8e24aa; /* Darker purple on hover */
    }

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

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

    .page-bet-6789__faq-item.active .page-bet-6789__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar visually */
    }

    .page-bet-6789__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #e0e0e0;
      font-size: 1em;
      line-height: 1.7;
    }

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

    .page-bet-6789__contact-info {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-top: 20px;
    }

    .page-bet-6789__social-list {
      list-style: none;
      padding: 0;
      margin: 20px auto 0 auto;
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .page-bet-6789__social-item {
      background-color: var(--secondary-color);
      padding: 10px 15px;
      border-radius: 20px;
      font-size: 1em;
      color: var(--text-color);
      border: 1px solid var(--border-color);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-bet-6789 {
        padding: 0 10px;
        padding-top: var(--header-offset, 122px);
      }

      .page-bet-6789__hero-title {
        font-size: 2em;
      }

      .page-bet-6789__hero-subtitle {
        font-size: 1.1em;
      }

      .page-bet-6789__heading {
        font-size: 1.8em;
      }

      .page-bet-6789__subheading {
        font-size: 1.5em;
      }

      .page-bet-6789__text {
        font-size: 1em;
      }

      .page-bet-6789__grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-bet-6789__card {
        padding: 20px;
      }

      .page-bet-6789__card-title {
        font-size: 1.2em;
      }

      .page-bet-6789__list {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-bet-6789__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px;
      }

      .page-bet-6789__faq-question {
        padding: 12px 15px;
      }

      .page-bet-6789__faq-question h3 {
        font-size: 1.1em;
      }

      .page-bet-6789__faq-answer {
        padding: 15px 15px;
      }

      .page-bet-6789__faq-item.active .page-bet-6789__faq-answer {
        padding: 15px 15px !important;
      }

      /* Ensure all images are responsive on mobile */
      .page-bet-6789__image,
      .page-bet-6789__card-image,
      .page-bet-6789__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-bet-6789__image-container,
      .page-bet-6789__card-image-container,
      .page-bet-6789__provider-logo-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-bet-6789__hero-title {
        font-size: 1.8em;
      }
      .page-bet-6789__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  