
    :root {
      --page-sunwin-primary-color: #f7b21a; /* Sunwin gold/orange */
      --page-sunwin-secondary-color: #333333; /* Dark text */
      --page-sunwin-background-light: #f9f9f9;
      --page-sunwin-background-dark: #222222;
      --page-sunwin-text-light: #ffffff;
      --page-sunwin-text-dark: #333333;
      --page-sunwin-accent-color: #e74c3c; /* Red for promotions */
    }

    .page-sunwin {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-sunwin-text-dark);
      background-color: var(--page-sunwin-background-light);
    }

    /* Hero Section */
    .page-sunwin__hero-section {
      padding: 10px 0 40px; /* Added padding-top for fixed header */
      text-align: center;
      background-color: var(--page-sunwin-background-dark);
      color: var(--page-sunwin-text-light);
      position: relative;
      overflow: hidden;
    }

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

    .page-sunwin__hero-title {
      font-size: 2.8em;
      color: var(--page-sunwin-primary-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-sunwin__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-sunwin-text-light);
    }

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

    .page-sunwin__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      display: block;
      margin: 0 auto;
    }

    .page-sunwin__download-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-sunwin__download-button {
      background-color: var(--page-sunwin-primary-color);
      color: var(--page-sunwin-text-light);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-sunwin__download-button:hover {
      background-color: #e0a015;
      transform: translateY(-3px);
    }

    .page-sunwin__download-button--accent {
      background-color: var(--page-sunwin-accent-color);
    }

    .page-sunwin__download-button--accent:hover {
      background-color: #c0392b;
    }

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

    .page-sunwin__floating-button:hover {
      background-color: #c0392b;
      transform: scale(1.05);
    }

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

    /* Content Sections */
    .page-sunwin__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--page-sunwin-background-light);
      border-bottom: 1px solid #eee;
    }

    .page-sunwin__section:last-of-type {
      border-bottom: none;
    }

    .page-sunwin__section-title {
      font-size: 2.2em;
      color: var(--page-sunwin-secondary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-sunwin__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--page-sunwin-primary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-sunwin__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-sunwin__grid-item {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

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

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

    .page-sunwin__grid-item-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .page-sunwin__grid-item-title {
      font-size: 1.4em;
      color: var(--page-sunwin-primary-color);
      margin-bottom: 10px;
    }

    .page-sunwin__grid-item-description {
      font-size: 0.95em;
      color: #666;
    }

    .page-sunwin__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .page-sunwin__list-item {
      background-color: #ffffff;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 1.05em;
    }

    .page-sunwin__list-item-icon-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        flex-shrink: 0;
        width: 60px; /* Adjust size for list icons */
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-sunwin__list-item-icon {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .page-sunwin__game-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-sunwin__provider-item {
      background-color: #ffffff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
      transition: transform 0.2s ease;
    }

    .page-sunwin__provider-item:hover {
      transform: scale(1.03);
    }

    .page-sunwin__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-sunwin__provider-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-sunwin__faq-section {
      background-color: var(--page-sunwin-background-light);
      padding: 40px 20px;
    }

    .page-sunwin__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-sunwin__faq-item {
      background-color: #ffffff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
      overflow: hidden;
    }

    .page-sunwin__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      border-bottom: 1px solid #e0e0e0;
      transition: background-color 0.3s ease;
    }

    .page-sunwin__faq-question:hover {
      background-color: #e5e5e5;
    }

    .page-sunwin__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--page-sunwin-secondary-color);
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-sunwin__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-sunwin-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from interfering with click event */
    }

    .page-sunwin__faq-item.active .page-sunwin__faq-toggle {
      transform: rotate(45deg); /* Plus sign becomes an 'X' or minus */
    }

    .page-sunwin__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: #555;
      font-size: 1em;
      text-align: justify;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-sunwin__hero-section {
        padding-top: 10px; /* Adjusted padding-top for mobile fixed header */
      }
      .page-sunwin__hero-title {
        font-size: 2em;
      }

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

      .page-sunwin__download-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-sunwin__download-button {
        width: 80%;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-sunwin__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.9em;
      }

      .page-sunwin__section {
        padding: 30px 15px;
      }

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

      .page-sunwin__text-content {
        font-size: 1em;
      }

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

      .page-sunwin__list-item {
        font-size: 0.95em;
        padding: 12px 15px;
      }

      .page-sunwin__faq-question {
        padding: 15px 20px;
      }

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

      .page-sunwin__faq-answer {
        padding: 0 20px;
      }

      .page-sunwin__faq-item.active .page-sunwin__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness for mobile */
      .page-sunwin__hero-image,
      .page-sunwin__grid-item-image,
      .page-sunwin__list-item-icon,
      .page-sunwin__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-sunwin__hero-image-wrapper,
      .page-sunwin__grid-item-image-wrapper,
      .page-sunwin__list-item-icon-wrapper,
      .page-sunwin__provider-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-sunwin__list-item-icon-wrapper {
        width: 50px !important;
        height: 50px !important;
      }
    }
  