
    /* General styling for the page */
    .page-78-wij {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      padding-bottom: 20px; /* Ensure space above footer */
    }

    /* Section styling */
    .page-78-wij__hero-section,
    .page-78-wij__about-section,
    .page-78-wij__games-section,
    .page-78-wij__promo-section,
    .page-78-wij__providers-section,
    .page-78-wij__payments-section,
    .page-78-wij__faq-section,
    .page-78-wij__cta-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Specific padding for hero section due to fixed header */
    .page-78-wij__hero-section {
      padding-top: 10px; /* Small decorative top padding, assuming body has offset */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: linear-gradient(135deg, #2a2a4a, #1a1a2e);
      border-radius: 10px;
      margin-top: 20px;
      margin-bottom: 40px;
    }

    .page-78-wij__hero-content {
      margin-bottom: 30px;
    }

    .page-78-wij__hero-title {
      font-size: 2.8em;
      color: #ffcc00; /* Gold accent */
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-78-wij__hero-subtitle {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-78-wij__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .page-78-wij__hero-button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 150px;
      text-align: center;
    }

    .page-78-wij__button-primary {
      background-color: #ff4d4d; /* Red accent */
      color: #ffffff;
      border: 2px solid #ff4d4d;
    }

    .page-78-wij__button-primary:hover {
      background-color: #e60000;
      transform: translateY(-2px);
    }

    .page-78-wij__button-secondary {
      background-color: transparent;
      color: #ffcc00;
      border: 2px solid #ffcc00;
    }

    .page-78-wij__button-secondary:hover {
      background-color: #ffcc00;
      color: #1a1a2e;
      transform: translateY(-2px);
    }

    .page-78-wij__hero-image-wrapper {
      width: 100%;
      max-width: 800px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

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

    /* General Titles & Descriptions */
    .page-78-wij__section-title {
      font-size: 2.2em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

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

    .page-78-wij__keyword-highlight {
      color: #ff4d4d; /* Red accent for keywords */
      font-weight: bold;
    }

    /* Feature Grid */
    .page-78-wij__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-78-wij__feature-item {
      background-color: #2a2a4a;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .page-78-wij__feature-item:hover {
      transform: translateY(-5px);
      background-color: #3a3a5a;
    }

    .page-78-wij__feature-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-78-wij__feature-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-78-wij__feature-text {
      color: #c0c0c0;
      font-size: 1em;
    }

    /* Game Categories */
    .page-78-wij__games-section {
      background-color: #1a1a2e;
      padding: 60px 20px;
    }

    .page-78-wij__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-78-wij__game-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-78-wij__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .page-78-wij__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-78-wij__game-title {
      font-size: 1.6em;
      color: #ffcc00;
      padding: 15px 10px 5px;
    }

    .page-78-wij__game-description {
      color: #c0c0c0;
      padding: 0 15px 20px;
      font-size: 0.95em;
    }

    /* Promotion Section */
    .page-78-wij__promo-section {
      background-color: #1a1a2e;
      padding: 60px 20px;
    }

    .page-78-wij__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-78-wij__promo-card {
      background-color: #2a2a4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-78-wij__promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .page-78-wij__promo-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-78-wij__promo-title {
      font-size: 1.6em;
      color: #ffcc00;
      padding: 15px 10px 5px;
    }

    .page-78-wij__promo-text {
      color: #c0c0c0;
      padding: 0 15px 20px;
      font-size: 0.95em;
    }

    /* Providers Section */
    .page-78-wij__providers-section {
      background-color: #22223b;
      padding: 60px 20px;
    }

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

    .page-78-wij__provider-item {
      background-color: #333355;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      width: 100%; /* Ensure full width in grid item */
      box-sizing: border-box; /* Crucial for width calculation */
    }

    .page-78-wij__provider-item:hover {
      transform: translateY(-5px);
    }

    .page-78-wij__provider-item a {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .page-78-wij__provider-logo {
      width: 100px;
      height: 100px;
      object-fit: contain;
      margin: 0 auto 10px;
      display: block;
      max-width: 100%;
    }

    .page-78-wij__provider-name {
      color: #e0e0e0;
      font-weight: bold;
      font-size: 1em;
    }

    /* Payments Section */
    .page-78-wij__payments-section {
      background-color: #1a1a2e;
      padding: 60px 20px;
    }

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

    .page-78-wij__payment-item {
      background-color: #2a2a4a;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      width: 100%;
      box-sizing: border-box;
    }

    .page-78-wij__payment-item:hover {
      transform: translateY(-5px);
    }

    .page-78-wij__payment-item a {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .page-78-wij__payment-logo {
      width: 120px;
      height: 60px;
      object-fit: contain;
      margin: 0 auto 10px;
      display: block;
      max-width: 100%;
    }

    .page-78-wij__payment-name {
      color: #e0e0e0;
      font-weight: bold;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-78-wij__faq-section {
      background-color: #22223b;
      padding: 60px 20px;
    }

    .page-78-wij__faq-container {
      max-width: 800px;
      margin: 40px auto 0;
    }

    .page-78-wij__faq-item {
      background-color: #2a2a4a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .page-78-wij__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3a3a5a;
      color: #ffcc00;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-78-wij__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-78-wij__faq-q-text {
      margin: 0;
      color: #ffcc00;
      pointer-events: none; /* Crucial for click event on parent */
    }

    .page-78-wij__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Crucial for click event on parent */
      transition: transform 0.3s ease;
    }

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

    .page-78-wij__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #2a2a4a;
      color: #c0c0c0;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-78-wij__faq-answer p {
      margin: 0;
    }

    /* Call to Action Section */
    .page-78-wij__cta-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #1a1a2e, #2a2a4a);
      border-radius: 10px;
      margin-top: 40px;
      margin-bottom: 20px;
    }

    .page-78-wij__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 40px;
    }

    .page-78-wij__cta-button {
      display: inline-block;
      padding: 15px 35px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      min-width: 180px;
      text-align: center;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-78-wij__hero-title {
        font-size: 2em;
      }

      .page-78-wij__hero-subtitle {
        font-size: 1em;
      }

      .page-78-wij__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-78-wij__hero-button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 12px 25px;
      }

      .page-78-wij__section-title {
        font-size: 1.8em;
      }

      .page-78-wij__section-description {
        font-size: 0.95em;
      }

      /* List item responsive requirements */
      .page-78-wij__features-grid,
      .page-78-wij__game-categories,
      .page-78-wij__promo-grid,
      .page-78-wij__providers-grid,
      .page-78-wij__payments-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
      }

      .page-78-wij__feature-item,
      .page-78-wij__game-card,
      .page-78-wij__promo-card,
      .page-78-wij__provider-item,
      .page-78-wij__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-78-wij__game-image,
      .page-78-wij__promo-image,
      .page-78-wij__feature-icon,
      .page-78-wij__provider-logo,
      .page-78-wij__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .page-78-wij__game-image {
        height: 180px; /* Adjust height for smaller screens */
      }

      .page-78-wij__promo-image {
        height: 200px; /* Adjust height for smaller screens */
      }

      .page-78-wij__feature-icon {
        width: 80px;
        height: 80px;
      }

      .page-78-wij__provider-logo,
      .page-78-wij__payment-logo {
        width: 80px;
        height: 40px;
      }

      .page-78-wij__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-78-wij__faq-answer {
        padding: 15px 20px !important;
      }

      .page-78-wij__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-78-wij__cta-button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 12px 25px;
      }
    }

    @media (max-width: 480px) {
      .page-78-wij__hero-title {
        font-size: 1.6em;
      }
      .page-78-wij__section-title {
        font-size: 1.5em;
      }
      .page-78-wij__hero-section,
      .page-78-wij__about-section,
      .page-78-wij__games-section,
      .page-78-wij__promo-section,
      .page-78-wij__providers-section,
      .page-78-wij__payments-section,
      .page-78-wij__faq-section,
      .page-78-wij__cta-section {
        padding: 30px 15px;
      }
      .page-78-wij__faq-question {
        padding: 12px 15px;
      }
      .page-78-wij__faq-answer {
        padding: 12px 15px !important;
      }
    }

    /* Ensure text wrapping for all list items and content */
    .page-78-wij__feature-text,
    .page-78-wij__game-description,
    .page-78-wij__promo-text,
    .page-78-wij__provider-name,
    .page-78-wij__payment-name,
    .page-78-wij__faq-answer p {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }
  