
    :root {
      --page-thabet88login__primary-color: #e44d26; /* Cam đỏ */
      --page-thabet88login__secondary-color: #333;
      --page-thabet88login__accent-color: #f7b731; /* Vàng */
      --page-thabet88login__background-color: #f8f8f8;
      --page-thabet88login__text-color: #333;
      --page-thabet88login__light-text-color: #fff;
      --page-thabet88login__border-color: #ddd;
      --page-thabet88login__shadow: rgba(0, 0, 0, 0.1);
    }

    .page-thabet88login {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-thabet88login__text-color);
      background-color: var(--page-thabet88login__background-color);
      overflow-x: hidden;
    }

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

    .page-thabet88login__section {
      background-color: #fff;
      margin-bottom: 25px;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 12px var(--page-thabet88login__shadow);
    }

    .page-thabet88login__section-title {
      font-size: 2.2em;
      color: var(--page-thabet88login__primary-color);
      text-align: center;
      margin-bottom: 30px;
      padding-bottom: 15px;
      border-bottom: 3px solid var(--page-thabet88login__accent-color);
      position: relative;
    }

    .page-thabet88login__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -3px;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-thabet88login__primary-color);
    }

    .page-thabet88login__text-center {
      text-align: center;
    }

    .page-thabet88login__button {
      display: inline-block;
      background-color: var(--page-thabet88login__primary-color);
      color: var(--page-thabet88login__light-text-color);
      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-thabet88login__button:hover {
      background-color: #c73c1d;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-thabet88login__hero-section {
      text-align: center;
      padding-top: 10px; /* Required spacing for fixed header */
      padding-bottom: 40px;
      background-color: #fff;
      border-radius: 0 0 15px 15px;
      box-shadow: 0 4px 12px var(--page-thabet88login__shadow);
      margin-bottom: 25px;
    }

    .page-thabet88login__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

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

    .page-thabet88login__hero-title {
      font-size: 2.8em;
      color: var(--page-thabet88login__primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-thabet88login__hero-subtitle {
      font-size: 1.4em;
      color: var(--page-thabet88login__secondary-color);
      margin-bottom: 25px;
    }

    /* Floating Login Button */
    .page-thabet88login__floating-login-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 40px);
      max-width: 400px;
      background-color: var(--page-thabet88login__accent-color);
      color: var(--page-thabet88login__text-color);
      padding: 15px 20px;
      border-radius: 50px;
      text-align: center;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

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

    .page-thabet88login__floating-login-button-icon {
      font-size: 1.5em;
      line-height: 1;
    }

    /* Introduction Section */
    .page-thabet88login__intro-content p {
      margin-bottom: 15px;
      font-size: 1.1em;
    }

    .page-thabet88login__intro-content strong {
      color: var(--page-thabet88login__primary-color);
    }

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

    .page-thabet88login__game-card {
      background-color: #f0f0f0;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 8px var(--page-thabet88login__shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-thabet88login__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px var(--page-thabet88login__shadow);
    }

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

    .page-thabet88login__game-card-image {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      display: block;
      object-fit: contain; /* Ensure image fits without cropping */
    }

    .page-thabet88login__game-card-title {
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-thabet88login__secondary-color);
      padding: 10px;
      margin: 0;
      background-color: #eee;
    }

    /* Login Guide */
    .page-thabet88login__guide-steps {
      counter-reset: step-counter;
      list-style: none;
      padding: 0;
    }

    .page-thabet88login__guide-step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      position: relative;
      padding-left: 50px;
    }

    .page-thabet88login__guide-step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 0;
      top: 0;
      background-color: var(--page-thabet88login__primary-color);
      color: var(--page-thabet88login__light-text-color);
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2em;
    }

    .page-thabet88login__guide-step-content h3 {
      margin-top: 0;
      color: var(--page-thabet88login__primary-color);
      font-size: 1.3em;
    }

    .page-thabet88login__guide-step-content p {
      margin-bottom: 0;
    }

    .page-thabet88login__guide-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-top: 15px;
      text-align: center;
    }

    .page-thabet88login__guide-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 8px var(--page-thabet88login__shadow);
    }

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

    .page-thabet88login__promotion-card {
      background-color: #fff;
      border: 1px solid var(--page-thabet88login__border-color);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px var(--page-thabet88login__shadow);
      transition: transform 0.3s ease;
    }

    .page-thabet88login__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-thabet88login__promotion-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px;
    }

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

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

    .page-thabet88login__promotion-card-title {
      font-size: 1.4em;
      color: var(--page-thabet88login__primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-thabet88login__promotion-card-description {
      font-size: 1em;
      margin-bottom: 15px;
    }

    .page-thabet88login__promotion-card-button {
      background-color: var(--page-thabet88login__accent-color);
      color: var(--page-thabet88login__text-color);
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-thabet88login__promotion-card-button:hover {
      background-color: #d89f2a;
    }

    /* FAQ Section */
    .page-thabet88login__faq-item {
      background-color: #fefefe;
      border: 1px solid var(--page-thabet88login__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px var(--page-thabet88login__shadow);
    }

    .page-thabet88login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
    }

    .page-thabet88login__faq-question:hover {
      background-color: #e0e0e0;
    }

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

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

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

    .page-thabet88login__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.4s ease;
      background-color: #fff;
    }

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

    /* CTA Section */
    .page-thabet88login__cta-section {
      text-align: center;
      padding: 40px 20px;
      background-color: var(--page-thabet88login__primary-color);
      color: var(--page-thabet88login__light-text-color);
      border-radius: 8px;
      margin-top: 30px;
    }

    .page-thabet88login__cta-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--page-thabet88login__light-text-color);
    }

    .page-thabet88login__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-thabet88login__cta-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-thabet88login__cta-button {
      background-color: var(--page-thabet88login__accent-color);
      color: var(--page-thabet88login__text-color);
      padding: 15px 30px;
      font-size: 1.1em;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-thabet88login__cta-button:hover {
      background-color: #d89f2a;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-thabet88login__container {
        padding: 15px;
      }

      .page-thabet88login__section {
        padding: 20px;
        margin-bottom: 20px;
      }

      .page-thabet88login__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-thabet88login__hero-section {
        padding-top: 10px; /* Required spacing for fixed header */
        padding-bottom: 30px;
      }

      .page-thabet88login__hero-title {
        font-size: 2em;
      }

      .page-thabet88login__hero-subtitle {
        font-size: 1.1em;
      }

      .page-thabet88login__button {
        padding: 10px 20px;
        font-size: 0.95em;
      }

      .page-thabet88login__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-thabet88login__game-card-image-wrapper {
        height: 100px;
      }

      .page-thabet88login__game-card-title {
        font-size: 1em;
      }

      .page-thabet88login__guide-step-item {
        padding-left: 45px;
      }

      .page-thabet88login__guide-step-item::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
      }

      .page-thabet88login__guide-step-content h3 {
        font-size: 1.1em;
      }

      .page-thabet88login__promotion-card-grid {
        grid-template-columns: 1fr;
      }

      .page-thabet88login__promotion-card-title {
        font-size: 1.2em;
      }

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

      .page-thabet88login__faq-question h3 {
        font-size: 1.1em;
      }

      .page-thabet88login__faq-toggle {
        font-size: 1.5em;
      }

      .page-thabet88login__faq-item.active .page-thabet88login__faq-answer {
        padding: 15px !important;
      }

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

      .page-thabet88login__cta-description {
        font-size: 1em;
      }

      .page-thabet88login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        max-width: 280px;
      }

      .page-thabet88login__floating-login-button {
        width: calc(100% - 30px);
        padding: 12px 15px;
        font-size: 1.1em;
      }
    }

    /* Ensure all images are responsive */
    .page-thabet88login img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
      box-sizing: border-box; /* Include padding and border in the element's total width and height */
    }

    /* Specific mobile responsive image rules with !important */
    @media (max-width: 768px) {
      .page-thabet88login__hero-image,
      .page-thabet88login__game-card-image,
      .page-thabet88login__guide-image,
      .page-thabet88login__promotion-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-thabet88login__hero-image-wrapper,
      .page-thabet88login__game-card-image-wrapper,
      .page-thabet88login__guide-image-wrapper,
      .page-thabet88login__promotion-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  