
    :root {
      --page-thabet88fish__primary-color: #007bff; /* Xanh dương */
      --page-thabet88fish__secondary-color: #6c757d; /* Xám */
      --page-thabet88fish__accent-color: #ffc107; /* Vàng */
      --page-thabet88fish__text-color: #343a40; /* Đen xám */
      --page-thabet88fish__background-color: #f8f9fa; /* Trắng xám */
      --page-thabet88fish__light-background: #ffffff; /* Trắng */
      --page-thabet88fish__dark-background: #212529; /* Đen */
      --page-thabet88fish__border-color: #dee2e6; /* Xám nhạt */
      --page-thabet88fish__success-color: #28a745; /* Xanh lá */
      --page-thabet88fish__danger-color: #dc3545; /* Đỏ */
    }

    .page-thabet88fish {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-thabet88fish__text-color);
      background-color: var(--page-thabet88fish__background-color);
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }

    .page-thabet88fish__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-thabet88fish__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-thabet88fish__section--light {
      background-color: var(--page-thabet88fish__light-background);
    }

    .page-thabet88fish__section--dark {
      background-color: var(--page-thabet88fish__dark-background);
      color: #ffffff;
    }

    .page-thabet88fish__hero-section {
      padding-top: 10px; /* Adjusted for fixed header on desktop */
      background-color: var(--page-thabet88fish__dark-background);
      color: #ffffff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-thabet88fish__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-thabet88fish__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Ensures image fits without stretching */
      border-radius: 8px;
    }

    .page-thabet88fish__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px 15px 40px;
    }

    .page-thabet88fish__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-thabet88fish__accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-thabet88fish__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-thabet88fish__button {
      display: inline-block;
      background-color: var(--page-thabet88fish__primary-color);
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-thabet88fish__button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-thabet88fish__button--accent {
      background-color: var(--page-thabet88fish__accent-color);
      color: var(--page-thabet88fish__text-color);
    }

    .page-thabet88fish__button--accent:hover {
      background-color: #e0a800;
      color: var(--page-thabet88fish__dark-background);
    }

    .page-thabet88fish__heading {
      font-size: 2em;
      margin-bottom: 30px;
      color: var(--page-thabet88fish__primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-thabet88fish__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-thabet88fish__accent-color);
      border-radius: 2px;
    }

    .page-thabet88fish__text-block {
      text-align: left;
      margin-bottom: 20px;
    }

    .page-thabet88fish__text-block h3 {
      color: var(--page-thabet88fish__primary-color);
      font-size: 1.5em;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-thabet88fish__text-block p {
      margin-bottom: 10px;
    }

    .page-thabet88fish__text-block ul {
      list-style: disc inside;
      text-align: left;
      padding-left: 20px;
      margin-bottom: 15px;
    }

    .page-thabet88fish__text-block li {
      margin-bottom: 8px;
    }

    .page-thabet88fish__image-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-thabet88fish__image-card {
      background-color: var(--page-thabet88fish__light-background);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-thabet88fish__image-card-img-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for consistency */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #e9ecef;
    }

    .page-thabet88fish__image-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Cover the area, crop if necessary */
      display: block;
    }

    .page-thabet88fish__image-card-content {
      padding: 20px;
    }

    .page-thabet88fish__image-card-title {
      font-size: 1.25em;
      margin-bottom: 10px;
      color: var(--page-thabet88fish__primary-color);
    }

    .page-thabet88fish__image-card-text {
      font-size: 0.95em;
      color: var(--page-thabet88fish__secondary-color);
    }

    .page-thabet88fish__game-provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-thabet88fish__provider-logo-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 100px; /* Consistent height for logos */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--page-thabet88fish__light-background);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.2s ease;
    }

    .page-thabet88fish__provider-logo-wrapper:hover {
      transform: scale(1.05);
    }

    .page-thabet88fish__provider-logo {
      max-width: 90%;
      max-height: 90%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .page-thabet88fish__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-thabet88fish__danger-color); /* Nổi bật hơn */
      color: #ffffff;
      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);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-thabet88fish__floating-button:hover {
      background-color: #c82333;
      transform: translateX(-50%) translateY(-3px);
    }

    /* FAQ Section */
    .page-thabet88fish__faq-section {
      background-color: var(--page-thabet88fish__light-background);
      padding: 60px 0;
    }

    .page-thabet88fish__faq-item {
      border: 1px solid var(--page-thabet88fish__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #ffffff;
    }

    .page-thabet88fish__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f1f1f1;
      border-bottom: 1px solid var(--page-thabet88fish__border-color);
      transition: background-color 0.3s ease;
    }

    .page-thabet88fish__faq-question:hover {
      background-color: #e9e9e9;
    }

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

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

    .page-thabet88fish__faq-item.active .page-thabet88fish__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-thabet88fish__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;
      text-align: left;
      color: var(--page-thabet88fish__secondary-color);
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-thabet88fish__hero-section {
        padding-top: 10px; /* Adjusted for fixed header on mobile */
      }
      .page-thabet88fish__hero-title {
        font-size: 1.8em;
      }
      .page-thabet88fish__hero-description {
        font-size: 1em;
      }
      .page-thabet88fish__button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-thabet88fish__heading {
        font-size: 1.6em;
      }
      .page-thabet88fish__text-block h3 {
        font-size: 1.3em;
      }
      .page-thabet88fish__image-grid {
        grid-template-columns: 1fr;
      }
      .page-thabet88fish__image-card-img-wrapper {
        height: 180px;
      }
      .page-thabet88fish__floating-button {
        width: calc(100% - 40px);
        max-width: 300px; /* Limit width on very small screens */
        font-size: 1em;
        padding: 12px 20px;
      }
      /* Ensure images are responsive on mobile */
      .page-thabet88fish__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-thabet88fish__image-card-img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-thabet88fish__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-thabet88fish__hero-image-wrapper,
      .page-thabet88fish__image-card-img-wrapper,
      .page-thabet88fish__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  