
    :root {
      --page-23wint-primary-color: #e44d26; /* Orange-red */
      --page-23wint-secondary-color: #333;
      --page-23wint-accent-color: #00a86b; /* Green */
      --page-23wint-text-color: #f0f0f0;
      --page-23wint-bg-color: #1a1a1a;
      --page-23wint-card-bg-color: #2a2a2a;
      --page-23wint-border-color: #444;
    }

    .page-23wint {
      font-family: 'Arial', sans-serif;
      color: var(--page-23wint-text-color);
      background-color: var(--page-23wint-bg-color);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-23wint * {
      box-sizing: border-box;
    }

    .page-23wint__section-title {
      font-size: 2.2em;
      color: var(--page-23wint-primary-color);
      text-align: center;
      margin-bottom: 20px;
      padding-top: 20px;
    }

    .page-23wint__section-subtitle {
      font-size: 1.1em;
      color: #ccc;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Buttons */
    .page-23wint__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-23wint__button--primary {
      background-color: var(--page-23wint-primary-color);
      color: #fff;
      border: 2px solid var(--page-23wint-primary-color);
    }

    .page-23wint__button--primary:hover {
      background-color: #ff6a40;
      border-color: #ff6a40;
      transform: translateY(-2px);
    }

    .page-23wint__button--secondary {
      background-color: transparent;
      color: var(--page-23wint-primary-color);
      border: 2px solid var(--page-23wint-primary-color);
    }

    .page-23wint__button--secondary:hover {
      background-color: var(--page-23wint-primary-color);
      color: #fff;
      transform: translateY(-2px);
    }

    .page-23wint__button--large {
      padding: 15px 35px;
      font-size: 1.2em;
    }

    /* Hero Section */
    .page-23wint__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px 20px 60px;
      background: linear-gradient(135deg, var(--page-23wint-bg-color) 0%, #000 100%);
      min-height: 70vh;
      justify-content: center;
      gap: 30px;
    }

    .page-23wint__hero-content {
      max-width: 900px;
      z-index: 1;
    }

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

    .page-23wint__hero-description {
      font-size: 1.2em;
      color: #eee;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-23wint__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-23wint__hero-image-wrapper {
      width: 100%;
      max-width: 800px;
      margin-top: 40px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-23wint__hero-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100% !important;
    }

    /* Floating Buttons */
    .page-23wint__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-23wint__floating-button {
      display: block;
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      color: #fff;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, background-color 0.3s ease;
      min-width: 100px;
    }

    .page-23wint__floating-button--register {
      background-color: var(--page-23wint-primary-color);
    }

    .page-23wint__floating-button--register:hover {
      background-color: #ff6a40;
      transform: translateY(-3px);
    }

    .page-23wint__floating-button--login {
      background-color: var(--page-23wint-accent-color);
    }

    .page-23wint__floating-button--login:hover {
      background-color: #00cc80;
      transform: translateY(-3px);
    }

    /* Product Grid */
    .page-23wint__products-section,
    .page-23wint__promotions-section,
    .page-23wint__about-section,
    .page-23wint__providers-section,
    .page-23wint__payments-section,
    .page-23wint__faq-section,
    .page-23wint__cta-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-23wint__product-grid,
    .page-23wint__promo-grid,
    .page-23wint__provider-grid,
    .page-23wint__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-23wint__product-item,
    .page-23wint__promo-item,
    .page-23wint__provider-item,
    .page-23wint__payment-item {
      background-color: var(--page-23wint-card-bg-color);
      border-radius: 12px;
      overflow: hidden;
      text-align: center;
      padding: 25px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-23wint__product-item:hover,
    .page-23wint__promo-item:hover,
    .page-23wint__provider-item:hover,
    .page-23wint__payment-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    }

    .page-23wint__product-image,
    .page-23wint__promo-image {
      width: 100%;
      height: 200px; /* Fixed height for product/promo images */
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 100% !important;
    }

    .page-23wint__product-title,
    .page-23wint__promo-title {
      font-size: 1.5em;
      color: var(--page-23wint-primary-color);
      margin-bottom: 10px;
    }

    .page-23wint__product-description,
    .page-23wint__promo-description {
      font-size: 1em;
      color: #bbb;
      flex-grow: 1;
    }

    .page-23wint__cta-button-wrapper {
      text-align: center;
      margin-top: 40px;
    }

    /* About Section */
    .page-23wint__about-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      text-align: center;
      background-color: #222;
      border-radius: 15px;
      padding: 60px 30px;
      margin-bottom: 40px;
    }

    .page-23wint__about-content {
      max-width: 700px;
    }

    .page-23wint__about-description {
      font-size: 1.1em;
      color: #ccc;
      margin-bottom: 30px;
    }

    .page-23wint__about-features {
      list-style: none;
      padding: 0;
      margin: 30px 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
      text-align: left;
    }

    .page-23wint__feature-item {
      background-color: #333;
      padding: 15px 20px;
      border-left: 4px solid var(--page-23wint-accent-color);
      border-radius: 8px;
      color: #f0f0f0;
      font-size: 1em;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-23wint__about-image-wrapper {
      width: 100%;
      max-width: 600px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .page-23wint__about-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100% !important;
    }

    /* Providers & Payments */
    .page-23wint__provider-link,
    .page-23wint__payment-link {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      width: 100%;
      height: 100%;
      justify-content: center;
    }

    .page-23wint__provider-logo,
    .page-23wint__payment-logo {
      width: 100px;
      height: 100px;
      object-fit: contain;
      border-radius: 8px;
      max-width: 100% !important;
    }

    .page-23wint__provider-name,
    .page-23wint__payment-name {
      font-size: 1.1em;
      color: #eee;
      font-weight: bold;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    /* FAQ Section */
    .page-23wint__faq-container {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-23wint__faq-item {
      background-color: var(--page-23wint-card-bg-color);
      border: 1px solid var(--page-23wint-border-color);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    }

    .page-23wint__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      transition: background-color 0.3s ease;
    }

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

    .page-23wint__faq-question-text {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-23wint-primary-color);
      flex-grow: 1;
      text-align: left;
    }

    .page-23wint__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-23wint-accent-color);
      margin-left: 15px;
      width: 30px;
      text-align: center;
    }

    .page-23wint__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: #ccc;
      text-align: left;
    }

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

    .page-23wint__faq-item.active .page-23wint__faq-toggle {
      content: '−';
      color: #fff;
    }

    /* CTA Section */
    .page-23wint__cta-section {
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(45deg, var(--page-23wint-primary-color) 0%, #e96b4b 100%);
      color: #fff;
      border-radius: 15px;
      margin-bottom: 40px;
    }

    .page-23wint__cta-section .page-23wint__section-title {
      color: #fff;
      margin-bottom: 20px;
    }

    .page-23wint__cta-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-23wint__hero-title {
        font-size: 2.5em;
      }
      .page-23wint__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-23wint__hero-section {
        padding: 10px 15px 40px;
      }
      .page-23wint__hero-title {
        font-size: 2em;
      }
      .page-23wint__hero-description {
        font-size: 1em;
      }
      .page-23wint__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-23wint__button {
        width: 100%;
        max-width: 300px;
      }

      .page-23wint__floating-buttons {
        flex-direction: row;
        bottom: 15px;
        right: 15px;
        left: 15px;
        justify-content: space-around;
      }
      .page-23wint__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 12px 10px;
        font-size: 0.9em;
      }

      .page-23wint__products-section,
      .page-23wint__promotions-section,
      .page-23wint__about-section,
      .page-23wint__providers-section,
      .page-23wint__payments-section,
      .page-23wint__faq-section,
      .page-23wint__cta-section {
        padding: 40px 15px;
      }

      .page-23wint__section-title {
        font-size: 1.8em;
      }
      .page-23wint__section-subtitle {
        font-size: 0.9em;
      }

      .page-23wint__product-grid,
      .page-23wint__promo-grid,
      .page-23wint__provider-grid,
      .page-23wint__payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-23wint__product-item,
      .page-23wint__promo-item,
      .page-23wint__provider-item,
      .page-23wint__payment-item {
        padding: 20px;
      }

      .page-23wint__about-section {
        flex-direction: column;
      }

      .page-23wint__about-features {
        padding: 0;
        margin: 20px 0;
      }

      .page-23wint__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px 15px;
      }

      .page-23wint__faq-question {
        padding: 15px 20px;
      }

      .page-23wint__faq-question-text {
        font-size: 1.1em;
      }

      .page-23wint__faq-answer {
        padding: 0 20px;
      }

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

      .page-23wint__provider-logo,
      .page-23wint__payment-logo {
        width: 80px;
        height: 80px;
      }
    }

    @media (max-width: 480px) {
      .page-23wint__hero-title {
        font-size: 1.8em;
      }
      .page-23wint__section-title {
        font-size: 1.6em;
      }
      .page-23wint__cta-section .page-23wint__section-title {
        font-size: 1.8em;
      }
      .page-23wint__floating-buttons {
        bottom: 10px;
        left: 10px;
        right: 10px;
      }
      .page-23wint__floating-button {
        padding: 10px 5px;
      }
      .page-23wint__product-image, .page-23wint__promo-image {
        height: 150px;
      }
    }
  