
      /* style/suncity888.css */
      :root {
          --primary-color: #2563eb;
          --secondary-color: #64748b;
          --text-dark: #333333;
          --text-light: #ffffff;
          --bg-light: #f8f9fa;
          --border-color: #e0e0e0;
          --header-offset: 122px; /* Default for fixed header */
      }

      .page-suncity888 {
          font-family: 'Arial', sans-serif;
          line-height: 1.6;
          color: var(--text-dark);
          background-color: var(--bg-light);
          padding-bottom: 60px; /* Space for footer */
      }

      /* Hero Section */
      .page-suncity888__hero-section {
          position: relative;
          width: 100%;
          padding: 10px 0 40px 0; /* body handles top padding, only small decorative top padding here */
          background-color: var(--primary-color);
          color: var(--text-light);
          text-align: center;
          overflow: hidden;
          box-sizing: border-box;
      }

      .page-suncity888__hero-image-wrapper {
          width: 100%;
          max-width: 100%;
          margin: 0 auto;
          display: block;
          position: relative;
          z-index: 1;
      }

      .page-suncity888__hero-image {
          width: 100%;
          height: auto;
          display: block;
          border-radius: 8px;
          object-fit: cover;
      }

      .page-suncity888__hero-content {
          position: relative;
          z-index: 2;
          max-width: 900px;
          margin: 20px auto 0 auto;
          padding: 0 20px;
      }

      .page-suncity888__hero-title {
          font-size: clamp(2em, 5vw, 2.8em);
          font-weight: 700;
          line-height: 1.2;
          margin-bottom: 15px;
          color: var(--text-light);
      }

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

      .page-suncity888__cta-button {
          display: inline-block;
          background-color: #ffc107; /* Bright yellow for CTA */
          color: var(--text-dark);
          padding: 15px 30px;
          border-radius: 50px;
          text-decoration: none;
          font-weight: bold;
          font-size: 1.1em;
          transition: background-color 0.3s ease, transform 0.3s ease;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          border: none;
          cursor: pointer;
          max-width: 100%;
          box-sizing: border-box;
          white-space: normal;
          word-wrap: break-word;
      }

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

      /* Floating Login Button */
      .page-suncity888__floating-login-button {
          position: fixed;
          bottom: 20px;
          right: 20px;
          background-color: var(--primary-color);
          color: var(--text-light);
          padding: 12px 25px;
          border-radius: 30px;
          text-decoration: none;
          font-weight: bold;
          font-size: 1em;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          z-index: 1000;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          max-width: calc(100% - 40px); /* Adjust for padding */
          box-sizing: border-box;
          white-space: normal;
          word-wrap: break-word;
      }

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

      /* Content Sections */
      .page-suncity888__section {
          padding: 50px 20px;
          max-width: 1200px;
          margin: 0 auto;
          box-sizing: border-box;
      }

      .page-suncity888__section-title {
          font-size: 2.2em;
          color: var(--primary-color);
          text-align: center;
          margin-bottom: 30px;
          font-weight: 700;
      }

      .page-suncity888__section-subtitle {
          font-size: 1.3em;
          color: var(--secondary-color);
          text-align: center;
          margin-bottom: 40px;
      }

      .page-suncity888__grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
      }

      .page-suncity888__card {
          background-color: var(--text-light);
          border-radius: 12px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          padding: 25px;
          text-align: center;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          color: var(--text-dark);
      }

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

      .page-suncity888__card-image-wrapper {
          width: 100%;
          height: 200px;
          margin-bottom: 20px;
          overflow: hidden;
          border-radius: 8px;
      }

      .page-suncity888__card-image {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          border-radius: 8px;
          transition: transform 0.3s ease;
      }

      .page-suncity888__card:hover .page-suncity888__card-image {
          transform: scale(1.05);
      }

      .page-suncity888__card-title {
          font-size: 1.5em;
          color: var(--primary-color);
          margin-bottom: 10px;
          font-weight: 600;
      }

      .page-suncity888__card-description {
          font-size: 0.95em;
          color: var(--secondary-color);
          margin-bottom: 20px;
      }

      .page-suncity888__card-link {
          display: inline-block;
          color: var(--primary-color);
          text-decoration: none;
          font-weight: bold;
          border-bottom: 2px solid var(--primary-color);
          padding-bottom: 2px;
          transition: color 0.3s ease, border-color 0.3s ease;
      }

      .page-suncity888__card-link:hover {
          color: #1a4aae;
          border-color: #1a4aae;
      }

      /* Features Section */
      .page-suncity888__features-list {
          list-style: none;
          padding: 0;
          margin: 0;
          display: grid;
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .page-suncity888__feature-item {
          display: flex;
          align-items: flex-start;
          background-color: var(--text-light);
          border-radius: 10px;
          padding: 20px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      }

      .page-suncity888__feature-icon-wrapper {
          flex-shrink: 0;
          width: 60px;
          height: 60px;
          background-color: var(--primary-color);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 20px;
      }

      .page-suncity888__feature-icon {
          width: 32px;
          height: 32px;
          object-fit: contain;
      }

      .page-suncity888__feature-content h3 {
          font-size: 1.3em;
          color: var(--primary-color);
          margin-top: 0;
          margin-bottom: 10px;
      }

      .page-suncity888__feature-content p {
          font-size: 0.95em;
          color: var(--secondary-color);
          margin-bottom: 0;
      }

      /* Testimonials Section */
      .page-suncity888__testimonial-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 30px;
      }

      .page-suncity888__testimonial-card {
          background-color: var(--text-light);
          border-radius: 12px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          padding: 30px;
          color: var(--text-dark);
      }

      .page-suncity888__testimonial-text {
          font-style: italic;
          margin-bottom: 20px;
          color: var(--secondary-color);
      }

      .page-suncity888__testimonial-author {
          font-weight: bold;
          color: var(--primary-color);
          margin-bottom: 5px;
      }

      .page-suncity888__testimonial-rating {
          color: #ffc107;
          font-size: 1.1em;
      }

      /* FAQ Section */
      .page-suncity888__faq-list {
          list-style: none;
          padding: 0;
          margin: 0;
          max-width: 800px;
          margin-left: auto;
          margin-right: auto;
      }

      .page-suncity888__faq-item {
          background-color: var(--text-light);
          border: 1px solid var(--border-color);
          border-radius: 8px;
          margin-bottom: 15px;
          overflow: hidden;
      }

      .page-suncity888__faq-question {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 18px 25px;
          cursor: pointer;
          user-select: none;
          font-weight: bold;
          color: var(--primary-color);
          font-size: 1.1em;
          transition: background-color 0.3s ease;
      }

      .page-suncity888__faq-question:hover {
          background-color: var(--bg-light);
      }

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

      .page-suncity888__faq-toggle {
          font-size: 1.5em;
          line-height: 1;
          pointer-events: none; /* Prevent toggle from blocking click */
          transition: transform 0.3s ease;
      }

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

      .page-suncity888__faq-answer {
          max-height: 0;
          overflow: hidden;
          padding: 0 25px;
          opacity: 0;
          transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
          color: var(--secondary-color);
          font-size: 0.95em;
      }

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

      /* Global button styling */
      .page-suncity888 .btn-primary {
          display: inline-block;
          background-color: var(--primary-color);
          color: var(--text-light);
          padding: 12px 25px;
          border-radius: 5px;
          text-decoration: none;
          font-weight: bold;
          transition: background-color 0.3s ease;
          border: none;
          cursor: pointer;
          max-width: 100%;
          box-sizing: border-box;
          white-space: normal;
          word-wrap: break-word;
      }

      .page-suncity888 .btn-primary:hover {
          background-color: #1a4aae;
      }

      /* Responsive Design */
      @media (min-width: 769px) {
          .page-suncity888__features-list {
              grid-template-columns: repeat(2, 1fr);
          }
      }

      @media (min-width: 1024px) {
          .page-suncity888__features-list {
              grid-template-columns: repeat(3, 1fr);
          }
      }

      @media (max-width: 768px) {
          .page-suncity888 {
              font-size: 16px;
              line-height: 1.6;
          }

          .page-suncity888__hero-section {
              padding-bottom: 20px;
              padding-left: 15px;
              padding-right: 15px;
          }

          .page-suncity888__hero-title {
              font-size: clamp(1.8em, 8vw, 2.5em);
          }

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

          .page-suncity888__cta-button,
          .page-suncity888 .btn-primary {
              width: 100% !important;
              padding: 12px 15px !important;
              font-size: 1em;
              margin-bottom: 10px;
              max-width: 100% !important;
              box-sizing: border-box !important;
              white-space: normal !important;
              word-wrap: break-word !important;
          }

          .page-suncity888__floating-login-button {
              padding: 10px 20px;
              font-size: 0.9em;
              max-width: calc(100% - 40px) !important;
              left: 20px;
              right: 20px;
          }

          .page-suncity888__section {
              padding: 30px 15px;
              max-width: 100% !important;
              width: 100% !important;
              box-sizing: border-box !important;
          }

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

          .page-suncity888__section-subtitle {
              font-size: 1.1em;
              margin-bottom: 30px;
          }

          .page-suncity888__grid {
              grid-template-columns: 1fr;
              gap: 20px;
          }

          .page-suncity888__card-image-wrapper {
              height: 180px;
          }

          .page-suncity888__card-title {
              font-size: 1.3em;
          }

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

          .page-suncity888__feature-icon-wrapper {
              margin-right: 0;
              margin-bottom: 15px;
          }

          .page-suncity888__feature-content h3 {
              font-size: 1.2em;
          }

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

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

          .page-suncity888__faq-answer {
              padding: 15px 20px !important;
          }

          /* Image responsiveness */
          .page-suncity888 img {
              max-width: 100% !important;
              height: auto !important;
              display: block !important;
          }

          .page-suncity888__hero-image,
          .page-suncity888__card-image,
          .page-suncity888__feature-icon {
              max-width: 100% !important;
              width: 100% !important;
              height: auto !important;
              box-sizing: border-box !important;
          }

          /* List items responsiveness */
          .page-suncity888__features-list li,
          .page-suncity888__faq-list li {
              width: 100% !important;
              max-width: 100% !important;
              box-sizing: border-box !important;
              padding-left: 15px;
              padding-right: 15px;
              margin-left: 0 !important;
              margin-right: 0 !important;
              word-wrap: break-word !important;
              overflow-wrap: break-word !important;
              word-break: break-word !important;
          }

          .page-suncity888__features-list,
          .page-suncity888__faq-list {
              width: 100% !important;
              max-width: 100% !important;
              box-sizing: border-box !important;
              padding: 0 !important;
              margin-left: 0 !important;
              margin-right: 0 !important;
          }
      }
    