
    :root {
      --page-suncity66778__primary-color: #e02f2f; /* Đỏ mạnh */
      --page-suncity66778__secondary-color: #ffc107; /* Vàng hổ phách */
      --page-suncity66778__text-color: #333;
      --page-suncity66778__light-text-color: #fff;
      --page-suncity66778__background-light: #f5f5f5;
      --page-suncity66778__background-dark: #222;
      --page-suncity66778__border-color: #ddd;
    }

    .page-suncity66778 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-suncity66778__text-color);
      background-color: var(--page-suncity66778__background-light);
      overflow-x: hidden;
    }

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

    /* Hero Section */
    .page-suncity66778__hero-section {
      position: relative;
      width: 100%;
      min-height: 300px; /* Adjusted for mobile-first */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--page-suncity66778__light-text-color);
      overflow: hidden;
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
      background-color: var(--page-suncity66778__background-dark); /* Fallback background */
    }

    .page-suncity66778__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.7); /* Darken image for text contrast */
      max-width: 100%;
      height: auto;
    }

    .page-suncity66778__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      margin-top: 20px;
      max-width: 90%;
    }

    .page-suncity66778__hero-title {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: var(--page-suncity66778__secondary-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-suncity66778__hero-subtitle {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-suncity66778__light-text-color);
    }

    .page-suncity66778__cta-button {
      display: inline-block;
      background-color: var(--page-suncity66778__primary-color);
      color: var(--page-suncity66778__light-text-color);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      border: none; /* Ensure it looks like a button */
      cursor: pointer;
    }

    .page-suncity66778__cta-button:hover {
      background-color: #c02a2a;
    }

    /* Floating Button */
    .page-suncity66778__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-suncity66778__primary-color);
      color: var(--page-suncity66778__light-text-color);
      padding: 15px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      font-weight: bold;
      font-size: 1.1em;
      cursor: pointer;
      animation: page-suncity66778__pulse 1.5s infinite;
      transition: background-color 0.3s ease;
    }

    .page-suncity66778__floating-button:hover {
      background-color: #c02a2a;
    }

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

    /* General Section Styling */
    .page-suncity66778__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-suncity66778__light-text-color);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-suncity66778__section-title {
      text-align: center;
      font-size: 2em;
      color: var(--page-suncity66778__primary-color);
      margin-bottom: 30px;
      position: relative;
    }

    .page-suncity66778__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--page-suncity66778__secondary-color);
      margin: 10px auto 0;
    }

    /* Intro Text */
    .page-suncity66778__intro-text .page-suncity66778__text-content {
      font-size: 1.1em;
      line-height: 1.8;
      text-align: justify;
    }

    /* Features Section */
    .page-suncity66778__features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .page-suncity66778__feature-item {
      background-color: var(--page-suncity66778__background-light);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .page-suncity66778__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-suncity66778__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 50%;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-suncity66778__feature-title {
      font-size: 1.3em;
      color: var(--page-suncity66778__primary-color);
      margin-bottom: 10px;
    }

    .page-suncity66778__feature-description {
      font-size: 0.95em;
      color: var(--page-suncity66778__text-color);
    }

    /* Games Section */
    .page-suncity66778__games-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .page-suncity66778__game-card {
      background-color: var(--page-suncity66778__light-text-color);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .page-suncity66778__game-card:hover {
      transform: translateY(-8px);
    }

    .page-suncity66778__game-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .page-suncity66778__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      max-width: 100%;
    }

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

    .page-suncity66778__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-suncity66778__game-title {
      font-size: 1.4em;
      color: var(--page-suncity66778__primary-color);
      margin-bottom: 10px;
    }

    .page-suncity66778__game-description {
      font-size: 0.95em;
      color: var(--page-suncity66778__text-color);
      margin-bottom: 15px;
    }

    .page-suncity66778__game-play-button {
      background-color: var(--page-suncity66778__secondary-color);
      color: var(--page-suncity66778__text-color);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-align: center;
      border: none;
      cursor: pointer;
      margin-top: auto; /* Push button to bottom */
    }

    .page-suncity66778__game-play-button:hover {
      background-color: #e6b000;
    }

    /* Promotions Section */
    .page-suncity66778__promotions-list {
      list-style: none;
      padding: 0;
    }

    .page-suncity66778__promotion-item {
      background-color: var(--page-suncity66778__background-light);
      border: 1px solid var(--page-suncity66778__border-color);
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-direction: column;
      text-align: center;
    }

    .page-suncity66778__promotion-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    .page-suncity66778__promotion-content {
      flex: 1;
    }

    .page-suncity66778__promotion-title {
      font-size: 1.5em;
      color: var(--page-suncity66778__primary-color);
      margin-bottom: 10px;
    }

    .page-suncity66778__promotion-description {
      font-size: 1em;
      color: var(--page-suncity66778__text-color);
      margin-bottom: 15px;
    }

    .page-suncity66778__promotion-button {
      background-color: var(--page-suncity66778__primary-color);
      color: var(--page-suncity66778__light-text-color);
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-suncity66778__promotion-button:hover {
      background-color: #c02a2a;
    }

    /* Guide Section */
    .page-suncity66778__guide-steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .page-suncity66778__guide-step-item {
      background-color: var(--page-suncity66778__background-light);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      border-left: 5px solid var(--page-suncity66778__primary-color);
    }

    .page-suncity66778__step-number {
      font-size: 2em;
      color: var(--page-suncity66778__secondary-color);
      font-weight: bold;
      margin-bottom: 10px;
    }

    .page-suncity66778__step-title {
      font-size: 1.3em;
      color: var(--page-suncity66778__primary-color);
      margin-bottom: 10px;
    }

    .page-suncity66778__step-description {
      font-size: 0.95em;
      color: var(--page-suncity66778__text-color);
    }

    /* FAQ Section */
    .page-suncity66778__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-suncity66778__faq-item {
      background-color: var(--page-suncity66778__light-text-color);
      border: 1px solid var(--page-suncity66778__border-color);
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .page-suncity66778__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-suncity66778__background-light);
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: var(--page-suncity66778__text-color);
      transition: background-color 0.3s ease;
    }

    .page-suncity66778__faq-question:hover {
      background-color: #e9e9e9;
    }

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

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

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

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

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

    /* About Section */
    .page-suncity66778__about-content {
      text-align: justify;
      font-size: 1.1em;
      line-height: 1.8;
    }

    .page-suncity66778__about-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      display: block;
      margin: 20px auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-suncity66778__hero-section {
        min-height: 500px;
        padding-top: 10px; /* For fixed header */
      }

      .page-suncity66778__hero-title {
        font-size: 3.5em;
      }

      .page-suncity66778__hero-subtitle {
        font-size: 1.3em;
      }

      .page-suncity66778__features-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .page-suncity66778__games-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .page-suncity66778__promotion-item {
        flex-direction: row;
        text-align: left;
      }

      .page-suncity66778__promotion-image {
        width: 250px;
        height: 150px;
        object-fit: cover;
      }

      .page-suncity66778__guide-steps {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Mobile specific image adjustments */
    @media (max-width: 768px) {
      .page-suncity66778__hero-background,
      .page-suncity66778__feature-icon,
      .page-suncity66778__game-image,
      .page-suncity66778__promotion-image,
      .page-suncity66778__about-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-suncity66778__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-suncity66778__faq-question h3 {
        font-size: 1em;
      }
      .page-suncity66778__faq-answer {
        padding: 0 15px;
      }
      .page-suncity66778__faq-item.active .page-suncity66778__faq-answer {
        padding: 15px !important;
      }
      .page-suncity66778__hero-section {
        padding-top: 10px; /* Ensure mobile header spacing */
      }
    }
  