
    .page-32-win1 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: var(--header-offset, 0); /* Fallback to 0 if shared.css doesn't define */
    }

    .page-32-win1__section-title,
    .page-32-win1__main-title {
      text-align: center;
      color: #00bcd4; /* Cyan accent */
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-32-win1__main-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: #e94560;
    }

    .page-32-win1__section-title {
      font-size: 2em;
      margin-top: 40px;
    }

    .page-32-win1__section-description {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 30px auto;
      font-size: 1.1em;
      color: #cccccc;
    }

    .page-32-win1__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 10px 20px; /* Small top padding, assuming body has header offset */
      box-sizing: border-box;
    }

    .page-32-win1__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-32-win1__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

    .page-32-win1__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
    }

    .page-32-win1__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #f0f0f0;
    }

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

    .page-32-win1__hero-button {
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      color: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      min-width: 150px;
    }

    .page-32-win1__hero-button--register {
      background-color: #e94560; /* Reddish pink */
    }

    .page-32-win1__hero-button--register:hover {
      background-color: #d13a52;
      transform: translateY(-2px);
    }

    .page-32-win1__hero-button--login {
      background-color: #00bcd4; /* Cyan */
    }

    .page-32-win1__hero-button--login:hover {
      background-color: #00aabf;
      transform: translateY(-2px);
    }

    .page-32-win1__about-section,
    .page-32-win1__games-section,
    .page-32-win1__promotions-section,
    .page-32-win1__faq-section,
    .page-32-win1__providers-section,
    .page-32-win1__cta-bottom-section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-32-win1__features-grid,
    .page-32-win1__games-grid,
    .page-32-win1__promo-grid,
    .page-32-win1__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-32-win1__feature-item,
    .page-32-win1__game-card,
    .page-32-win1__promo-card,
    .page-32-win1__provider-item {
      background-color: #2e2e4a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      width: 100%;
    }

    .page-32-win1__feature-item:hover,
    .page-32-win1__game-card:hover,
    .page-32-win1__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-32-win1__feature-image,
    .page-32-win1__game-image,
    .page-32-win1__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      width: 100%;
      min-width: 200px;
      min-height: 200px;
    }

    .page-32-win1__provider-logo {
      max-width: 100%;
      height: auto;
      margin-bottom: 10px;
      filter: brightness(0.8) grayscale(0.2); /* Allowed for logos to fit theme, but not color change */
      transition: filter 0.3s ease;
      min-width: 200px;
      min-height: 100px;
      object-fit: contain;
    }

    .page-32-win1__provider-item:hover .page-32-win1__provider-logo {
      filter: brightness(1) grayscale(0);
    }

    .page-32-win1__feature-title,
    .page-32-win1__game-title,
    .page-32-win1__promo-title,
    .page-32-win1__provider-name {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #e94560;
    }

    .page-32-win1__feature-text,
    .page-32-win1__game-text,
    .page-32-win1__promo-text {
      font-size: 1em;
      color: #cccccc;
    }

    .page-32-win1__cta-button-wrapper,
    .page-32-win1__cta-buttons-bottom {
      text-align: center;
      margin-top: 40px;
    }

    .page-32-win1__cta-button {
      padding: 15px 35px;
      background-color: #e94560;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      min-width: 200px;
    }

    .page-32-win1__cta-button:hover {
      background-color: #d13a52;
      transform: translateY(-2px);
    }

    .page-32-win1__cta-link {
      text-decoration: none;
      display: inline-block;
      margin: 10px;
    }

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

    /* FAQ Section */
    .page-32-win1__faq-container {
      margin-top: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-32-win1__faq-item {
      background-color: #2e2e4a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-32-win1__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3f3f6e;
      border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
    }

    .page-32-win1__faq-question:hover {
      background-color: #4a4a7d;
    }

    .page-32-win1__faq-title {
      font-size: 1.2em;
      color: #e0e0e0;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      text-align: left;
    }

    .page-32-win1__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e94560;
      margin-left: 15px;
      pointer-events: none; /* Prevent span from blocking click */
      transition: transform 0.3s ease;
    }

    .page-32-win1__faq-item.active .page-32-win1__faq-toggle {
      transform: rotate(45deg);
      color: #00bcd4;
    }

    .page-32-win1__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: #cccccc;
      text-align: left;
    }

    .page-32-win1__faq-item.active .page-32-win1__faq-answer {
      max-height: 2000px !important;
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-32-win1__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Floating Buttons */
    .page-32-win1__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      overflow: hidden;
    }

    .page-32-win1__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 25px;
      font-size: 1.1em;
      font-weight: bold;
      color: #fff;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      min-width: 120px;
      box-sizing: border-box;
    }

    .page-32-win1__floating-button--register {
      background-color: #e94560;
    }

    .page-32-win1__floating-button--register:hover {
      background-color: #d13a52;
      transform: translateY(-2px);
    }

    .page-32-win1__floating-button--login {
      background-color: #00bcd4;
    }

    .page-32-win1__floating-button--login:hover {
      background-color: #00aabf;
      transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-32-win1__main-title {
        font-size: 2em;
      }

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

      .page-32-win1__hero-description {
        font-size: 1.1em;
      }

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

      .page-32-win1__hero-button {
        width: 100%;
        max-width: 250px;
      }

      .page-32-win1__about-section,
      .page-32-win1__games-section,
      .page-32-win1__promotions-section,
      .page-32-win1__faq-section,
      .page-32-win1__providers-section,
      .page-32-win1__cta-bottom-section {
        padding: 30px 15px;
      }

      .page-32-win1__features-grid,
      .page-32-win1__games-grid,
      .page-32-win1__promo-grid,
      .page-32-win1__providers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-32-win1__feature-item,
      .page-32-win1__game-card,
      .page-32-win1__promo-card,
      .page-32-win1__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-32-win1__feature-image,
      .page-32-win1__game-image,
      .page-32-win1__promo-image,
      .page-32-win1__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

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

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

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

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

      .page-32-win1__floating-buttons {
        bottom: 10px;
        gap: 10px;
      }

      .page-32-win1__floating-button {
        padding: 10px 20px;
        font-size: 1em;
        min-width: 100px;
      }
    }

    @media (max-width: 480px) {
      .page-32-win1__main-title {
        font-size: 1.8em;
      }
      .page-32-win1__section-title {
        font-size: 1.6em;
      }
      .page-32-win1__hero-description {
        font-size: 1em;
      }
    }
  