
    /* CSS Reset & Variables for page-suncity888 */
    .page-suncity888 {
      --page-suncity888-primary-color: #f39c12; /* Orange for highlights/buttons */
      --page-suncity888-secondary-color: #e67e22; /* Darker orange */
      --page-suncity888-text-dark: #333; /* Dark text for readability */
      --page-suncity888-text-light: #fff; /* Light text on dark backgrounds */
      --page-suncity888-bg-light: #f5f5f5; /* Light background */
      --page-suncity888-bg-dark: #2c3e50; /* Dark background */
      --page-suncity888-card-bg: #ffffff; /* Card background */
      --page-suncity888-border-color: #ddd; /* Border color */
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-suncity888-text-dark);
    }

    /* General Layout */
    .page-suncity888 .page-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px;
    }

    /* Sections */
    .page-suncity888 section {
      padding: 40px 0;
      text-align: center;
    }

    .page-suncity888 section:nth-of-type(even) {
      background-color: var(--page-suncity888-bg-light);
    }

    .page-suncity888 h1, .page-suncity888 h2, .page-suncity888 h3 {
      color: var(--page-suncity888-text-dark);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-suncity888 h1 {
      font-size: 2.5em;
      color: var(--page-suncity888-primary-color);
    }

    .page-suncity888 h2 {
      font-size: 2em;
      color: var(--page-suncity888-secondary-color);
    }

    .page-suncity888 h3 {
      font-size: 1.5em;
    }

    /* Buttons */
    .page-suncity888 .btn-primary {
      display: inline-block;
      background-color: var(--page-suncity888-primary-color);
      color: var(--page-suncity888-text-light);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-suncity888 .btn-primary:hover {
      background-color: var(--page-suncity888-secondary-color);
    }

    /* Banner Section */
    .page-suncity888 .hero-banner {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:banner:suncity888,hero,mobile_banner]') no-repeat center center/cover;
      color: var(--page-suncity888-text-light);
      padding: 80px 15px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px; /* Ensure banner has height */
    }

    .page-suncity888 .hero-banner .slogan {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
    }

    /* Floating Login Button */
    .page-suncity888 .floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-suncity888-primary-color);
      color: var(--page-suncity888-text-light);
      padding: 15px 25px;
      border-radius: 30px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-decoration: none;
      font-weight: bold;
      animation: page-suncity888-pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.1em;
    }

    .page-suncity888 .floating-button:hover {
      background-color: var(--page-suncity888-secondary-color);
    }

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

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

    .page-suncity888 .game-card {
      background-color: var(--page-suncity888-card-bg);
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 220px; /* Ensure consistent card height */
    }

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

    .page-suncity888 .game-card img {
      max-width: 100%;
      height: 100px; /* Fixed height for images */
      object-fit: contain; /* Adjust as needed */
      border-radius: 5px;
      margin-bottom: 15px;
    }

    .page-suncity888 .game-card h3 {
      margin: 10px 0;
      font-size: 1.1em;
      color: var(--page-suncity888-primary-color);
    }

    .page-suncity888 .game-card p {
      font-size: 0.9em;
      color: #666;
    }

    .page-suncity888 .game-card a {
      text-decoration: none;
      color: inherit;
    }
    .page-suncity888 .game-card a:hover h3 {
      color: var(--page-suncity888-secondary-color);
    }

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

    .page-suncity888 .promo-card {
      background-color: var(--page-suncity888-card-bg);
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: left;
      transition: transform 0.3s ease;
    }

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

    .page-suncity888 .promo-card h3 {
      color: var(--page-suncity888-primary-color);
      margin-bottom: 15px;
    }

    .page-suncity888 .promo-card p {
      font-size: 0.95em;
      margin-bottom: 15px;
    }

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

    .page-suncity888 .feature-item {
      background-color: var(--page-suncity888-card-bg);
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 20px;
      text-align: center;
    }

    .page-suncity888 .feature-item .icon {
      font-size: 3em;
      color: var(--page-suncity888-primary-color);
      margin-bottom: 15px;
    }

    .page-suncity888 .feature-item h3 {
      margin-top: 0;
      font-size: 1.2em;
    }

    /* Testimonials/FAQs (Example structure) */
    .page-suncity888 .faq-item {
      background-color: var(--page-suncity888-card-bg);
      border: 1px solid var(--page-suncity888-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 15px 20px;
      text-align: left;
    }

    .page-suncity888 .faq-question {
      font-weight: bold;
      color: var(--page-suncity888-secondary-color);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .page-suncity888 .faq-answer {
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid var(--page-suncity888-bg-light);
      display: none; /* Hidden by default, JS will toggle */
      color: var(--page-suncity888-text-dark);
    }

    .page-suncity888 .faq-answer.active {
      display: block;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-suncity888 h1 {
        font-size: 2em;
      }

      .page-suncity888 h2 {
        font-size: 1.7em;
      }

      .page-suncity888 .hero-banner {
        padding: 60px 15px;
        min-height: 300px;
      }

      .page-suncity888 .game-grid,
      .page-suncity888 .promo-grid,
      .page-suncity888 .feature-grid {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 480px) {
      .page-suncity888 .page-container {
        padding: 10px;
      }

      .page-suncity888 h1 {
        font-size: 1.8em;
      }

      .page-suncity888 .hero-banner .slogan {
        font-size: 1em;
      }
    }
  