
    :root {
      --page-sunwin-primary-color: #f39c12; /* Orange */
      --page-sunwin-secondary-color: #2c3e50; /* Dark Blue */
      --page-sunwin-text-color: #333;
      --page-sunwin-light-bg: #ecf0f1;
      --page-sunwin-dark-bg: #34495e;
      --page-sunwin-white: #ffffff;
      --page-sunwin-border-radius: 8px;
    }

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

    .page-sunwin__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-sunwin__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('[GALLERY:banner:sunwin,hero,main_banner]') no-repeat center center/cover;
      color: var(--page-sunwin-white);
      text-align: center;
      padding-top: 10px; /* Desktop */
      padding-bottom: 60px;
      position: relative;
      overflow: hidden;
      border-radius: 0 0 var(--page-sunwin-border-radius) var(--page-sunwin-border-radius);
    }

    .page-sunwin__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-sunwin-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-sunwin__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-sunwin__button {
      display: inline-block;
      background-color: var(--page-sunwin-primary-color);
      color: var(--page-sunwin-white);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      border: none;
      cursor: pointer;
    }

    .page-sunwin__button:hover {
      background-color: #e67e22; /* Slightly darker orange */
      transform: translateY(-2px);
    }

    .page-sunwin__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e74c3c; /* Red for urgent offer */
      color: var(--page-sunwin-white);
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-sunwin__pulse 1.5s infinite;
      border: none;
      cursor: pointer;
    }

    .page-sunwin__floating-button:hover {
      background-color: #c0392b; /* Darker red */
      animation: none;
    }

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

    .page-sunwin__content-block {
      background-color: var(--page-sunwin-white);
      padding: 30px;
      border-radius: var(--page-sunwin-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }

    .page-sunwin__content-block:first-of-type {
      margin-top: -80px; /* Pull up to overlap with hero */
      position: relative;
      z-index: 10;
    }

    .page-sunwin__heading-2 {
      color: var(--page-sunwin-secondary-color);
      font-size: 2em;
      margin-bottom: 20px;
      text-align: center;
      position: relative;
    }

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

    .page-sunwin__heading-3 {
      color: var(--page-sunwin-primary-color);
      font-size: 1.5em;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-sunwin__text {
      margin-bottom: 15px;
      color: #555;
    }

    .page-sunwin__image-wrapper {
      text-align: center;
      margin: 30px 0;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-sunwin__image {
      max-width: 100%;
      height: auto;
      border-radius: var(--page-sunwin-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
      display: block; /* Ensure no extra space below image */
      margin: 0 auto;
    }

    .page-sunwin__step-list {
      list-style: none;
      padding: 0;
    }

    .page-sunwin__step-item {
      background-color: var(--page-sunwin-light-bg);
      border-left: 5px solid var(--page-sunwin-primary-color);
      margin-bottom: 15px;
      padding: 20px;
      border-radius: var(--page-sunwin-border-radius);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      position: relative;
      counter-increment: step-counter;
      padding-left: 60px;
    }

    .page-sunwin__step-item::before {
      content: counter(step-counter);
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      background-color: var(--page-sunwin-primary-color);
      color: var(--page-sunwin-white);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.1em;
    }

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

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

    .page-sunwin__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-sunwin__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-sunwin__game-title {
      font-size: 1.3em;
      color: var(--page-sunwin-secondary-color);
      padding: 15px;
      margin-top: auto; /* Push to bottom if content varies */
    }

    .page-sunwin__faq-section {
      background-color: var(--page-sunwin-white);
      padding: 30px;
      border-radius: var(--page-sunwin-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }

    .page-sunwin__faq-item {
      border-bottom: 1px solid #ddd;
      padding: 15px 0;
    }

    .page-sunwin__faq-item:last-child {
      border-bottom: none;
    }

    .page-sunwin__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: bold;
      color: var(--page-sunwin-secondary-color);
      font-size: 1.1em;
      user-select: none;
      padding: 5px 0;
    }

    .page-sunwin__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: var(--page-sunwin-secondary-color); /* Ensure good contrast */
    }

    .page-sunwin__faq-toggle {
      font-size: 1.5em;
      margin-left: 10px;
      color: var(--page-sunwin-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

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

    .page-sunwin__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding for collapsed state */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      opacity: 0;
    }

    .page-sunwin__faq-item.active .page-sunwin__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: 20px 15px !important; /* Padding for expanded state */
      opacity: 1;
    }

    .page-sunwin__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--page-sunwin-dark-bg);
      color: var(--page-sunwin-white);
      border-radius: var(--page-sunwin-border-radius);
    }

    .page-sunwin__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-sunwin-primary-color);
    }

    .page-sunwin__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-sunwin__hero-section {
        padding-top: 10px; /* Mobile */
        padding-bottom: 40px;
      }

      .page-sunwin__hero-title {
        font-size: 2em;
      }

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

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

      .page-sunwin__heading-2 {
        font-size: 1.8em;
      }

      .page-sunwin__heading-3 {
        font-size: 1.3em;
      }

      .page-sunwin__content-block:first-of-type {
        margin-top: -60px; /* Adjust for mobile hero padding */
      }

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

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

      .page-sunwin__game-image {
        height: 180px;
      }

      .page-sunwin__game-title {
        font-size: 1.1em;
      }

      .page-sunwin__faq-question {
        font-size: 1em;
        padding: 10px 0;
      }

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

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

      .page-sunwin__cta-title {
        font-size: 2em;
      }

      .page-sunwin__cta-text {
        font-size: 1em;
      }
      
      /* Image responsiveness */
      .page-sunwin__image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-sunwin__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  