
    .page-99win3 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
    }

    /* Hero Section */
    .page-99win3__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small padding, assuming body padding handles header offset */
    }

    .page-99win3__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .page-99win3__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.5); /* Darken image for text readability */
      max-width: 100%; /* Responsive image */
    }

    .page-99win3__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 90%;
      background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
      border-radius: 10px;
    }

    .page-99win3__hero-title {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: #FFD700; /* Gold accent */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-99win3__hero-subtitle {
      font-size: 1.1em;
      margin-bottom: 25px;
      color: #e0e0e0;
    }

    .page-99win3__hero-cta {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .page-99win3__cta-button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      color: #1a1a1a; /* Dark text for contrast */
    }

    .page-99win3__cta-button--register {
      background-color: #FFD700; /* Gold */
      border: 2px solid #FFD700;
    }

    .page-99win3__cta-button--register:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-99win3__cta-button--login {
      background-color: #333;
      border: 2px solid #FFD700;
      color: #FFD700;
    }

    .page-99win3__cta-button--login:hover {
      background-color: #444;
      transform: translateY(-2px);
    }

    /* General Section Styling */
    .page-99win3__section-title {
      font-size: 2em;
      color: #FFD700;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
    }

    .page-99win3__section-description {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      color: #e0e0e0;
    }

    /* Game Categories Section */
    .page-99win3__games-section {
      padding: 40px 20px;
      background-color: #222;
    }

    .page-99win3__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-99win3__game-card {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-99win3__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
    }

    .page-99win3__game-card-title {
      font-size: 1.5em;
      color: #FFD700;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-99win3__game-card-text {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 20px;
      flex-grow: 1;
      padding: 0 15px;
    }

    .page-99win3__game-card-button {
      background-color: #FFD700;
      color: #1a1a1a;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      width: fit-content;
      margin: 0 auto;
    }

    .page-99win3__game-card-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Promotions Section */
    .page-99win3__promotions-section {
      padding: 40px 20px;
      background-color: #1a1a1a;
    }

    .page-99win3__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-99win3__promo-card {
      background-color: #333;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-99win3__promo-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      margin-bottom: 15px;
      max-width: 100%; /* Responsive image */
    }

    .page-99win3__promo-card-title {
      font-size: 1.4em;
      color: #FFD700;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-99win3__promo-card-text {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 20px;
      flex-grow: 1;
      padding: 0 15px;
    }

    .page-99win3__promo-card-button {
      background-color: #FFD700;
      color: #1a1a1a;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      width: fit-content;
      margin: 0 auto;
    }

    .page-99win3__promo-card-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* About Section */
    .page-99win3__about-section {
      padding: 40px 20px;
      background-color: #222;
    }

    .page-99win3__about-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }

    .page-99win3__about-image-wrapper {
      width: 100%;
      max-width: 500px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-99win3__about-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%; /* Responsive image */
    }

    .page-99win3__about-text {
      flex: 1;
      text-align: left;
    }

    .page-99win3__about-text p {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #e0e0e0;
    }

    .page-99win3__about-text strong {
      color: #FFD700;
    }

    .page-99win3__feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-99win3__feature-item {
      background-color: #333;
      padding: 10px 15px;
      margin-bottom: 10px;
      border-left: 4px solid #FFD700;
      border-radius: 5px;
      font-size: 1em;
      color: #f0f0f0;
      box-sizing: border-box; /* Required for list items */
    }

    /* Payments and Providers Section */
    .page-99win3__payments-providers-section {
      padding: 40px 20px;
      background-color: #1a1a1a;
    }

    .page-99win3__payments-wrapper,
    .page-99win3__providers-wrapper {
      max-width: 1200px;
      margin: 0 auto 50px auto;
      padding: 20px;
      background-color: #222;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-99win3__payments-wrapper:last-child,
    .page-99win3__providers-wrapper:last-child {
        margin-bottom: 0;
    }

    .page-99win3__payment-logos,
    .page-99win3__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-99win3__payment-link,
    .page-99win3__provider-link {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #333;
      padding: 10px 15px;
      border-radius: 8px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      width: 150px; /* Fixed width for logo containers */
      height: 80px; /* Fixed height for logo containers */
      box-sizing: border-box;
    }

    .page-99win3__payment-link:hover,
    .page-99win3__provider-link:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-99win3__payment-logo,
    .page-99win3__provider-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
      filter: brightness(0.8) grayscale(0.2); /* Slightly dim logos for dark theme */
      transition: filter 0.3s ease;
    }

    .page-99win3__payment-link:hover .page-99win3__payment-logo,
    .page-99win3__provider-link:hover .page-99win3__provider-logo {
      filter: brightness(1) grayscale(0); /* Brighten on hover */
    }

    /* FAQ Section */
    .page-99win3__faq-section {
      padding: 40px 20px;
      background-color: #222;
    }

    .page-99win3__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-99win3__faq-item {
      background-color: #333;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-99win3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #444;
      border-bottom: 1px solid #555;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-99win3__faq-question:hover {
      background-color: #555;
    }

    .page-99win3__faq-question-title {
      margin: 0;
      font-size: 1.1em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-99win3__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click */
    }

    .page-99win3__faq-item.active .page-99win3__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-99win3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #333;
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-99win3__faq-answer p {
      margin: 0;
    }

    /* Social Media Section */
    .page-99win3__social-media-section {
      padding: 40px 20px;
      background-color: #1a1a1a;
      text-align: center;
    }

    .page-99win3__social-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-99win3__social-link {
      display: inline-block;
      background-color: #333;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-99win3__social-link:hover {
      background-color: #FFD700;
      transform: translateY(-5px);
    }

    .page-99win3__social-icon {
      width: 35px;
      height: 35px;
      object-fit: contain;
      filter: brightness(0.8) grayscale(0.2); /* Dim social icons */
      transition: filter 0.3s ease;
    }

    .page-99win3__social-link:hover .page-99win3__social-icon {
      filter: brightness(1) grayscale(0); /* Brighten on hover */
    }

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

    .page-99win3__floating-button {
      display: block;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s ease, background-color 0.3s ease;
      color: #1a1a1a;
    }

    .page-99win3__floating-button--register {
      background-color: #FFD700;
    }

    .page-99win3__floating-button--register:hover {
      background-color: #e6c200;
      transform: scale(1.05);
    }

    .page-99win3__floating-button--login {
      background-color: #555;
      color: #FFD700;
      border: 1px solid #FFD700;
    }

    .page-99win3__floating-button--login:hover {
      background-color: #666;
      transform: scale(1.05);
    }

    /* Responsive adjustments */
    @media (min-width: 769px) {
      .page-99win3__hero-section {
        height: 70vh;
      }

      .page-99win3__hero-title {
        font-size: 3.5em;
      }

      .page-99win3__hero-subtitle {
        font-size: 1.3em;
      }

      .page-99win3__about-content {
        flex-direction: row;
        text-align: left;
      }

      .page-99win3__about-image-wrapper {
        flex: 1;
        max-width: 50%;
      }

      .page-99win3__about-text {
        padding-left: 30px;
      }

      .page-99win3__floating-buttons {
        flex-direction: row;
        bottom: 30px;
        right: 30px;
      }
    }

    @media (max-width: 768px) {
      .page-99win3__hero-section {
        height: 80vh; /* More vertical space on mobile */
      }

      .page-99win3__hero-title {
        font-size: 1.8em;
      }

      .page-99win3__hero-subtitle {
        font-size: 1em;
      }

      .page-99win3__hero-cta {
        flex-direction: column;
        gap: 10px;
      }

      .page-99win3__cta-button {
        width: 80%;
        margin: 0 auto;
      }

      .page-99win3__section-title {
        font-size: 1.6em;
      }

      .page-99win3__section-description {
        font-size: 0.9em;
        margin-bottom: 25px;
      }

      .page-99win3__game-card,
      .page-99win3__promo-card {
        margin: 0 auto;
        width: 100%; /* Ensure cards take full width */
        max-width: 350px; /* Optional: limit max width for very large screens on mobile */
      }

      .page-99win3__game-categories,
      .page-99win3__promo-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
      }

      .page-99win3__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px !important; /* Adjust padding if needed */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      
      .page-99win3__feature-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-99win3__payment-link,
      .page-99win3__provider-link {
        width: 120px; /* Smaller logos on mobile */
        height: 70px;
        padding: 8px 10px;
      }

      .page-99win3__social-link {
        width: 50px;
        height: 50px;
      }

      .page-99win3__social-icon {
        width: 30px;
        height: 30px;
      }

      .page-99win3__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px); /* Adjust width to fit screen with padding */
        left: 20px;
        right: 20px;
        justify-content: space-around;
        bottom: 15px;
      }

      .page-99win3__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      /* Image responsive rules for all images */
      .page-99win3__hero-image,
      .page-99win3__game-card-image,
      .page-99win3__promo-card-image,
      .page-99win3__about-image,
      .page-99win3__payment-logo,
      .page-99win3__provider-logo,
      .page-99win3__social-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* Image containers */
      .page-99win3__hero-background,
      .page-99win3__game-card,
      .page-99win3__promo-card,
      .page-99win3__about-image-wrapper,
      .page-99win3__payment-link,
      .page-99win3__provider-link,
      .page-99win3__social-link {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  