
    /* Tổng quan */
    .page-fu88casino {
      font-family: 'Arial', sans-serif;
      background-color: #000;
      color: #fff;
      line-height: 1.6;
      padding-bottom: 60px; /* Đảm bảo không bị che bởi footer */
    }

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

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

    .page-fu88casino__section--dark {
      background-color: #1a1a1a;
    }

    .page-fu88casino__title {
      color: #ffd700; /* Vàng */
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-fu88casino__subtitle {
      color: #fff;
      font-size: 1.8em;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-fu88casino__text {
      color: #ccc;
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    /* Hero Section */
    .page-fu88casino__hero-section {
      position: relative;
      padding-top: 10px; /* Cho desktop */
      text-align: center;
      background-color: #000;
      overflow: hidden; /* Đảm bảo hình ảnh không tràn */
    }

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

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

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

    .page-fu88casino__hero-title {
      font-size: 3em;
      color: #ffd700;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-fu88casino__hero-description {
      font-size: 1.2em;
      color: #fff;
      margin-bottom: 30px;
    }

    .page-fu88casino__btn-primary {
      display: inline-block;
      background-color: #ffd700;
      color: #000;
      padding: 12px 30px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1.1em;
    }

    .page-fu88casino__btn-primary:hover {
      background-color: #ffe033;
      transform: translateY(-2px);
    }

    /* Game Categories Section */
    .page-fu88casino__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-fu88casino__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      box-sizing: border-box;
    }

    .page-fu88casino__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
    }

    .page-fu88casino__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 15px;
      height: 180px; /* Cố định chiều cao cho hình ảnh */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-fu88casino__game-card-image {
      max-width: 100%;
      height: auto;
      object-fit: contain; /* Giữ tỷ lệ và nằm gọn trong khung */
      border-radius: 5px;
    }

    .page-fu88casino__game-card-title {
      color: #ffd700;
      font-size: 1.5em;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-fu88casino__game-card-description {
      color: #ccc;
      font-size: 0.95em;
      flex-grow: 1;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-fu88casino__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      margin-bottom: 25px;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-fu88casino__promo-title {
      color: #ffd700;
      font-size: 1.8em;
      font-weight: bold;
    }

    .page-fu88casino__promo-description {
      color: #ccc;
      font-size: 1.1em;
    }

    .page-fu88casino__promo-highlight {
      color: #ffd700;
      font-weight: bold;
    }

    /* Why Choose Section */
    .page-fu88casino__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-fu88casino__feature-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-fu88casino__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
    }

    .page-fu88casino__feature-icon-wrapper {
      margin-bottom: 15px;
      height: 100px; /* Cố định chiều cao cho icon */
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-fu88casino__feature-icon {
      max-width: 80px;
      height: auto;
      object-fit: contain;
    }

    .page-fu88casino__feature-title {
      color: #ffd700;
      font-size: 1.4em;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-fu88casino__feature-description {
      color: #ccc;
      font-size: 0.95em;
    }

    /* Game Providers Section */
    .page-fu88casino__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-fu88casino__provider-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease;
      height: 100px; /* Cố định chiều cao */
      box-sizing: border-box;
    }

    .page-fu88casino__provider-item:hover {
      transform: scale(1.05);
    }

    .page-fu88casino__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Giới hạn chiều cao logo */
      height: auto;
      object-fit: contain;
    }

    /* How to Get Started Section */
    .page-fu88casino__steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-fu88casino__step-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-fu88casino__step-number {
      background-color: #ffd700;
      color: #000;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-fu88casino__step-title {
      color: #ffd700;
      font-size: 1.4em;
      font-weight: bold;
    }

    .page-fu88casino__step-description {
      color: #ccc;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-fu88casino__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-fu88casino__faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: background-color 0.3s ease;
    }

    .page-fu88casino__faq-item.active {
      background-color: #333;
    }

    .page-fu88casino__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      color: #fff;
      font-size: 1.1em;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-fu88casino__faq-question:hover {
      color: #ffd700;
    }

    .page-fu88casino__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      color: inherit; /* Kế thừa màu từ cha */
    }

    .page-fu88casino__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
      color: #ffd700;
    }

    .page-fu88casino__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #ccc;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-fu88casino__faq-item.active .page-fu88casino__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa nội dung */
      padding: 20px !important;
      opacity: 1;
    }

    /* Call to Action Final */
    .page-fu88casino__cta-final {
      background-color: #1a1a1a;
      padding: 50px 20px;
      margin-top: 40px;
      border-radius: 10px;
    }

    .page-fu88casino__cta-final-title {
      font-size: 2.2em;
      color: #ffd700;
      margin-bottom: 20px;
    }

    .page-fu88casino__cta-final-description {
      font-size: 1.1em;
      color: #fff;
      margin-bottom: 30px;
    }

    /* Social Media */
    .page-fu88casino__social-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .page-fu88casino__social-link-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: #fff;
      font-size: 0.9em;
      transition: color 0.3s ease;
    }

    .page-fu88casino__social-link-item:hover {
      color: #ffd700;
    }

    .page-fu88casino__social-icon-wrapper {
      width: 60px;
      height: 60px;
      background-color: #333;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
      transition: background-color 0.3s ease;
    }

    .page-fu88casino__social-link-item:hover .page-fu88casino__social-icon-wrapper {
      background-color: #ffd700;
    }

    .page-fu88casino__social-icon {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    /* Floating Login Button */
    .page-fu88casino__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ffd700;
      color: #000;
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1.1em;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-fu88casino__floating-login-button:hover {
      background-color: #ffe033;
      transform: translateY(-3px);
    }

    .page-fu88casino__floating-login-button span {
      display: none; /* Ẩn văn bản trên mobile */
    }

    .page-fu88casino__floating-login-button::before {
      content: '🎁'; /* Biểu tượng trên mobile */
      font-size: 1.5em;
    }

    /* Responsive adjustments */
    @media (min-width: 769px) {
      .page-fu88casino__floating-login-button span {
        display: inline; /* Hiển thị văn bản trên desktop */
      }
      .page-fu88casino__floating-login-button::before {
        content: ''; /* Ẩn biểu tượng trên desktop */
      }
      .page-fu88casino__floating-login-button {
        padding: 15px 30px;
      }
    }

    @media (max-width: 768px) {
      .page-fu88casino__hero-section {
        padding-top: 10px; /* Cho mobile */
      }

      .page-fu88casino__title {
        font-size: 2em;
      }

      .page-fu88casino__subtitle {
        font-size: 1.5em;
      }

      .page-fu88casino__hero-title {
        font-size: 2.2em;
      }

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

      .page-fu88casino__btn-primary {
        padding: 10px 25px;
        font-size: 1em;
      }

      .page-fu88casino__game-grid,
      .page-fu88casino__feature-grid,
      .page-fu88casino__providers-grid,
      .page-fu88casino__steps-grid {
        grid-template-columns: 1fr;
      }

      .page-fu88casino__promo-card {
        padding: 20px;
      }

      .page-fu88casino__promo-title {
        font-size: 1.5em;
      }

      .page-fu88casino__faq-question {
        font-size: 1em;
        padding: 15px;
      }

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

      .page-fu88casino__social-links {
        gap: 15px;
      }

      .page-fu88casino__social-icon-wrapper {
        width: 50px;
        height: 50px;
      }

      .page-fu88casino__social-icon {
        width: 30px;
        height: 30px;
      }

      /* Force image responsiveness */
      .page-fu88casino__hero-image,
      .page-fu88casino__game-card-image,
      .page-fu88casino__feature-icon,
      .page-fu88casino__provider-logo,
      .page-fu88casino__social-icon {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-fu88casino__hero-image-wrapper,
      .page-fu88casino__game-card-image-wrapper,
      .page-fu88casino__feature-icon-wrapper,
      .page-fu88casino__provider-item,
      .page-fu88casino__social-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  