
    .page-1-win-apk {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-1-win-apk__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
    }

    .page-1-win-apk__section--alt {
      background-color: #e9ecef;
    }

    .page-1-win-apk__heading {
      text-align: center;
      color: #007bff;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-1-win-apk__sub-heading {
      text-align: center;
      color: #0056b3;
      margin-bottom: 25px;
      font-size: 1.8em;
      font-weight: bold;
    }

    .page-1-win-apk__paragraph {
      margin-bottom: 15px;
      text-align: justify;
      color: #555;
    }

    .page-1-win-apk__hero-section {
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: #fff;
      text-align: center;
      padding: 10px 20px 60px;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
    }

    .page-1-win-apk__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: #fff;
    }

    .page-1-win-apk__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0f7fa;
    }

    .page-1-win-apk__hero-image {
      max-width: 800px;
      width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      margin: 30px auto;
      display: block;
      object-fit: cover;
    }

    .page-1-win-apk__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      text-align: center;
    }

    .page-1-win-apk__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-1-win-apk__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transform: translateY(0);
      transition: transform 0.3s ease-in-out;
    }

    .page-1-win-apk__floating-button {
      background-color: #28a745;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      font-size: 1.1em;
      text-align: center;
      flex: 1;
      margin: 0 10px;
      max-width: 180px;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-1-win-apk__floating-button--login {
      background-color: #007bff;
    }

    .page-1-win-apk__floating-button:hover {
      opacity: 0.9;
    }

    .page-1-win-apk__benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-1-win-apk__benefit-item {
      background-color: #fefefe;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
      border-top: 5px solid #007bff;
    }

    .page-1-win-apk__benefit-item:hover {
      transform: translateY(-5px);
    }

    .page-1-win-apk__benefit-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
      object-fit: cover;
    }

    .page-1-win-apk__benefit-title {
      color: #007bff;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-1-win-apk__download-steps {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
    }

    .page-1-win-apk__download-step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      background-color: #fefefe;
      padding: 20px;
      border-left: 5px solid #28a745;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-1-win-apk__download-step-item::before {
      counter-increment: step-counter;
      content: counter(step-counter);
      background-color: #28a745;
      color: #fff;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      margin-right: 15px;
      flex-shrink: 0;
      font-size: 1.1em;
    }

    .page-1-win-apk__download-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      margin: 20px auto;
      display: block;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    .page-1-win-apk__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
      justify-items: center; /* Centering product display */
    }

    .page-1-win-apk__game-card {
      background-color: #fefefe;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 350px;
    }

    .page-1-win-apk__game-card:hover {
      transform: translateY(-5px);
    }

    .page-1-win-apk__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-1-win-apk__game-title {
      padding: 15px;
      font-size: 1.2em;
      color: #007bff;
      font-weight: bold;
    }

    .page-1-win-apk__promotion-link {
      display: inline-block;
      background-color: #dc3545;
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      margin-top: 20px;
      transition: background-color 0.3s ease;
    }

    .page-1-win-apk__promotion-link:hover {
      background-color: #c82333;
    }

    .page-1-win-apk__payment-grid,
    .page-1-win-apk__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-1-win-apk__payment-item,
    .page-1-win-apk__provider-item {
      background-color: #fefefe;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 150px;
    }

    .page-1-win-apk__payment-logo,
    .page-1-win-apk__provider-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .page-1-win-apk__faq-list {
      list-style: none;
      padding: 0;
    }

    .page-1-win-apk__faq-item {
      background-color: #fefefe;
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-1-win-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #007bff;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .page-1-win-apk__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: #fff;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-1-win-apk__faq-question:hover {
      background-color: #0056b3;
    }

    .page-1-win-apk__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-1-win-apk__faq-item.active .page-1-win-apk__faq-toggle {
      transform: rotate(45deg);
    }

    .page-1-win-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fefefe;
      color: #333;
      border-radius: 0 0 8px 8px;
    }

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

    @media (max-width: 768px) {
      .page-1-win-apk__hero-title {
        font-size: 2em;
      }

      .page-1-win-apk__hero-subtitle {
        font-size: 1.2em;
      }

      .page-1-win-apk__heading {
        font-size: 2em;
      }

      .page-1-win-apk__sub-heading {
        font-size: 1.5em;
      }

      .page-1-win-apk__section {
        padding: 30px 15px;
      }

      .page-1-win-apk__floating-buttons {
        padding: 8px 0;
      }

      .page-1-win-apk__floating-button {
        padding: 10px 15px;
        font-size: 1em;
        margin: 0 5px;
      }

      .page-1-win-apk__benefits-grid,
      .page-1-win-apk__games-grid,
      .page-1-win-apk__payment-grid,
      .page-1-win-apk__provider-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-1-win-apk__benefit-item,
      .page-1-win-apk__game-card,
      .page-1-win-apk__payment-item,
      .page-1-win-apk__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-1-win-apk__download-step-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
      }

      .page-1-win-apk__download-step-item::before {
        margin-bottom: 10px;
      }

      .page-1-win-apk__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-1-win-apk__faq-answer {
        padding: 0 15px;
      }

      .page-1-win-apk__faq-item.active .page-1-win-apk__faq-answer {
        padding: 15px 15px !important;
      }

      .page-1-win-apk img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-1-win-apk__download-steps li,
      .page-1-win-apk__download-steps {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-1-win-apk__floating-button {
        font-size: 0.9em;
        padding: 10px 10px;
      }
    }
  