
    /* CSS Styles for Saowin Club Page */
    :root {
      --page-saowinclub-primary-color: #e04a00; /* Orange-red for brand */
      --page-saowinclub-secondary-color: #ff9100; /* Lighter orange */
      --page-saowinclub-dark-bg: #1a1a1a;
      --page-saowinclub-light-bg: #2a2a2a;
      --page-saowinclub-text-color: #ffffff;
      --page-saowinclub-border-color: #444444;
      --page-saowinclub-success-color: #28a745;
      --page-saowinclub-info-color: #17a2b8;
    }

    .page-saowinclub {
      font-family: 'Arial', sans-serif;
      color: var(--page-saowinclub-text-color);
      background-color: var(--page-saowinclub-dark-bg);
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll from fixed button */
    }

    .page-saowinclub__section {
      padding: 40px 15px;
      margin-bottom: 20px;
      background-color: var(--page-saowinclub-light-bg);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-saowinclub__section--dark {
      background-color: var(--page-saowinclub-dark-bg);
      border-radius: 0;
      box-shadow: none;
      padding: 40px 0;
    }

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

    .page-saowinclub__header-title {
      font-size: 2.5em;
      color: var(--page-saowinclub-primary-color);
      text-align: center;
      margin-bottom: 20px;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    .page-saowinclub__subheader-title {
      font-size: 1.8em;
      color: var(--page-saowinclub-secondary-color);
      text-align: center;
      margin-top: 30px;
      margin-bottom: 25px;
    }

    .page-saowinclub__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-saowinclub__hero-section {
      position: relative;
      text-align: center;
      padding: 10px 0 20px 0; /* Adjusted padding-top for fixed header */
      background: var(--page-saowinclub-dark-bg);
    }

    .page-saowinclub__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(var(--page-saowinclub-primary-color), 0.5);
    }

    .page-saowinclub__hero-content {
      padding: 20px 15px;
    }

    .page-saowinclub__hero-title {
      font-size: 2.8em;
      color: var(--page-saowinclub-primary-color);
      margin-bottom: 15px;
      text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-saowinclub__hero-description {
      font-size: 1.3em;
      color: #ccc;
      margin-bottom: 30px;
    }

    .page-saowinclub__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: linear-gradient(45deg, var(--page-saowinclub-primary-color), var(--page-saowinclub-secondary-color));
      color: var(--page-saowinclub-text-color);
      padding: 15px 25px;
      border-radius: 50px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      z-index: 1000;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-saowinclub__floating-button:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

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

    .page-saowinclub__game-item {
      background-color: var(--page-saowinclub-dark-bg);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-saowinclub__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .page-saowinclub__game-icon {
      max-width: 100%;
      height: auto;
      margin-bottom: 10px;
      border-radius: 4px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      min-width: 200px;
      min-height: 200px;
      max-width: 300px;
      max-height: 300px;
      object-fit: contain;
    }

    .page-saowinclub__game-title {
      font-size: 1.1em;
      color: var(--page-saowinclub-text-color);
      font-weight: bold;
    }

    .page-saowinclub__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 15px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-saowinclub__provider-item {
      background-color: var(--page-saowinclub-dark-bg);
      border-radius: 8px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
    }

    .page-saowinclub__provider-item:hover {
      transform: scale(1.05);
    }

    .page-saowinclub__provider-logo {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      min-width: 200px;
      min-height: 200px;
      max-width: 300px;
      max-height: 300px;
      object-fit: contain;
    }

    .page-saowinclub__promo-card {
      background: linear-gradient(135deg, #333, #444);
      border-left: 5px solid var(--page-saowinclub-primary-color);
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-saowinclub__promo-text {
      font-size: 1.1em;
      color: #eee;
    }

    .page-saowinclub__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
      justify-content: center;
    }

    .page-saowinclub__payment-item {
      background-color: var(--page-saowinclub-dark-bg);
      border-radius: 8px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-saowinclub__payment-logo {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      min-width: 200px;
      min-height: 200px;
      max-width: 300px;
      max-height: 300px;
      object-fit: contain;
    }

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

    .page-saowinclub__list-item {
      background-color: #333;
      padding: 15px;
      margin-bottom: 10px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      font-size: 1.1em;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-saowinclub__list-item::before {
      content: '✓';
      color: var(--page-saowinclub-success-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-saowinclub__cta-button {
      display: block;
      width: fit-content;
      margin: 30px auto 0 auto;
      background: linear-gradient(90deg, var(--page-saowinclub-primary-color), var(--page-saowinclub-secondary-color));
      color: var(--page-saowinclub-text-color);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.4em;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-saowinclub__cta-button:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    /* FAQ Styles */
    .page-saowinclub__faq-section {
      background-color: var(--page-saowinclub-light-bg);
      border-radius: 8px;
      padding: 40px 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-saowinclub__faq-item {
      background-color: var(--page-saowinclub-dark-bg);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-saowinclub__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #333;
      color: var(--page-saowinclub-text-color);
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      border-bottom: 1px solid var(--page-saowinclub-border-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-saowinclub__faq-question:hover {
      background-color: #444;
    }

    .page-saowinclub__faq-question h3 {
      margin: 0;
      color: var(--page-saowinclub-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-saowinclub__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-saowinclub-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-saowinclub__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--page-saowinclub-dark-bg);
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-saowinclub__hero-section {
        padding-top: 10px; /* Mobile padding for fixed header */
      }
      .page-saowinclub__hero-title {
        font-size: 2em;
      }
      .page-saowinclub__hero-description {
        font-size: 1em;
      }
      .page-saowinclub__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-saowinclub__section {
        padding: 30px 10px;
      }
      .page-saowinclub__header-title {
        font-size: 2em;
      }
      .page-saowinclub__subheader-title {
        font-size: 1.5em;
      }
      .page-saowinclub__text {
        font-size: 1em;
      }
      .page-saowinclub__game-grid,
      .page-saowinclub__provider-grid,
      .page-saowinclub__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-saowinclub__game-icon,
      .page-saowinclub__provider-logo,
      .page-saowinclub__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        min-width: unset !important; /* Remove min-width on mobile for better scaling */
        min-height: unset !important; /* Remove min-height on mobile for better scaling */
      }
      .page-saowinclub__cta-button {
        font-size: 1.2em;
        padding: 12px 25px;
      }
      .page-saowinclub__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-saowinclub__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }

      /* Image responsive optimization for all images */
      .page-saowinclub img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-saowinclub img.page-saowinclub__hero-image,
      .page-saowinclub img.page-saowinclub__game-icon,
      .page-saowinclub img.page-saowinclub__provider-logo,
      .page-saowinclub img.page-saowinclub__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        min-width: unset !important;
        min-height: unset !important;
      }
      .page-saowinclub__game-item,
      .page-saowinclub__provider-item,
      .page-saowinclub__payment-item {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
    }
  