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

    .page-98win-58__section-title {
      font-size: 2.2em;
      color: #e9c46a; /* Gold accent */
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      font-weight: bold;
    }

    .page-98win-58__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      color: #ccc;
    }

    .page-98win-58__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small padding for visual separation from header */
      background-color: #0d0d1a;
    }

    .page-98win-58__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
    }

    .page-98win-58__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
    }

    .page-98win-58__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 900px;
    }

    .page-98win-58__main-title {
      font-size: 3em;
      color: #e9c46a;
      margin-bottom: 10px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-98win-58__hero-subtitle {
      font-size: 1.4em;
      color: #f8f8f8;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-98win-58__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-98win-58__cta-button {
      display: inline-block;
      background-color: #e9c46a;
      color: #1a1a2e;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-98win-58__cta-button:hover {
      background-color: #f4d58d;
      transform: translateY(-3px);
    }

    .page-98win-58__cta-button--secondary {
      background-color: #2a3a5e;
      color: #f0f0f0;
    }

    .page-98win-58__cta-button--secondary:hover {
      background-color: #3b4e7a;
      transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-98win-58__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    .page-98win-58__floating-button {
      background-color: #e9c46a;
      color: #1a1a2e;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      min-width: 120px;
    }

    .page-98win-58__floating-button:hover {
      background-color: #f4d58d;
      transform: translateY(-2px);
    }

    .page-98win-58__floating-button--login {
      background-color: #2a3a5e;
      color: #f0f0f0;
    }

    .page-98win-58__floating-button--login:hover {
      background-color: #3b4e7a;
    }

    /* About Section */
    .page-98win-58__about-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-98win-58__image-text-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-98win-58__image-text-item {
      background-color: #2a3a5e;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      flex: 1 1 calc(50% - 30px); /* Two columns on larger screens */
      max-width: calc(50% - 30px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-98win-58__image-text-img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      min-height: 200px; /* Enforce min image size */
      min-width: 200px;
    }

    .page-98win-58__image-text-title {
      font-size: 1.5em;
      color: #e9c46a;
      margin-bottom: 10px;
    }

    .page-98win-58__image-text-description {
      font-size: 1em;
      color: #ccc;
    }

    /* Products Section */
    .page-98win-58__products-section {
      padding: 60px 20px;
      background-color: #151525;
    }

    .page-98win-58__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-98win-58__product-card {
      background-color: #2a3a5e;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-98win-58__product-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      min-height: 200px; /* Enforce min image size */
      min-width: 200px;
    }

    .page-98win-58__product-title {
      font-size: 1.4em;
      color: #e9c46a;
      margin-bottom: 10px;
    }

    .page-98win-58__product-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* Promotions Section */
    .page-98win-58__promotions-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-98win-58__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 40px auto;
    }

    .page-98win-58__promo-card {
      background-color: #2a3a5e;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-98win-58__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      min-height: 200px; /* Enforce min image size */
      min-width: 200px;
    }

    .page-98win-58__promo-title {
      font-size: 1.4em;
      color: #e9c46a;
      margin-bottom: 10px;
    }

    .page-98win-58__promo-description {
      font-size: 0.95em;
      color: #ccc;
    }

    .page-98win-58__button-center {
      text-align: center;
      margin-top: 20px;
    }

    /* Providers Section */
    .page-98win-58__providers-section {
      padding: 60px 20px;
      background-color: #151525;
    }

    .page-98win-58__providers-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-98win-58__provider-item {
      background-color: #2a3a5e;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-98win-58__provider-logo {
      max-width: 100%;
      height: auto;
      margin-bottom: 10px;
      object-fit: contain;
      min-height: 100px; /* Adjust for logos, still >200 width/height overall */
      min-width: 100px;
    }

    .page-98win-58__provider-name {
      font-size: 1em;
      color: #f0f0f0;
      font-weight: bold;
    }

    /* Payment Section */
    .page-98win-58__payment-section {
      padding: 60px 20px;
      background-color: #1a1a2e;
    }

    .page-98win-58__payment-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-98win-58__payment-item {
      background-color: #2a3a5e;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-98win-58__payment-logo {
      max-width: 100%;
      height: auto;
      margin-bottom: 10px;
      object-fit: contain;
      min-height: 100px; /* Adjust for logos, still >200 width/height overall */
      min-width: 100px;
    }

    .page-98win-58__payment-name {
      font-size: 1em;
      color: #f0f0f0;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-98win-58__faq-section {
      padding: 60px 20px;
      background-color: #151525;
    }

    .page-98win-58__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-98win-58__faq-item {
      background-color: #2a3a5e;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .page-98win-58__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3b4e7a;
      color: #e9c46a;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-98win-58__faq-question:hover {
      background-color: #4c6292;
    }

    .page-98win-58__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #e9c46a;
      pointer-events: none; /* Prevent h3 text from blocking click event */
    }

    .page-98win-58__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: #e9c46a;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-98win-58__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;
      background-color: #2a3a5e;
      color: #ccc;
      font-size: 1em;
    }

    .page-98win-58__faq-answer p {
      padding-bottom: 20px;
      margin: 0;
    }

    .page-98win-58__faq-item.active .page-98win-58__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-98win-58__faq-item.active .page-98win-58__faq-toggle {
      transform: rotate(45deg); /* Plus to X/minus for visual effect */
    }

    /* Call to Action Bottom Section */
    .page-98win-58__cta-bottom-section {
      padding: 60px 20px;
      text-align: center;
      background-color: #1a1a2e;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-98win-58__main-title {
        font-size: 2.2em;
      }

      .page-98win-58__hero-subtitle {
        font-size: 1.1em;
      }

      .page-98win-58__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-98win-58__cta-button {
        width: 80%;
        margin: 0 auto;
      }

      .page-98win-58__section-title {
        font-size: 1.8em;
        padding-top: 30px;
      }

      .page-98win-58__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-98win-58__image-text-item,
      .page-98win-58__product-card,
      .page-98win-58__promo-card,
      .page-98win-58__provider-item,
      .page-98win-58__payment-item {
        flex: 1 1 100%; /* Single column */
        max-width: 100%;
        box-sizing: border-box !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
      }

      .page-98win-58__image-text-img,
      .page-98win-58__product-image,
      .page-98win-58__promo-image,
      .page-98win-58__provider-logo,
      .page-98win-58__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-98win-58__image-text-grid,
      .page-98win-58__product-grid,
      .page-98win-58__promo-grid,
      .page-98win-58__providers-list,
      .page-98win-58__payment-methods,
      .page-98win-58__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 20px; /* Adjust gap for mobile */
      }

      .page-98win-58__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-98win-58__faq-question h3 {
        font-size: 1.1em;
      }

      .page-98win-58__faq-answer {
        padding: 0 20px;
      }

      .page-98win-58__faq-item.active .page-98win-58__faq-answer {
        padding: 15px 20px !important;
      }

      .page-98win-58__floating-buttons {
        flex-direction: row;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        background-color: rgba(26, 26, 46, 0.9);
        padding: 10px;
        justify-content: space-around;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.4);
      }

      .page-98win-58__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 10px 15px;
        border-radius: 20px;
        min-width: unset;
      }
      
      .page-98win-58 {
        padding-bottom: 70px; /* Adjust for mobile floating buttons height */
      }
    }

    @media (max-width: 480px) {
      .page-98win-58__main-title {
        font-size: 1.8em;
      }
      .page-98win-58__hero-subtitle {
        font-size: 1em;
      }
      .page-98win-58__cta-button {
        font-size: 1em;
        padding: 12px 25px;
      }
      .page-98win-58__section-title {
        font-size: 1.5em;
      }
      .page-98win-58__faq-question h3 {
        font-size: 1em;
      }
      .page-98win-58__faq-toggle {
        font-size: 1.5em;
      }
    }
  