
    .page-95wim {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f8f8;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed footer/buttons */
    }

    .page-95wim__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      text-align: center;
    }

    .page-95wim__section--dark {
        background-color: #2a2a2a;
        color: #f0f0f0;
    }
    .page-95wim__section--dark h2, .page-95wim__section--dark h3, .page-95wim__section--dark p, .page-95wim__section--dark .page-95wim__card-description {
        color: #f0f0f0;
    }

    .page-95wim__hero-section {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('[GALLERY:hero:1920x1080:gaming,casino,abstract,95wim]');
      background-size: cover;
      background-position: center;
      color: #fff;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      position: relative;
      padding-top: 10px; /* Minimal padding, assuming body has header offset */
    }

    .page-95wim__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      color: #ffd700; /* Gold-like color for emphasis */
      line-height: 1.2;
    }

    .page-95wim__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-95wim__button {
      display: inline-block;
      background-color: #ff4500; /* OrangeRed */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-95wim__button:hover {
      background-color: #e03e00;
    }

    .page-95wim__button--secondary {
      background-color: #007bff; /* Blue */
      margin-left: 15px;
    }

    .page-95wim__button--secondary:hover {
      background-color: #0056b3;
    }

    .page-95wim__floating-buttons {
        position: fixed;
        bottom: 80px; /* Above the footer placeholder */
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-95wim__floating-button {
        background-color: #ffd700; /* Gold */
        color: #333;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-decoration: none;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }

    .page-95wim__floating-button:hover {
        background-color: #e0b800;
        transform: translateY(-2px);
    }

    .page-95wim__floating-button--register {
        background-color: #ff4500;
        color: #fff;
    }
    .page-95wim__floating-button--register:hover {
        background-color: #e03e00;
    }

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

    .page-95wim__card {
      background-color: #f0f0f0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      padding-bottom: 20px;
    }

    .page-95wim__card:hover {
      transform: translateY(-5px);
    }

    .page-95wim__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 1px solid #ddd;
    }

    .page-95wim__card-content {
      padding: 15px;
    }

    .page-95wim__card-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #333;
    }

    .page-95wim__card-description {
      font-size: 0.95em;
      color: #666;
    }

    .page-95wim__list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 900px;
      text-align: left;
    }

    .page-95wim__list-item {
      background-color: #f9f9f9;
      margin-bottom: 10px;
      padding: 15px;
      border-left: 5px solid #ff4500;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      box-sizing: border-box; /* Crucial for responsive lists */
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-95wim__list-item h3 {
        margin-top: 0;
        margin-bottom: 5px;
        color: #333;
    }

    .page-95wim__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
        align-items: center;
        justify-items: center;
    }

    .page-95wim__logo-item img {
        max-width: 120px;
        height: auto;
        filter: none; /* Removed grayscale as per new requirement */
        opacity: 1;
    }

    .page-95wim__faq-item {
      background-color: #fff;
      border: 1px solid #eee;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-95wim__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f5f5f5;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-95wim__faq-question:hover {
      background-color: #ebebeb;
    }

    .page-95wim__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        pointer-events: none; /* Prevent h3 from blocking click event */
        color: #333;
    }

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

    .page-95wim__faq-item.active .page-95wim__faq-toggle {
      transform: rotate(45deg);
    }

    .page-95wim__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;
      text-align: left;
      color: #555;
    }

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

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-95wim__hero-section {
        padding: 80px 15px;
        min-height: 400px;
      }

      .page-95wim__hero-title {
        font-size: 2em;
      }

      .page-95wim__hero-subtitle {
        font-size: 1.1em;
      }

      .page-95wim__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-95wim__button--secondary {
        margin-left: 10px;
      }

      .page-95wim__floating-buttons {
        bottom: 70px;
        right: 10px;
        gap: 8px;
      }

      .page-95wim__floating-button {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      .page-95wim__section {
        padding: 30px 15px;
      }

      .page-95wim__card-title {
        font-size: 1.2em;
      }

      .page-95wim__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-95wim__list {
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-95wim__card-image {
        height: 180px;
      }

      .page-95wim__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-95wim__logo-item img {
        max-width: 80px;
      }

      .page-95wim__faq-question {
        padding: 12px 15px;
      }

      .page-95wim__faq-question h3 {
          font-size: 1em;
      }

      .page-95wim__faq-answer {
          padding: 15px 15px;
      }

      .page-95wim__faq-item.active .page-95wim__faq-answer {
          padding: 15px 15px !important;
      }

      /* Image responsive for all images */
      .page-95wim img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-95wim__card-image, .page-95wim__logo-item img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }

    }

    @media (max-width: 480px) {
        .page-95wim__hero-title {
            font-size: 1.8em;
        }
        .page-95wim__hero-subtitle {
            font-size: 1em;
        }
        .page-95wim__button {
            display: block;
            width: calc(100% - 40px);
            margin: 10px auto;
        }
        .page-95wim__button--secondary {
            margin-left: auto;
        }
        .page-95wim__floating-buttons {
            bottom: 60px;
            right: 5px;
            gap: 5px;
        }
        .page-95wim__floating-button {
            padding: 7px 12px;
            font-size: 0.85em;
        }
    }
  