
    /* CSS Styles for page-winclub1 */
    :root {
      --page-winclub1-primary-color: #e44d26; /* Orange-red for action/emphasis */
      --page-winclub1-secondary-color: #2c3e50; /* Dark blue for text/background */
      --page-winclub1-accent-color: #f39c12; /* Yellow for highlights */
      --page-winclub1-light-bg: #f9f9f9;
      --page-winclub1-dark-bg: #1a252f;
      --page-winclub1-text-color: #333;
      --page-winclub1-light-text: #fff;
    }

    .page-winclub1 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-winclub1-text-color);
      background-color: var(--page-winclub1-light-bg);
      padding-bottom: 80px; /* Space for the fixed button */
    }

    /* Fallback for header offset if body padding is not set by shared.css */
    /* .page-winclub1 {
        padding-top: var(--header-offset, 122px);
    } */

    .page-winclub1__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--page-winclub1-light-text);
      overflow: hidden;
      padding: 10px 20px; /* Small top padding, assuming body handles main offset */
      box-sizing: border-box;
    }

    .page-winclub1__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken background image for text readability */
    }

    .page-winclub1__hero-content {
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-winclub1__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-winclub1__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    .page-winclub1__cta-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-winclub1-primary-color);
      color: var(--page-winclub1-light-text);
      text-decoration: none;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-winclub1__cta-button:hover {
      background-color: var(--page-winclub1-accent-color);
      transform: translateY(-2px);
    }

    .page-winclub1__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--page-winclub1-light-bg);
      border-radius: 8px;
      margin-bottom: 40px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-winclub1__section--dark {
      background-color: var(--page-winclub1-dark-bg);
      color: var(--page-winclub1-light-text);
      padding: 80px 20px;
    }

    .page-winclub1__section-title {
      font-size: 2.5em;
      color: var(--page-winclub1-secondary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-winclub1__section--dark .page-winclub1__section-title {
      color: var(--page-winclub1-light-text);
    }

    .page-winclub1__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-winclub1-primary-color);
      border-radius: 2px;
    }

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

    .page-winclub1__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 30px auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-winclub1__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

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

    .page-winclub1__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      color: var(--page-winclub1-text-color);
    }

    .page-winclub1__section--dark .page-winclub1__game-card {
      background-color: #2a3a4c;
      color: var(--page-winclub1-light-text);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-winclub1__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-winclub1__section--dark .page-winclub1__game-card:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-winclub1__game-icon {
      width: 150px; /* Min size 200x200 requirement, adjust if this is too small */
      height: 150px;
      object-fit: contain;
      margin-bottom: 20px;
      border-radius: 8px;
    }

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

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

    .page-winclub1__section--dark .page-winclub1__game-description {
      color: #bbb;
    }

    .page-winclub1__steps-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-winclub1__step-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 25px;
      flex: 1;
      min-width: 280px;
      max-width: 380px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-winclub1__section--dark .page-winclub1__step-item {
      background-color: #2a3a4c;
      border-color: #444;
      color: var(--page-winclub1-light-text);
    }

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

    .page-winclub1__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: var(--page-winclub1-primary-color);
      margin-bottom: 15px;
    }

    .page-winclub1__step-title {
      font-size: 1.3em;
      font-weight: bold;
      margin-bottom: 10px;
      color: var(--page-winclub1-secondary-color);
    }

    .page-winclub1__section--dark .page-winclub1__step-title {
      color: var(--page-winclub1-accent-color);
    }

    .page-winclub1__step-description {
      font-size: 1em;
      color: #555;
    }

    .page-winclub1__section--dark .page-winclub1__step-description {
      color: #ccc;
    }

    .page-winclub1__faq-section {
      background-color: var(--page-winclub1-light-bg);
      padding: 60px 20px;
      max-width: 1000px;
      margin: 0 auto 40px auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-winclub1__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-winclub1__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-winclub1__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-winclub1-secondary-color);
      user-select: none;
      transition: color 0.3s ease;
    }

    .page-winclub1__faq-question h3 {
      margin: 0;
      padding: 0;
      font-size: 1em; /* Match parent font size */
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-winclub1__faq-question:hover {
      color: var(--page-winclub1-primary-color);
    }

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

    .page-winclub1__faq-item.active .page-winclub1__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'X' or similar for visual cue */
    }
    
    .page-winclub1__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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;
    }

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

    .page-winclub1__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    .page-winclub1__floating-button a {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--page-winclub1-primary-color);
      color: var(--page-winclub1-light-text);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-winclub1__floating-button a:hover {
      background-color: var(--page-winclub1-accent-color);
      transform: translateY(-3px);
    }

    .page-winclub1__floating-button a::before {
      content: '🎁'; /* Gift emoji or similar icon */
      margin-right: 10px;
      font-size: 1.3em;
    }


    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-winclub1__hero-title {
        font-size: 2.8em;
      }
      .page-winclub1__hero-description {
        font-size: 1.2em;
      }
      .page-winclub1__section-title {
        font-size: 2em;
      }
      .page-winclub1__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-winclub1__hero-section {
        height: 70vh;
        min-height: 350px;
      }
      .page-winclub1__hero-title {
        font-size: 2.2em;
      }
      .page-winclub1__hero-description {
        font-size: 1em;
      }
      .page-winclub1__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-winclub1__section {
        padding: 40px 15px;
        margin-bottom: 30px;
      }
      .page-winclub1__section--dark {
        padding: 60px 15px;
      }
      .page-winclub1__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-winclub1__content-text {
        font-size: 1em;
      }
      .page-winclub1__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-winclub1__game-card {
        padding: 20px;
      }
      .page-winclub1__game-icon {
        width: 120px;
        height: 120px;
      }
      .page-winclub1__game-title {
        font-size: 1.3em;
      }
      .page-winclub1__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }
      .page-winclub1__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-winclub1__faq-section {
        padding: 30px 15px;
        margin-bottom: 30px;
      }
      .page-winclub1__faq-question {
        font-size: 1.1em;
        padding: 12px 0;
      }
      .page-winclub1__faq-answer {
        padding: 15px 10px !important;
      }
      .page-winclub1__floating-button {
        bottom: 15px;
        right: 15px;
      }
      .page-winclub1__floating-button a {
        padding: 12px 20px;
        font-size: 0.95em;
      }

      /* Image responsiveness for mobile */
      .page-winclub1__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-winclub1__image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
      }
      .page-winclub1__content-text,
      .page-winclub1__game-description,
      .page-winclub1__step-description,
      .page-winclub1__faq-answer {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-winclub1__hero-title {
        font-size: 1.8em;
      }
      .page-winclub1__hero-description {
        font-size: 0.9em;
      }
      .page-winclub1__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-winclub1__section-title {
        font-size: 1.5em;
      }
      .page-winclub1__faq-question {
        font-size: 1em;
      }
      .page-winclub1__floating-button a {
        font-size: 0.85em;
        padding: 10px 15px;
      }
    }
  