
    /* Tổng thể */
    .page-suncity888 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f5f5;
    }

    /* Hero Section */
    .page-suncity888__hero-section {
      position: relative;
      width: 100%;
      min-height: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding-top: 80px; /* Điều chỉnh cho header cố định */
      overflow: hidden;
      background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%); /* Gradient dự phòng */
      box-sizing: border-box;
    }

    .page-suncity888__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-suncity888__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 900px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-suncity888__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-suncity888__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: #eee;
    }

    .page-suncity888__cta-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

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

    /* Nút Đăng Nhập Nổi */
    .page-suncity888__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #ff4d4d;
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-align: center;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      animation: pulse 1.5s infinite;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      text-decoration: none;
    }

    .page-suncity888__floating-login-button:hover {
      background-color: #cc0000;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Phần */
    .page-suncity888__section {
      padding: 40px 20px;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-suncity888__section-title {
      font-size: 2em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

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

    /* Bố cục nội dung */
    .page-suncity888__text-block {
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-suncity888__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

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

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

    .page-suncity888__game-card-title {
      font-size: 1.3em;
      color: #007bff;
      margin: 15px 10px 10px;
      font-weight: bold;
    }

    .page-suncity888__game-card-description {
      font-size: 0.95em;
      color: #555;
      padding: 0 15px;
    }

    /* Khuyến mãi */
    .page-suncity888__promo-item {
      display: flex;
      align-items: center;
      background-color: #e6f7ff;
      border-left: 5px solid #007bff;
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .page-suncity888__promo-icon {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      margin-right: 20px;
      object-fit: contain;
    }

    .page-suncity888__promo-content h3 {
      font-size: 1.5em;
      color: #007bff;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-suncity888__promo-content p {
      font-size: 1em;
      color: #333;
      margin-bottom: 10px;
    }

    .page-suncity888__promo-content .page-suncity888__cta-button {
      background-color: #28a745;
    }

    .page-suncity888__promo-content .page-suncity888__cta-button:hover {
      background-color: #218838;
    }

    /* Phần FAQ */
    .page-suncity888__faq-list {
      margin-top: 30px;
    }

    .page-suncity888__faq-item {
      background-color: #f0f8ff;
      border: 1px solid #d0e9ff;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .page-suncity888__faq-item.active {
      background-color: #e0f2ff;
      border-color: #a0d8ff;
    }

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

    .page-suncity888__faq-question:hover {
      background-color: #d0edff;
    }

    .page-suncity888__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #0056b3;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-suncity888__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click */
    }

    .page-suncity888__faq-item.active .page-suncity888__faq-toggle {
      content: '\2212'; /* Biểu tượng dấu trừ Unicode */
      transform: none; /* Đặt lại transform nếu sử dụng thay đổi nội dung */
    }


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

    .page-suncity888__faq-item.active .page-suncity888__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa nội dung */
      padding: 20px !important;
      opacity: 1;
    }
    .page-suncity888__faq-answer p {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .page-suncity888__faq-answer ul {
        margin-bottom: 10px;
        padding-left: 20px;
    }

    /* Kiểu hình ảnh chung */
    .page-suncity888 img {
      max-width: 100%;
      height: auto;
      display: block; /* Loại bỏ khoảng trắng thừa bên dưới hình ảnh */
      margin: 0 auto; /* Căn giữa hình ảnh */
      box-sizing: border-box;
    }

    /* Thiết kế đáp ứng */
    @media (max-width: 768px) {
      .page-suncity888__hero-section {
        min-height: 300px;
        padding-top: 60px; /* Điều chỉnh cho header cố định trên di động */
      }

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

      .page-suncity888__hero-subtitle {
        font-size: 1em;
      }

      .page-suncity888__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-suncity888__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-suncity888__section {
        padding: 25px 15px;
      }

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

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

      .page-suncity888__game-card-image {
        height: 180px;
      }

      .page-suncity888__promo-item {
        flex-direction: column;
        text-align: center;
      }

      .page-suncity888__promo-icon {
        margin: 0 auto 15px;
      }

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

      .page-suncity888__faq-question h3 {
        font-size: 1em;
      }

      .page-suncity888__faq-answer {
        padding: 0 15px;
      }

      .page-suncity888__faq-item.active .page-suncity888__faq-answer {
        padding: 15px !important;
      }
      
      /* Buộc kiểu hình ảnh đáp ứng cho di động */
      .page-suncity888 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-suncity888__game-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-suncity888__promo-icon {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  