
    :root {
      --page-sunwinlink-primary-color: #f7b32b; /* Gold/Orange */
      --page-sunwinlink-secondary-color: #1a2a3a; /* Dark Blue */
      --page-sunwinlink-text-light: #ffffff;
      --page-sunwinlink-text-dark: #333333;
      --page-sunwinlink-accent-color: #28a745; /* Green */
      --page-sunwinlink-background-dark: #0f1c2c;
      --page-sunwinlink-card-background: #1e3040;
    }

    body {
      margin: 0;
      font-family: 'Arial', sans-serif;
      background-color: var(--page-sunwinlink-background-dark);
      color: var(--page-sunwinlink-text-light);
      line-height: 1.6;
    }

    .page-sunwinlink-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
      overflow-x: hidden;
    }

    .page-sunwinlink-section {
      padding: 2rem 0;
      text-align: center;
    }

    .page-sunwinlink-section-dark {
      background-color: var(--page-sunwinlink-secondary-color);
      color: var(--page-sunwinlink-text-light);
    }

    .page-sunwinlink-section-light {
      background-color: var(--page-sunwinlink-background-dark);
      color: var(--page-sunwinlink-text-light);
    }

    .page-sunwinlink-h1,
    .page-sunwinlink-h2,
    .page-sunwinlink-h3 {
      color: var(--page-sunwinlink-primary-color);
      margin-bottom: 1rem;
      text-transform: uppercase;
      font-weight: bold;
    }
    .page-sunwinlink-h1 { font-size: 2.2rem; }
    .page-sunwinlink-h2 { font-size: 1.8rem; }
    .page-sunwinlink-h3 { font-size: 1.4rem; }

    .page-sunwinlink-text {
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    .page-sunwinlink-banner {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 1rem;
    }

    .page-sunwinlink-banner-wrapper {
        text-align: center;
        margin-bottom: 2rem;
        background-color: var(--page-sunwinlink-secondary-color);
        padding-top: 1rem;
        border-radius: 8px;
    }

    .page-sunwinlink-banner-text {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--page-sunwinlink-primary-color);
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .page-sunwinlink-button {
      display: inline-block;
      background-color: var(--page-sunwinlink-primary-color);
      color: var(--page-sunwinlink-text-dark);
      padding: 0.8rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

    .page-sunwinlink-button:hover {
      background-color: #e0a125;
    }

    .page-sunwinlink-floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-sunwinlink-accent-color);
      color: var(--page-sunwinlink-text-light);
      padding: 1rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      animation: page-sunwinlink-pulse 2s infinite;
      text-align: center;
      white-space: nowrap;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .page-sunwinlink-floating-button:hover {
      background-color: #218838;
    }

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

    .page-sunwinlink-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }

    .page-sunwinlink-game-card {
      background-color: var(--page-sunwinlink-card-background);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 1rem;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

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

    .page-sunwinlink-game-card img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 0.5rem;
      border-radius: 8px;
    }

    .page-sunwinlink-game-card-title {
      font-weight: bold;
      color: var(--page-sunwinlink-primary-color);
      font-size: 0.95rem;
    }

    .page-sunwinlink-download-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1.5rem;
      align-items: center;
    }

    .page-sunwinlink-download-buttons .page-sunwinlink-button {
      width: 100%;
      max-width: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background-color: var(--page-sunwinlink-accent-color);
      color: var(--page-sunwinlink-text-light);
    }
    .page-sunwinlink-download-buttons .page-sunwinlink-button:hover {
      background-color: #218838;
    }

    .page-sunwinlink-download-buttons .page-sunwinlink-button img {
      width: 24px;
      height: 24px;
    }

    .page-sunwinlink-list {
      list-style: none;
      padding: 0;
      text-align: left;
      margin: 0 auto;
      max-width: 800px;
    }

    .page-sunwinlink-list li {
      background-color: var(--page-sunwinlink-card-background);
      margin-bottom: 0.75rem;
      padding: 1rem;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-sunwinlink-list li strong {
      color: var(--page-sunwinlink-primary-color);
    }

    .page-sunwinlink-icon {
      color: var(--page-sunwinlink-primary-color);
      font-size: 1.2rem;
      line-height: 1;
    }

    .page-sunwinlink-faq-item {
      background-color: var(--page-sunwinlink-card-background);
      margin-bottom: 0.75rem;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-sunwinlink-faq-question {
      padding: 1rem;
      cursor: pointer;
      font-weight: bold;
      color: var(--page-sunwinlink-primary-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .page-sunwinlink-faq-answer {
      padding: 0 1rem 1rem 1rem;
      color: var(--page-sunwinlink-text-light);
      display: none;
    }

    .page-sunwinlink-faq-question::after {
      content: '+';
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }

    .page-sunwinlink-faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    @media (max-width: 768px) {
      .page-sunwinlink-h1 { font-size: 1.8rem; }
      .page-sunwinlink-h2 { font-size: 1.5rem; }
      .page-sunwinlink-h3 { font-size: 1.2rem; }
      .page-sunwinlink-banner-text { font-size: 1.2rem; }
      .page-sunwinlink-floating-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
      }
      .page-sunwinlink-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-sunwinlink-game-card img {
        width: 60px;
        height: 60px;
      }
      .page-sunwinlink-game-card-title {
        font-size: 0.85rem;
      }
    }
  