
    /* Tổng thể cho trang 789bets */
    .page-789bets {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
      padding-bottom: 80px; /* Để tránh nội dung bị che bởi nút đăng nhập nổi */
    }

    /* Hero Section */
    .page-789bets__hero-section {
      position: relative;
      background-color: #0d1a2f;
      color: #fff;
      text-align: center;
      padding: 10px 0 40px 0; /* padding-top 10px để tránh bị header che */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-789bets__hero-banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

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

    .page-789bets__hero-title {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: #ffcc00; /* Vàng đặc trưng */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-789bets__hero-description {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #eee;
    }

    .page-789bets__action-button {
      display: inline-block;
      background-color: #e44d26; /* Màu cam nổi bật */
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-789bets__action-button:hover {
      background-color: #f16529;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-789bets__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #007bff; /* Màu xanh dương */
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      animation: page-789bets__pulse 2s infinite;
      cursor: pointer;
      border: none;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
    }

    .page-789bets__floating-button:hover {
      background-color: #0056b3;
    }

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

    /* General Section Styling */
    .page-789bets__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-789bets__section-title {
      font-size: 2em;
      color: #0d1a2f;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-789bets__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #ffcc00;
      margin: 10px auto 0;
    }

    /* Game Categories */
    .page-789bets__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      text-align: center;
    }

    .page-789bets__game-item {
      background-color: #f9f9f9;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

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

    .page-789bets__game-image-wrapper {
      width: 100%;
      max-width: 250px; /* Increased max-width for game images */
      height: 150px; /* Fixed height for consistency */
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #e0e0e0; /* Placeholder background */
    }

    .page-789bets__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensure images cover the area */
      max-width: 100%;
      display: block;
    }

    .page-789bets__game-name {
      font-size: 1.1em;
      font-weight: bold;
      color: #0d1a2f;
      margin-top: 5px;
    }

    /* Benefits Section */
    .page-789bets__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-789bets__benefit-item {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-789bets__benefit-item:hover {
      transform: translateY(-5px);
    }

    .page-789bets__benefit-icon {
      width: 80px; /* Increased size for benefit icons */
      height: 80px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain;
    }

    .page-789bets__benefit-title {
      font-size: 1.3em;
      color: #0d1a2f;
      margin-bottom: 10px;
    }

    .page-789bets__benefit-description {
      font-size: 0.95em;
      color: #555;
    }

    /* Payment Methods & Providers */
    .page-789bets__grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      justify-items: center;
      align-items: center;
    }

    .page-789bets__grid-item {
      background-color: #eee;
      padding: 10px;
      border-radius: 5px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 70px; /* Consistent height for logos */
      width: 100%;
      max-width: 150px;
    }

    .page-789bets__grid-logo {
      width: auto;
      height: 100%;
      max-width: 100%;
      object-fit: contain;
    }

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

    .page-789bets__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-789bets__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #0d1a2f;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-789bets__faq-question h3 {
      margin: 0;
      color: #fff;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-789bets__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from interfering with click event */
    }

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

    .page-789bets__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      color: #333;
      opacity: 0;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-789bets__hero-section {
        padding-top: 10px !important; /* Ensure header space on mobile */
        padding-bottom: 20px;
      }
      .page-789bets__hero-title {
        font-size: 1.8em;
      }
      .page-789bets__hero-description {
        font-size: 1em;
      }
      .page-789bets__action-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-789bets__section {
        padding: 30px 10px;
      }
      .page-789bets__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-789bets__game-categories {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }
      .page-789bets__game-image-wrapper {
        max-width: 180px;
        height: 120px;
      }
      .page-789bets__game-name {
        font-size: 0.95em;
      }
      .page-789bets__benefits-grid {
        grid-template-columns: 1fr;
      }
      .page-789bets__benefit-item {
        padding: 20px;
      }
      .page-789bets__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-789bets__grid-container {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 10px;
      }
      .page-789bets__grid-item {
        height: 60px;
      }

      /* Image responsive optimization for mobile */
      .page-789bets img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789bets__game-image-wrapper,
      .page-789bets__benefit-item,
      .page-789bets__grid-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  