
    :root {
      --page-566-wim-primary-color: #e44d26; /* Orange-red */
      --page-566-wim-secondary-color: #333;
      --page-566-wim-accent-color: #f7b731; /* Gold */
      --page-566-wim-background-dark: #1a1a1a;
      --page-566-wim-background-light: #f4f4f4;
      --page-566-wim-text-light: #fff;
      --page-566-wim-text-dark: #333;
      --page-566-wim-border-radius: 8px;
      --page-566-wim-padding-section: 40px 20px;
      --page-566-wim-max-width: 1200px;
    }

    .page-566-wim {
      font-family: 'Arial', sans-serif;
      color: var(--page-566-wim-text-dark);
      background-color: var(--page-566-wim-background-light);
      line-height: 1.6;
      margin: 0 auto; /* Ensures main content is centered if body has max-width */
      max-width: var(--page-566-wim-max-width);
      box-sizing: border-box;
    }

    .page-566-wim__brand-banner {
      background-color: var(--page-566-wim-primary-color);
      color: var(--page-566-wim-text-light);
      text-align: center;
      padding: 15px 10px;
      font-size: 1.8em;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
      z-index: 100;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-566-wim__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      border-radius: 50px;
      overflow: hidden;
    }

    .page-566-wim__floating-buttons a,
    .page-566-wim__floating-buttons button {
      display: block;
      padding: 12px 25px;
      font-size: 1.1em;
      font-weight: bold;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      color: var(--page-566-wim-text-light);
      min-width: 120px;
      text-align: center;
    }

    .page-566-wim__floating-buttons a {
      background-color: var(--page-566-wim-primary-color);
    }

    .page-566-wim__floating-buttons button {
      background-color: var(--page-566-wim-secondary-color);
    }

    .page-566-wim__floating-buttons a:hover,
    .page-566-wim__floating-buttons button:hover {
      transform: translateY(-2px);
      opacity: 0.9;
    }

    .page-566-wim__hero-section {
      position: relative;
      background-color: var(--page-566-wim-background-dark);
      color: var(--page-566-wim-text-light);
      text-align: center;
      padding: 10px 0 60px 0; /* Add top padding as per instruction */
      overflow: hidden;
    }

    .page-566-wim__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 1;
    }

    .page-566-wim__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-566-wim__hero-content h1 {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-566-wim-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-566-wim__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #ccc;
    }

    .page-566-wim__product-display-section {
      padding: var(--page-566-wim-padding-section);
      background-color: var(--page-566-wim-background-light);
      text-align: center;
    }

    .page-566-wim__section-title {
      font-size: 2.2em;
      color: var(--page-566-wim-primary-color);
      margin-bottom: 30px;
      text-align: center;
      font-weight: bold;
    }

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

    .page-566-wim__game-card {
      background-color: var(--page-566-wim-text-light);
      border-radius: var(--page-566-wim-border-radius);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-566-wim__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-566-wim__game-card-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .page-566-wim__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-566-wim__game-card-title {
      font-size: 1.5em;
      color: var(--page-566-wim-secondary-color);
      padding: 15px 10px;
      font-weight: bold;
    }

    .page-566-wim__promotions-section {
      background-color: var(--page-566-wim-background-dark);
      color: var(--page-566-wim-text-light);
      padding: var(--page-566-wim-padding-section);
      text-align: center;
    }

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

    .page-566-wim__promotion-item {
      background-color: #2a2a2a;
      border-radius: var(--page-566-wim-border-radius);
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: left;
      box-sizing: border-box;
    }

    .page-566-wim__promotion-item h3 {
      font-size: 1.8em;
      color: var(--page-566-wim-accent-color);
      margin-bottom: 15px;
    }

    .page-566-wim__promotion-item p {
      font-size: 1em;
      color: #ccc;
      margin-bottom: 20px;
    }

    .page-566-wim__promotion-button {
      display: inline-block;
      background-color: var(--page-566-wim-primary-color);
      color: var(--page-566-wim-text-light);
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer; /* Ensure it looks clickable even without href */
      border: none;
    }

    .page-566-wim__promotion-button:hover {
      background-color: #d14420;
    }

    .page-566-wim__about-section {
      padding: var(--page-566-wim-padding-section);
      background-color: var(--page-566-wim-background-light);
      text-align: center;
    }

    .page-566-wim__about-content {
      max-width: 800px;
      margin: 0 auto 30px auto;
      font-size: 1.1em;
      color: var(--page-566-wim-secondary-color);
    }

    .page-566-wim__features-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: var(--page-566-wim-max-width);
    }

    .page-566-wim__feature-item {
      background-color: var(--page-566-wim-text-light);
      border-radius: var(--page-566-wim-border-radius);
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: left;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-566-wim__feature-item h4 {
      font-size: 1.4em;
      color: var(--page-566-wim-primary-color);
      margin-bottom: 10px;
    }

    .page-566-wim__feature-item p {
      font-size: 0.95em;
      color: var(--page-566-wim-secondary-color);
    }

    .page-566-wim__payment-providers-section {
      padding: var(--page-566-wim-padding-section);
      background-color: var(--page-566-wim-background-dark);
      color: var(--page-566-wim-text-light);
      text-align: center;
    }

    .page-566-wim__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-566-wim__provider-logo-wrapper {
      flex: 0 0 auto;
      width: 150px; /* Adjust size as needed */
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--page-566-wim-text-light);
      border-radius: var(--page-566-wim-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-566-wim__provider-logo {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
    }

    .page-566-wim__faq-section {
      padding: var(--page-566-wim-padding-section);
      background-color: var(--page-566-wim-background-light);
      color: var(--page-566-wim-secondary-color);
    }

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

    .page-566-wim__faq-item {
      background-color: var(--page-566-wim-text-light);
      border: 1px solid #ddd;
      border-radius: var(--page-566-wim-border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-566-wim__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      font-size: 1.2em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      background-color: #f9f9f9;
      color: var(--page-566-wim-secondary-color);
      transition: background-color 0.3s ease;
    }

    .page-566-wim__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-566-wim__faq-question h3 {
      margin: 0;
      color: var(--page-566-wim-primary-color);
      pointer-events: none; /* Prevent h3 from interfering with click event */
    }

    .page-566-wim__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from interfering with click event */
      transition: transform 0.3s ease;
      color: var(--page-566-wim-primary-color);
    }

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

    .page-566-wim__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: var(--page-566-wim-secondary-color);
      font-size: 1em;
    }

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

    .page-566-wim__cta-section {
      background-color: var(--page-566-wim-primary-color);
      color: var(--page-566-wim-text-light);
      padding: 50px 20px;
      text-align: center;
    }

    .page-566-wim__cta-section h2 {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-566-wim-text-light);
    }

    .page-566-wim__cta-section p {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-566-wim__cta-button {
      display: inline-block;
      background-color: var(--page-566-wim-accent-color);
      color: var(--page-566-wim-background-dark);
      padding: 15px 35px;
      border-radius: 50px;
      font-size: 1.3em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border: none;
      cursor: pointer;
    }

    .page-566-wim__cta-button:hover {
      background-color: #e6a72e;
      transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-566-wim__brand-banner {
        font-size: 1.5em;
      }
      .page-566-wim__hero-content h1 {
        font-size: 2em;
      }

      .page-566-wim__hero-content p {
        font-size: 1em;
      }

      .page-566-wim__floating-buttons {
        width: calc(100% - 40px);
        gap: 10px;
        bottom: 15px;
      }

      .page-566-wim__floating-buttons a,
      .page-566-wim__floating-buttons button {
        padding: 10px 15px;
        font-size: 1em;
        min-width: unset;
        flex-grow: 1;
      }

      .page-566-wim__section-title {
        font-size: 1.8em;
      }

      .page-566-wim__game-categories,
      .page-566-wim__promotions-grid,
      .page-566-wim__features-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-566-wim__game-card-image-wrapper {
        height: 180px;
      }

      .page-566-wim__game-card-title {
        font-size: 1.3em;
      }

      .page-566-wim__promotion-item h3 {
        font-size: 1.5em;
      }

      .page-566-wim__about-content {
        font-size: 1em;
      }

      .page-566-wim__feature-item h4 {
        font-size: 1.2em;
      }

      .page-566-wim__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-566-wim__faq-question h3 {
        font-size: 1.1em;
      }

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

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

      .page-566-wim__cta-section h2 {
        font-size: 2em;
      }

      .page-566-wim__cta-section p {
        font-size: 1em;
      }

      .page-566-wim__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-566-wim__provider-logos {
        gap: 20px;
      }

      .page-566-wim__provider-logo-wrapper {
        width: 120px;
        height: 60px;
      }

      /* Mobile list item specific rules */
      .page-566-wim__features-list,
      .page-566-wim__game-categories,
      .page-566-wim__promotions-grid {
        padding: 0;
      }

      .page-566-wim__feature-item,
      .page-566-wim__game-card,
      .page-566-wim__promotion-item {
        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;
      }
    }

    @media (max-width: 480px) {
      .page-566-wim__hero-content h1 {
        font-size: 1.8em;
      }
      .page-566-wim__section-title {
        font-size: 1.6em;
      }
      .page-566-wim__floating-buttons {
        flex-direction: column;
        width: calc(100% - 60px);
        gap: 10px;
        bottom: 10px;
        border-radius: 15px;
      }
      .page-566-wim__floating-buttons a, .page-566-wim__floating-buttons button {
        padding: 12px 20px;
        font-size: 1.1em;
        border-radius: 10px;
      }
      .page-566-wim__cta-section h2 {
        font-size: 1.8em;
      }
    }
  