
    .page-98win01-con {
      font-family: Arial, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-98win01-con__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-98win01-con__section:nth-child(even) {
      background-color: #e9ecef;
    }

    .page-98win01-con__section-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #007bff;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-98win01-con__section-description {
      font-size: 1.1em;
      margin-bottom: 40px;
      color: #555;
    }

    /* Hero Section */
    .page-98win01-con__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Decorative top padding as body already has header offset */
    }

    .page-98win01-con__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Allowed for background images for readability */
      max-width: 100%;
    }

    .page-98win01-con__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      max-width: 90%;
    }

    .page-98win01-con__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-98win01-con__hero-description {
      font-size: 1.3em;
      max-width: 800px;
      margin: 0 auto;
    }

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

    .page-98win01-con__button {
      padding: 12px 25px;
      font-size: 1.1em;
      font-weight: bold;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-98win01-con__button--register {
      background-color: #ffc107;
      color: #333;
    }

    .page-98win01-con__button--register:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-98win01-con__button--login {
      background-color: #007bff;
      color: #fff;
    }

    .page-98win01-con__button--login:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Game Categories */
    .page-98win01-con__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-98win01-con__game-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

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

    .page-98win01-con__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Mobile responsive */
      box-sizing: border-box; /* Mobile responsive */
    }

    .page-98win01-con__game-card-title {
      font-size: 1.8em;
      margin: 20px 0 10px;
      color: #007bff;
    }

    .page-98win01-con__game-card-text {
      padding: 0 20px;
      color: #555;
    }

    /* Promotions */
    .page-98win01-con__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-98win01-con__promo-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: 20px;
    }

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

    .page-98win01-con__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%; /* Mobile responsive */
      box-sizing: border-box; /* Mobile responsive */
    }

    .page-98win01-con__promo-title {
      font-size: 1.6em;
      margin: 20px 0 10px;
      color: #ffc107;
    }

    .page-98win01-con__promo-text {
      padding: 0 20px;
      color: #555;
    }

    /* News */
    .page-98win01-con__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-98win01-con__news-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

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

    .page-98win01-con__news-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      max-width: 100%; /* Mobile responsive */
      box-sizing: border-box; /* Mobile responsive */
    }

    .page-98win01-con__news-title {
      font-size: 1.4em;
      margin: 15px 20px 5px;
      color: #007bff;
    }

    .page-98win01-con__news-date {
      font-size: 0.9em;
      color: #888;
      margin: 0 20px 10px;
    }

    .page-98win01-con__news-excerpt {
      padding: 0 20px 20px;
      color: #555;
    }

    /* Providers and Payments */
    .page-98win01-con__provider-grid,
    .page-98win01-con__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-98win01-con__provider-item,
    .page-98win01-con__payment-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
      padding: 15px;
      text-align: center;
      transition: transform 0.2s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%; /* Ensure it takes full grid column width */
      box-sizing: border-box;
    }

    .page-98win01-con__provider-item:hover,
    .page-98win01-con__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-98win01-con__provider-logo,
    .page-98win01-con__payment-logo {
      max-width: 100px;
      height: auto;
      margin-bottom: 10px;
      max-height: 50px; /* Constrain logo height */
      object-fit: contain;
      max-width: 100%; /* Mobile responsive */
      box-sizing: border-box; /* Mobile responsive */
    }

    .page-98win01-con__provider-name,
    .page-98win01-con__payment-name {
      font-weight: bold;
      color: #333;
    }

    /* FAQ Section */
    .page-98win01-con__faq-container {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-98win01-con__faq-item {
      background-color: #fff;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-98win01-con__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #007bff;
      color: #fff;
      border-radius: 10px;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-98win01-con__faq-question:hover {
      background-color: #0056b3;
    }

    .page-98win01-con__faq-question-text {
      margin: 0;
      font-size: 1.2em;
      font-weight: bold;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-98win01-con__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-98win01-con__faq-item.active .page-98win01-con__faq-toggle {
      transform: rotate(45deg); /* Plus to X / Minus */
    }

    .page-98win01-con__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;
      color: #333;
      background-color: #f9f9f9;
    }

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

    .page-98win01-con__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Call to Action */
    .page-98win01-con__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-98win01-con__button--primary {
      background-color: #28a745;
      color: #fff;
    }

    .page-98win01-con__button--primary:hover {
      background-color: #218838;
    }

    .page-98win01-con__button--secondary {
      background-color: #6c757d;
      color: #fff;
    }

    .page-98win01-con__button--secondary:hover {
      background-color: #5a6268;
    }

    /* Contact Info */
    .page-98win01-con__contact-info {
      background-color: #007bff;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }

    .page-98win01-con__contact-info .page-98win01-con__section-title {
      color: #fff;
    }

    .page-98win01-con__contact-info .page-98win01-con__section-description {
      color: #e9ecef;
    }

    .page-98win01-con__social-media-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
    }

    .page-98win01-con__social-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .page-98win01-con__social-link:hover {
      color: #ffc107;
      transform: translateY(-5px);
    }

    .page-98win01-con__social-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 10px;
      border-radius: 50%;
      object-fit: cover;
      max-width: 100%; /* Mobile responsive */
      box-sizing: border-box; /* Mobile responsive */
    }

    .page-98win01-con__social-text {
      font-size: 1.1em;
    }


    /* Responsive Design */
    @media (max-width: 768px) {
      .page-98win01-con__section-title {
        font-size: 2em;
      }

      .page-98win01-con__section-description {
        font-size: 1em;
      }

      .page-98win01-con__hero-section {
        height: 50vh;
      }

      .page-98win01-con__hero-title {
        font-size: 2.5em;
      }

      .page-98win01-con__hero-description {
        font-size: 1.1em;
      }

      .page-98win01-con__floating-buttons {
        flex-direction: row;
        bottom: 15px;
        right: 15px;
        left: 15px;
        justify-content: space-around;
      }

      .page-98win01-con__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-98win01-con__game-categories,
      .page-98win01-con__promo-grid,
      .page-98win01-con__news-grid,
      .page-98win01-con__provider-grid,
      .page-98win01-con__payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* List items responsiveness for general cards/grids */
      .page-98win01-con__game-card,
      .page-98win01-con__promo-card,
      .page-98win01-con__news-card,
      .page-98win01-con__provider-item,
      .page-98win01-con__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px; /* Adjust padding to avoid too narrow content */
        padding-right: 15px;
      }

      .page-98win01-con__game-card-text,
      .page-98win01-con__promo-text,
      .page-98win01-con__news-excerpt {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-98win01-con__faq-container {
        padding: 0 10px;
      }

      .page-98win01-con__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-98win01-con__faq-question-text {
        font-size: 1.1em;
      }

      .page-98win01-con__faq-answer {
        padding: 0 15px;
      }

      .page-98win01-con__faq-item.active .page-98win01-con__faq-answer {
        padding: 15px !important;
      }

      .page-98win01-con__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-98win01-con__social-icon {
        width: 50px;
        height: 50px;
      }
    }

    @media (max-width: 480px) {
      .page-98win01-con__hero-title {
        font-size: 2em;
      }

      .page-98win01-con__hero-description {
        font-size: 0.9em;
      }

      .page-98win01-con__button {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      .page-98win01-con__floating-buttons {
        bottom: 10px;
        left: 10px;
        right: 10px;
        gap: 5px;
      }

      .page-98win01-con__game-card-title,
      .page-98win01-con__promo-title,
      .page-98win01-con__news-title {
        font-size: 1.3em;
      }
      .page-98win01-con__provider-logo,
      .page-98win01-con__payment-logo {
        max-width: 80px;
      }
    }
  