
    :root {
      --primary-color: #e44d26; /* A vibrant orange/red for betting theme */
      --secondary-color: #333;
      --accent-color: #f7b731; /* Gold/yellow for highlights */
      --text-light: #f0f0f0;
      --text-dark: #333;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --border-color: #555;
      --button-hover-bg: #ff6a00;
      --header-offset: 122px; /* Fallback value, will be overridden by shared.css */
    }

    /* Base styles for the page content, ensuring it respects the header offset */
    .page-333-wim {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Fallback for body padding if shared.css doesn't set it */
    .page-333-wim.page-content {
      padding-top: var(--header-offset, 122px);
    }

    .page-333-wim__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-333-wim__section--dark {
      background-color: var(--background-light);
    }

    .page-333-wim__heading {
      color: var(--accent-color);
      margin-bottom: 20px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-333-wim__subheading {
      color: var(--primary-color);
      margin-bottom: 15px;
      font-size: 1.8em;
    }

    .page-333-wim__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--text-light);
    }

    .page-333-wim__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: white;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-333-wim__button:hover {
      background-color: var(--button-hover-bg);
    }

    /* Hero Section */
    .page-333-wim__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      padding: 10px 20px 40px; /* Small top padding, body padding handles offset */
      background-color: var(--background-dark);
      text-align: center;
    }

    .page-333-wim__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-333-wim__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-333-wim__hero-title {
      font-size: 3em;
      color: var(--accent-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-333-wim__hero-description {
      font-size: 1.3em;
      color: var(--text-light);
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Product Display */
    .page-333-wim__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      justify-items: center; /* Center items in the grid */
    }

    .page-333-wim__product-card {
      background-color: var(--background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 350px; /* Limit card width */
      box-sizing: border-box;
    }

    .page-333-wim__product-card:hover {
      transform: translateY(-5px);
    }

    .page-333-wim__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-333-wim__product-info {
      padding: 20px;
    }

    .page-333-wim__product-title {
      font-size: 1.4em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-333-wim__product-description {
      font-size: 0.95em;
      color: var(--text-light);
      margin-bottom: 15px;
    }

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

    .page-333-wim__floating-button {
      background-color: var(--primary-color);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 15px 25px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      text-decoration: none; /* For the <a> tag */
    }

    .page-333-wim__floating-button:hover {
      background-color: var(--button-hover-bg);
      transform: translateY(-3px);
    }

    /* Game Providers & Payment Methods */
    .page-333-wim__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
    }

    .page-333-wim__logo-item {
      background-color: #3a3a3a;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Uniform height for logos */
      box-sizing: border-box;
    }

    .page-333-wim__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-333-wim__logo-image {
      max-width: 100%;
      max-height: 50px; /* Adjust based on desired logo size */
      object-fit: contain;
      display: block;
    }

    /* FAQ Section */
    .page-333-wim__faq-section {
      background-color: var(--background-dark);
      padding: 60px 20px;
      max-width: 900px;
      margin: 40px auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
      box-sizing: border-box;
    }

    .page-333-wim__faq-heading {
      font-size: 2.2em;
      color: var(--accent-color);
      text-align: center;
      margin-bottom: 40px;
    }

    .page-333-wim__faq-item {
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 15px;
    }

    .page-333-wim__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

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

    .page-333-wim__faq-question:hover {
      color: var(--primary-color);
    }

    .page-333-wim__faq-question h3 {
      margin: 0;
      font-size: 1.1em; /* Keep consistent with parent font-size */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-333-wim__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-333-wim__faq-item.active .page-333-wim__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or similar */
    }

    .page-333-wim__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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(--text-light);
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-333-wim__hero-title {
        font-size: 2.2em;
      }

      .page-333-wim__hero-description {
        font-size: 1em;
      }

      .page-333-wim__heading {
        font-size: 2em;
      }

      .page-333-wim__subheading {
        font-size: 1.5em;
      }

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

      .page-333-wim__product-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
      }

      .page-333-wim__product-card {
        max-width: 100%; /* Ensure cards take full width */
      }

      .page-333-wim__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }

      .page-333-wim__floating-button {
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-333-wim__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
      }

      .page-333-wim__faq-section {
        padding: 30px 15px;
        margin: 20px auto;
      }

      .page-333-wim__faq-heading {
        font-size: 1.8em;
        margin-bottom: 25px;
      }

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

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

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

      /* Responsive image optimization */
      .page-333-wim img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-333-wim__product-card img,
      .page-333-wim__logo-item img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* List item responsive requirements */
      .page-333-wim ul,
      .page-333-wim ol {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Adjust if specific list padding is needed */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-333-wim ul li,
      .page-333-wim ol li {
        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-333-wim__hero-title {
        font-size: 1.8em;
      }

      .page-333-wim__hero-description {
        font-size: 0.9em;
      }

      .page-333-wim__floating-buttons {
        flex-direction: row;
        width: calc(100% - 30px);
        justify-content: center;
        bottom: 10px;
        left: 15px;
        right: 15px;
      }

      .page-333-wim__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }
  