
    :root {
      --page-789bets-primary-color: #e44d26; /* Màu cam đỏ */
      --page-789bets-secondary-color: #ff9800; /* Màu cam sáng */
      --page-789bets-accent-color: #4CAF50; /* Màu xanh lá */
      --page-789bets-text-color: #333;
      --page-789bets-light-text-color: #fff;
      --page-789bets-background-light: #f5f5f5;
      --page-789bets-background-dark: #2c3e50; /* Xám đậm */
      --page-789bets-card-background: #ffffff;
      --page-789bets-border-color: #ddd;
      --page-789bets-shadow-color: rgba(0, 0, 0, 0.1);
    }

    .page-789bets {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-789bets-text-color);
      background-color: var(--page-789bets-background-light);
      overflow-x: hidden;
    }

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

    /* Fixed Header Spacing */
    .page-789bets__hero-section {
      padding-top: 120px; /* Adjust based on actual header height */
      position: relative;
      overflow: hidden;
      background-color: var(--page-789bets-background-dark);
      color: var(--page-789bets-light-text-color);
      text-align: center;
    }

    .page-789bets__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }

    .page-789bets__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      box-shadow: 0 4px 15px var(--page-789bets-shadow-color);
    }

    .page-789bets__hero-content {
      padding: 20px;
      max-width: 800px;
      margin: 0 auto;
    }

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

    .page-789bets__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
    }

    .page-789bets__login-button-fixed {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-789bets-primary-color);
      color: var(--page-789bets-light-text-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      z-index: 1000;
      animation: page-789bets__pulse 2s infinite;
    }

    .page-789bets__login-button-fixed:hover {
      background-color: var(--page-789bets-secondary-color);
      transform: translateY(-3px);
    }

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

    .page-789bets__section-title {
      font-size: 2.2em;
      color: var(--page-789bets-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-789bets__intro-section {
      background-color: var(--page-789bets-card-background);
      padding: 40px 20px;
      margin-bottom: 40px;
      border-radius: 8px;
      box-shadow: 0 2px 10px var(--page-789bets-shadow-color);
    }

    .page-789bets__intro-text {
      font-size: 1.1em;
      color: var(--page-789bets-text-color);
      text-align: justify;
      margin-bottom: 20px;
    }

    .page-789bets__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
    }

    .page-789bets__category-card {
      background-color: var(--page-789bets-card-background);
      border-radius: 12px;
      box-shadow: 0 4px 15px var(--page-789bets-shadow-color);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-789bets__category-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-789bets__category-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for image container */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #eee;
    }

    .page-789bets__category-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensures image covers the area without distortion */
      display: block;
    }

    .page-789bets__category-title {
      font-size: 1.4em;
      font-weight: bold;
      color: var(--page-789bets-primary-color);
      padding: 15px;
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-789bets__why-choose {
      background-color: var(--page-789bets-background-dark);
      color: var(--page-789bets-light-text-color);
      padding: 60px 20px;
      margin-bottom: 40px;
      border-radius: 8px;
    }

    .page-789bets__why-choose .page-789bets__section-title {
      color: var(--page-789bets-light-text-color);
    }

    .page-789bets__why-choose .page-789bets__section-title::after {
      background-color: var(--page-789bets-accent-color);
    }

    .page-789bets__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .page-789bets__feature-item {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 30px;
      border-radius: 10px;
      transition: background-color 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-789bets__feature-item:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .page-789bets__feature-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Ensure icons are not too small */
    }
    .page-789bets__feature-icon {
      max-width: 100px;
      height: auto;
      display: block;
    }

    .page-789bets__feature-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--page-789bets-secondary-color);
    }

    .page-789bets__feature-description {
      font-size: 1em;
      color: rgba(255, 255, 255, 0.8);
    }

    .page-789bets__providers-section,
    .page-789bets__payment-methods-section {
      padding: 40px 20px;
      margin-bottom: 40px;
      background-color: var(--page-789bets-card-background);
      border-radius: 8px;
      box-shadow: 0 2px 10px var(--page-789bets-shadow-color);
    }

    .page-789bets__providers-grid,
    .page-789bets__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-789bets__provider-logo-wrapper,
    .page-789bets__payment-icon-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 80px; /* Consistent height for logos */
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
      border: 1px solid var(--page-789bets-border-color);
      border-radius: 8px;
      transition: transform 0.2s ease;
    }

    .page-789bets__provider-logo-wrapper:hover,
    .page-789bets__payment-icon-wrapper:hover {
      transform: translateY(-5px);
    }

    .page-789bets__provider-logo,
    .page-789bets__payment-icon {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .page-789bets__faq-section {
      padding: 40px 20px;
      margin-bottom: 40px;
      background-color: var(--page-789bets-card-background);
      border-radius: 8px;
      box-shadow: 0 2px 10px var(--page-789bets-shadow-color);
    }

    .page-789bets__faq-item {
      border: 1px solid var(--page-789bets-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .page-789bets__faq-item.active {
      border-color: var(--page-789bets-primary-color);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

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

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

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

    .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 event */
    }

    .page-789bets__faq-item.active .page-789bets__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .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;
      color: var(--page-789bets-text-color);
    }

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

    .page-789bets__cta-section {
      background-color: var(--page-789bets-primary-color);
      color: var(--page-789bets-light-text-color);
      padding: 50px 20px;
      text-align: center;
      border-radius: 8px;
      margin-bottom: 40px;
    }

    .page-789bets__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-789bets-light-text-color);
    }

    .page-789bets__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
    }

    .page-789bets__cta-button {
      background-color: var(--page-789bets-accent-color);
      color: var(--page-789bets-light-text-color);
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-789bets__cta-button:hover {
      background-color: #4CAF50; /* Slightly darker green */
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-789bets__hero-title {
        font-size: 2.4em;
      }
      .page-789bets__section-title {
        font-size: 2em;
      }
      .page-789bets__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-789bets__hero-section {
        padding-top: 100px; /* Adjust for mobile header height */
      }
      .page-789bets__hero-title {
        font-size: 2em;
      }
      .page-789bets__hero-description {
        font-size: 1em;
      }
      .page-789bets__section-title {
        font-size: 1.8em;
      }
      .page-789bets__game-categories {
        grid-template-columns: 1fr;
      }
      .page-789bets__feature-grid {
        grid-template-columns: 1fr;
      }
      .page-789bets__providers-grid,
      .page-789bets__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-789bets__login-button-fixed {
        padding: 12px 25px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
      .page-789bets__cta-title {
        font-size: 2em;
      }
      .page-789bets__cta-description {
        font-size: 1em;
      }
      .page-789bets__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }
      .page-789bets__faq-question {
        padding: 12px 15px;
      }
      .page-789bets__faq-question h3 {
        font-size: 1em;
      }
      .page-789bets__faq-answer {
        padding: 15px 15px !important; /* Important for mobile */
      }
      /* Ensure all images are responsive on mobile */
      .page-789bets img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789bets__hero-image-wrapper,
      .page-789bets__category-image-wrapper,
      .page-789bets__feature-icon-wrapper,
      .page-789bets__provider-logo-wrapper,
      .page-789bets__payment-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-789bets__hero-title {
        font-size: 1.8em;
      }
      .page-789bets__section-title {
        font-size: 1.6em;
      }
      .page-789bets__login-button-fixed {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-789bets__cta-title {
        font-size: 1.8em;
      }
      .page-789bets__cta-button {
        font-size: 1em;
      }
    }
  