
    :root {
      --page-888bbookmaker-primary-color: #e44d26; /* Cam đậm */
      --page-888bbookmaker-secondary-color: #333; /* Xám đậm */
      --page-888bbookmaker-accent-color: #ffc107; /* Vàng */
      --page-888bbookmaker-text-color: #333; /* Màu chữ chính */
      --page-888bbookmaker-light-text-color: #666; /* Màu chữ phụ */
      --page-888bbookmaker-bg-color: #f8f9fa; /* Màu nền nhẹ */
      --page-888bbookmaker-white: #fff;
      --page-888bbookmaker-dark-bg: #212529; /* Nền tối */
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-888bbookmaker-text-color);
      background-color: var(--page-888bbookmaker-bg-color);
      margin: 0;
      padding: 0;
    }

    .page-888bbookmaker {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Fixed header spacing */
    .page-888bbookmaker__hero-section {
      padding-top: 80px; /* Adjust based on header height */
      position: relative;
      overflow: hidden;
    }
    @media (max-width: 768px) {
      .page-888bbookmaker__hero-section {
        padding-top: 60px; /* Adjust for mobile header height */
      }
    }

    /* Hero Section */
    .page-888bbookmaker__hero-banner {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }
    .page-888bbookmaker__hero-content {
      text-align: center;
      padding: 30px 20px;
      background-color: var(--page-888bbookmaker-white);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-top: -50px; /* Overlap with banner for visual effect */
      position: relative;
      z-index: 1;
    }
    .page-888bbookmaker__hero-title {
      font-size: 2.5em;
      color: var(--page-888bbookmaker-primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }
    .page-888bbookmaker__hero-subtitle {
      font-size: 1.2em;
      color: var(--page-888bbookmaker-light-text-color);
      margin-bottom: 25px;
    }
    .page-888bbookmaker__cta-button {
      display: inline-block;
      background-color: var(--page-888bbookmaker-primary-color);
      color: var(--page-888bbookmaker-white);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    .page-888bbookmaker__cta-button:hover {
      background-color: #c9401f;
      transform: translateY(-2px);
    }

    /* Floating CTA Button */
    .page-888bbookmaker__floating-cta {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: var(--page-888bbookmaker-accent-color);
      color: var(--page-888bbookmaker-dark-bg);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-888bbookmaker__pulse 2s infinite;
      white-space: nowrap; /* Prevent text wrapping */
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .page-888bbookmaker__floating-cta:hover {
      background-color: #e6b100;
      transform: translateX(-50%) scale(1.05);
    }
    @keyframes page-888bbookmaker__pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.03); }
      100% { transform: translateX(-50%) scale(1); }
    }
    @media (max-width: 600px) {
      .page-888bbookmaker__floating-cta {
        bottom: 10px;
        padding: 10px 20px;
        font-size: 0.9em;
      }
    }

    /* Section Styling */
    .page-888bbookmaker__section {
      background-color: var(--page-888bbookmaker-white);
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    .page-888bbookmaker__section-title {
      font-size: 2em;
      color: var(--page-888bbookmaker-secondary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }
    .page-888bbookmaker__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--page-888bbookmaker-primary-color);
      border-radius: 2px;
    }
    .page-888bbookmaker__section-content {
      font-size: 1.05em;
      line-height: 1.8;
      color: var(--page-888bbookmaker-text-color);
      text-align: justify;
    }

    /* Game List */
    .page-888bbookmaker__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }
    .page-888bbookmaker__game-item {
      background-color: var(--page-888bbookmaker-bg-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }
    .page-888bbookmaker__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }
    .page-888bbookmaker__game-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-888bbookmaker__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      max-width: 100%; /* Important for responsiveness */
    }
    .page-888bbookmaker__game-item:hover .page-888bbookmaker__game-image {
      transform: scale(1.05);
    }
    .page-888bbookmaker__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .page-888bbookmaker__game-title {
      font-size: 1.3em;
      color: var(--page-888bbookmaker-primary-color);
      margin-bottom: 10px;
    }
    .page-888bbookmaker__game-description {
      font-size: 0.95em;
      color: var(--page-888bbookmaker-light-text-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }
    .page-888bbookmaker__game-button {
      display: inline-block;
      background-color: var(--page-888bbookmaker-accent-color);
      color: var(--page-888bbookmaker-dark-bg);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.95em;
      transition: background-color 0.3s ease;
    }
    .page-888bbookmaker__game-button:hover {
      background-color: #e6b100;
    }

    /* Promotion Section */
    .page-888bbookmaker__promo-card {
      background-color: var(--page-888bbookmaker-dark-bg);
      color: var(--page-888bbookmaker-white);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      margin-top: 20px;
    }
    .page-888bbookmaker__promo-title {
      font-size: 1.8em;
      color: var(--page-888bbookmaker-accent-color);
      margin-bottom: 15px;
    }
    .page-888bbookmaker__promo-description {
      font-size: 1.1em;
      margin-bottom: 25px;
    }
    .page-888bbookmaker__promo-button {
      background-color: var(--page-888bbookmaker-primary-color);
      color: var(--page-888bbookmaker-white);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }
    .page-888bbookmaker__promo-button:hover {
      background-color: #c9401f;
    }

    /* FAQ Section */
    .page-888bbookmaker__faq-list {
      margin-top: 30px;
    }
    .page-888bbookmaker__faq-item {
      background-color: var(--page-888bbookmaker-white);
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .page-888bbookmaker__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-888bbookmaker-bg-color);
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
    }
    .page-888bbookmaker__faq-question:hover {
      background-color: #e9ecef;
    }
    .page-888bbookmaker__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--page-888bbookmaker-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }
    .page-888bbookmaker__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-888bbookmaker-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }
    .page-888bbookmaker__faq-item.active .page-888bbookmaker__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
      color: #dc3545; /* Red for active */
    }
    .page-888bbookmaker__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.3s ease;
      color: var(--page-888bbookmaker-text-color);
    }
    .page-888bbookmaker__faq-item.active .page-888bbookmaker__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }
    .page-888bbookmaker__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-888bbookmaker__hero-title {
        font-size: 1.8em;
      }
      .page-888bbookmaker__hero-subtitle {
        font-size: 1em;
      }
      .page-888bbookmaker__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-888bbookmaker__section-title {
        font-size: 1.6em;
      }
      .page-888bbookmaker__section-content {
        font-size: 0.95em;
      }
      .page-888bbookmaker__game-grid {
        grid-template-columns: 1fr;
      }
      .page-888bbookmaker__game-image-wrapper {
        height: 180px;
      }
      .page-888bbookmaker__promo-title {
        font-size: 1.5em;
      }
      .page-888bbookmaker__promo-description {
        font-size: 1em;
      }
      .page-888bbookmaker__faq-question {
        padding: 12px 15px;
      }
      .page-888bbookmaker__faq-question h3 {
        font-size: 1em;
      }
      .page-888bbookmaker__faq-answer {
        padding: 0 15px;
      }
      .page-888bbookmaker__faq-item.active .page-888bbookmaker__faq-answer {
        padding: 15px !important;
      }
      .page-888bbookmaker__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-888bbookmaker__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  