
    :root {
      --primary-bg: #1a1a1a;
      --secondary-bg: #2a2a2a;
      --text-color: #f0f0f0;
      --accent-color: #ffcc00; /* Gold/Yellow */
      --button-bg: #e44d26; /* Orange-red for action */
      --button-hover-bg: #c23b1f;
      --border-color: #3a3a3a;
    }

    /* Base styles for the page-99-wim scope */
    .page-99-wim {
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
      background-color: var(--primary-bg);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-99-wim__section-title,
    .page-99-wim__hero-title,
    .page-99-wim__category-title,
    .page-99-wim__promotion-title,
    .page-99-wim__benefit-title,
    .page-99-wim__cta-title {
      color: var(--accent-color);
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-99-wim__section-title {
      font-size: 2.2em;
      padding: 20px 0;
    }

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

    /* Buttons general style */
    .page-99-wim__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.05em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      border: none;
      box-sizing: border-box;
    }

    .page-99-wim__button--primary {
      background-color: var(--button-bg);
      color: #fff;
    }

    .page-99-wim__button--primary:hover {
      background-color: var(--button-hover-bg);
      transform: translateY(-2px);
    }

    .page-99-wim__button--secondary {
      background-color: #333;
      color: var(--accent-color);
      border: 1px solid var(--accent-color);
    }

    .page-99-wim__button--secondary:hover {
      background-color: #444;
      transform: translateY(-2px);
    }

    .page-99-wim__button--details {
      background-color: #007bff;
      color: #fff;
      font-size: 0.9em;
      padding: 8px 15px;
      border-radius: 20px;
    }

    .page-99-wim__button--details:hover {
      background-color: #0056b3;
    }

    .page-99-wim__text-link {
      color: var(--accent-color);
      text-decoration: none;
      font-weight: bold;
    }

    .page-99-wim__text-link:hover {
      text-decoration: underline;
    }

    /* Floating Buttons */
    .page-99-wim__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.85);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-99-wim__button--register,
    .page-99-wim__button--login {
      flex: 1;
      margin: 0 5px;
      padding: 15px 0;
      font-size: 1.1em;
      border-radius: 5px;
    }

    .page-99-wim__button--register {
      background-color: var(--button-bg);
      color: #fff;
    }

    .page-99-wim__button--login {
      background-color: #333;
      color: var(--accent-color);
      border: 1px solid var(--accent-color);
    }

    /* Hero Section */
    .page-99-wim__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px 20px 60px 20px; /* Small decorative padding-top, more at bottom */
      background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
      overflow: hidden;
    }

    .page-99-wim__hero-content {
      max-width: 900px;
      margin-bottom: 40px;
    }

    .page-99-wim__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-99-wim__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #ccc;
    }

    .page-99-wim__hero-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }

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

    .page-99-wim__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Game Categories */
    .page-99-wim__game-categories {
      padding: 60px 20px;
      background-color: var(--secondary-bg);
    }

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

    .page-99-wim__category-item {
      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);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-99-wim__category-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-99-wim__category-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-bottom: 3px solid var(--accent-color);
    }

    .page-99-wim__category-title {
      font-size: 1.6em;
      margin: 20px 0 10px;
      color: var(--accent-color);
    }

    .page-99-wim__category-text {
      font-size: 1em;
      padding: 0 15px;
      color: #ccc;
    }

    /* Promotions Section */
    .page-99-wim__promotions-section {
      padding: 60px 20px;
      background-color: var(--primary-bg);
    }

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

    .page-99-wim__promotion-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-99-wim__promotion-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-99-wim__promotion-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-bottom: 3px solid var(--button-bg);
    }

    .page-99-wim__promotion-title {
      font-size: 1.5em;
      margin: 20px 0 10px;
      color: var(--accent-color);
    }

    .page-99-wim__promotion-text {
      font-size: 1em;
      padding: 0 15px;
      color: #ccc;
      margin-bottom: 20px;
    }

    /* Why Choose Us Section */
    .page-99-wim__why-choose-us {
      padding: 60px 20px;
      background-color: var(--secondary-bg);
    }

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

    .page-99-wim__benefit-item {
      background-color: #333;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-99-wim__benefit-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-99-wim__benefit-icon {
      max-width: 200px; /* Min size 200x200 */
      height: auto;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-99-wim__benefit-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: var(--accent-color);
    }

    .page-99-wim__benefit-text {
      font-size: 1em;
      color: #ccc;
    }

    /* Payment Methods & Game Providers */
    .page-99-wim__payment-methods,
    .page-99-wim__providers-section {
      padding: 60px 20px;
      background-color: var(--primary-bg);
    }

    .page-99-wim__payment-grid,
    .page-99-wim__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted minmax for logos */
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-99-wim__payment-item,
    .page-99-wim__provider-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-sizing: border-box;
    }

    .page-99-wim__payment-item:hover,
    .page-99-wim__provider-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-99-wim__payment-logo,
    .page-99-wim__provider-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px; /* Ensure logos are not too large */
      display: block;
    }

    /* FAQ Section */
    .page-99-wim__faq-section {
      padding: 60px 20px;
      background-color: var(--secondary-bg);
    }

    .page-99-wim__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

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

    .page-99-wim__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      background-color: #444;
      color: var(--text-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

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

    .page-99-wim__faq-question h3 {
      margin: 0;
      font-size: 1.1em; /* Adjusted for better hierarchy */
      color: var(--text-color);
      pointer-events: none; /* Prevents click issues on text */
    }

    .page-99-wim__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      width: 20px;
      text-align: center;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents click issues on toggle */
    }

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

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

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

    .page-99-wim__faq-answer p {
      margin: 0;
      padding-bottom: 5px; /* Adjust as needed */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Final CTA Section */
    .page-99-wim__cta-section {
      padding: 60px 20px;
      text-align: center;
      background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    }

    .page-99-wim__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--accent-color);
    }

    .page-99-wim__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #ccc;
    }

    .page-99-wim__button--large {
      padding: 15px 40px;
      font-size: 1.2em;
    }

    .page-99-wim__cta-small-text {
      margin-top: 20px;
      font-size: 0.95em;
      color: #aaa;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-99-wim__hero-title {
        font-size: 2.5em;
      }
      .page-99-wim__section-title {
        font-size: 2em;
      }
      .page-99-wim__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-99-wim__hero-section {
        padding: 10px 15px 40px 15px;
      }
      .page-99-wim__hero-title {
        font-size: 2em;
      }
      .page-99-wim__hero-description {
        font-size: 1.1em;
      }
      .page-99-wim__hero-actions {
        flex-direction: column;
        gap: 15px;
      }
      .page-99-wim__button {
        width: 80%; /* Make buttons wider on mobile */
        margin: 0 auto;
      }
      .page-99-wim__section-title {
        font-size: 1.8em;
      }
      .page-99-wim__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }
      .page-99-wim__category-grid,
      .page-99-wim__promotion-list,
      .page-99-wim__benefits-grid,
      .page-99-wim__payment-grid,
      .page-99-wim__provider-grid {
        grid-template-columns: 1fr; /* Stack items on mobile */
        gap: 20px;
      }
      .page-99-wim__faq-question,
      .page-99-wim__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      .page-99-wim__faq-question h3 {
        font-size: 1em;
      }
      .page-99-wim__faq-answer p {
        font-size: 0.95em;
      }
      .page-99-wim__cta-title {
        font-size: 1.8em;
      }
      .page-99-wim__button--large {
        width: 90%;
      }

      /* List item specific responsive requirements */
      .page-99-wim__category-grid > div,
      .page-99-wim__promotion-list > div,
      .page-99-wim__benefits-grid > div,
      .page-99-wim__payment-grid > a,
      .page-99-wim__provider-grid > a {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-99-wim__category-grid,
      .page-99-wim__promotion-list,
      .page-99-wim__benefits-grid,
      .page-99-wim__payment-grid,
      .page-99-wim__provider-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-99-wim__category-item,
      .page-99-wim__promotion-item,
      .page-99-wim__benefit-item,
      .page-99-wim__payment-item,
      .page-99-wim__provider-item {
        padding-left: 10px;
        padding-right: 10px;
      }
    }

    @media (max-width: 480px) {
      .page-99-wim__hero-title {
        font-size: 1.8em;
      }
      .page-99-wim__hero-description {
        font-size: 1em;
      }
      .page-99-wim__section-title {
        font-size: 1.6em;
      }
      .page-99-wim__cta-title {
        font-size: 1.6em;
      }
      .page-99-wim__floating-buttons {
        padding: 8px 0;
      }
      .page-99-wim__button--register,
      .page-99-wim__button--login {
        font-size: 1em;
        padding: 12px 0;
      }
    }
  