
    :root {
      --page-789bets__primary-color: #e44d26; /* Cam đỏ */
      --page-789bets__secondary-color: #ff9800; /* Cam sáng */
      --page-789bets__accent-color: #4CAF50; /* Xanh lá */
      --page-789bets__text-color: #333;
      --page-789bets__light-text-color: #f8f8f8;
      --page-789bets__background-light: #f5f5f5;
      --page-789bets__background-dark: #2c3e50; /* Xám xanh đậm */
      --page-789bets__card-background: #ffffff;
      --page-789bets__border-color: #ddd;
    }

    .page-789bets {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-789bets__text-color);
      background-color: var(--page-789bets__background-light);
      overflow-x: hidden;
    }

    /* Hero Section */
    .page-789bets__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:789b,login,banner]') no-repeat center center/cover;
      color: var(--page-789bets__light-text-color);
      text-align: center;
      padding: 80px 20px 60px; /* Adjusted for fixed header on mobile */
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
    }

    .page-789bets__hero-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: #fff; /* Ensure high contrast */
    }

    .page-789bets__hero-subtitle {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 600px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
      color: #eee; /* Ensure high contrast */
    }

    .page-789bets__primary-button {
      display: inline-block;
      background-color: var(--page-789bets__primary-color);
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-789bets__primary-button:hover {
      background-color: #c0392b; /* Darker shade on hover */
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-789bets__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-789bets__accent-color);
      color: var(--page-789bets__light-text-color);
      padding: 12px 25px;
      border-radius: 50px;
      text-align: center;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
      display: block; /* Ensure it's a block for centering */
      max-width: 90%; /* Limit width on small screens */
      box-sizing: border-box;
      text-decoration: none;
      font-size: 1.1em;
    }

    .page-789bets__floating-button:hover {
      background-color: #4CAF50;
      transform: translateX(-50%) translateY(-3px);
    }

    /* Section Styling */
    .page-789bets__section {
      padding: 40px 20px;
      text-align: center;
      background-color: var(--page-789bets__card-background);
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      border-radius: 8px;
    }

    .page-789bets__section--dark {
      background-color: var(--page-789bets__background-dark);
      color: var(--page-789bets__light-text-color);
    }

    .page-789bets__section-title {
      font-size: 1.8em;
      margin-bottom: 25px;
      color: var(--page-789bets__primary-color);
    }

    .page-789bets__section--dark .page-789bets__section-title {
      color: var(--page-789bets__secondary-color);
    }

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

    /* Game Categories */
    .page-789bets__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-789bets__game-card {
      background-color: var(--page-789bets__card-background);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      min-height: 280px;
    }

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

    .page-789bets__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 180px; /* Fixed height for consistent card size */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-789bets__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-789bets__game-card-title {
      font-size: 1.2em;
      color: var(--page-789bets__primary-color);
      margin: 15px 10px 10px;
      font-weight: bold;
    }

    .page-789bets__game-card-description {
      font-size: 0.9em;
      color: var(--page-789bets__text-color);
      padding: 0 15px 15px;
      flex-grow: 1;
    }

    /* Guide Steps */
    .page-789bets__guide-steps {
      display: flex;
      flex-direction: column;
      gap: 30px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-789bets__step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background-color: var(--page-789bets__card-background);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .page-789bets__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--page-789bets__secondary-color);
      margin-bottom: 10px;
      line-height: 1;
    }

    .page-789bets__step-title {
      font-size: 1.5em;
      color: var(--page-789bets__primary-color);
      margin-bottom: 15px;
    }

    .page-789bets__step-description {
      font-size: 1em;
      color: var(--page-789bets__text-color);
    }

    .page-789bets__step-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-top: 20px;
      border-radius: 8px;
    }

    .page-789bets__step-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    /* FAQ Section */
    .page-789bets__faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-789bets__faq-item {
      background-color: var(--page-789bets__card-background);
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      border: 1px solid var(--page-789bets__border-color);
    }

    .page-789bets__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #fcfcfc;
      border-bottom: 1px solid var(--page-789bets__border-color);
      border-radius: 8px 8px 0 0;
    }

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

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

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

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

    .page-789bets__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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: #fff;
      border-radius: 0 0 8px 8px;
      color: var(--page-789bets__text-color);
    }

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

    .page-789bets__faq-answer p {
      margin-bottom: 1em;
    }

    .page-789bets__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* General responsive image styles */
    .page-789bets img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789bets__hero-section {
        padding-top: 60px !important; /* Mobile padding for fixed header */
        min-height: 250px;
      }

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

      .page-789bets__hero-subtitle {
        font-size: 0.9em;
      }

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

      .page-789bets__section-title {
        font-size: 1.5em;
      }

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

      .page-789bets__step-item {
        padding: 20px;
      }

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

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

      .page-789bets__faq-question {
        padding: 12px 15px;
      }

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

      /* Force image responsiveness */
      .page-789bets__game-card-image,
      .page-789bets__step-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-789bets__game-card-image-wrapper,
      .page-789bets__step-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (min-width: 769px) {
      .page-789bets__hero-section {
        padding-top: 80px !important; /* Desktop padding for fixed header */
        min-height: 400px;
      }

      .page-789bets__hero-title {
        font-size: 3em;
      }

      .page-789bets__hero-subtitle {
        font-size: 1.2em;
      }

      .page-789bets__game-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .page-789bets__step-item {
        flex-direction: row;
        text-align: left;
        gap: 30px;
        padding: 30px;
      }

      .page-789bets__step-item:nth-child(even) {
        flex-direction: row-reverse;
      }

      .page-789bets__step-content {
        flex: 1;
      }

      .page-789bets__step-image-wrapper {
        flex: 1;
        max-width: 40%;
        margin-top: 0;
      }
    }
  