
    .page-76win {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
    }

    .page-76win__header-banner {
      position: relative;
      width: 100%;
      text-align: center;
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      padding: 10px 0;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      z-index: 10;
      padding-top: 10px; /* Adjust for fixed header */
    }

    .page-76win__header-banner h1 {
      margin: 0;
      font-size: 2.2em;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: #ffcc00;
    }

    .page-76win__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-76win__floating-button {
      background-color: #ffcc00;
      color: #000;
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
      display: block;
      white-space: nowrap;
    }

    .page-76win__floating-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-76win__hero-section {
      text-align: center;
      padding: 40px 20px;
      background: url('[GALLERY:hero:1920x1080:gaming,abstract,light]') no-repeat center center/cover;
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
    }

    .page-76win__hero-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .page-76win__hero-content h2 {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-76win__hero-content p {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }

    .page-76win__promo-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-76win__promo-button:hover {
      background-color: #0056b3;
    }

    .page-76win__section {
      padding: 50px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-76win__section h2 {
      font-size: 2.5em;
      color: #0056b3;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-76win__section h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

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

    .page-76win__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-76win__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-76win__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-76win__game-card-content {
      padding: 20px;
    }

    .page-76win__game-card-content h3 {
      font-size: 1.5em;
      margin-top: 0;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-76win__game-card-content p {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-76win__game-card-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #000;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-76win__game-card-button:hover {
      background-color: #e6b800;
    }

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

    .page-76win__promo-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      padding: 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-76win__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .page-76win__promo-card h3 {
      font-size: 1.8em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-76win__promo-card p {
      font-size: 1em;
      color: #555;
      margin-bottom: 25px;
    }

    .page-76win__promo-card-button {
      display: inline-block;
      background-color: #007bff;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-76win__promo-card-button:hover {
      background-color: #0056b3;
    }

    .page-76win__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-76win__payment-item {
      background-color: #fff;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      font-weight: bold;
      color: #333;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-76win__payment-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .page-76win__payment-icon {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .page-76win__faq-section {
      background-color: #fff;
      padding: 50px 20px;
      max-width: 900px;
      margin: 40px auto;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .page-76win__faq-section h2 {
      text-align: center;
      font-size: 2.5em;
      color: #0056b3;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-76win__faq-section h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    .page-76win__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-76win__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-76win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      cursor: pointer;
      user-select: none;
      background-color: #f9f9f9;
      border-radius: 5px;
      margin-bottom: 5px;
      transition: background-color 0.3s ease;
    }

    .page-76win__faq-question:hover {
      background-color: #f0f0f0;
    }

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

    .page-76win__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-76win__faq-item.active .page-76win__faq-toggle {
      transform: rotate(45deg);
      color: #ffcc00;
    }

    .page-76win__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: #666;
      font-size: 0.95em;
      text-align: left;
    }

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

    .page-76win__game-provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      padding: 20px;
      background-color: #e9ecef;
      border-radius: 10px;
    }

    .page-76win__provider-logo {
      width: 100px;
      height: 60px;
      object-fit: contain;
      filter: grayscale(80%);
      transition: filter 0.3s ease;
    }

    .page-76win__provider-logo:hover {
      filter: grayscale(0%);
    }

    @media (max-width: 768px) {
      .page-76win__header-banner h1 {
        font-size: 1.8em;
      }

      .page-76win__hero-content h2 {
        font-size: 2em;
      }

      .page-76win__hero-content p {
        font-size: 1em;
      }

      .page-76win__promo-button,
      .page-76win__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-76win__section {
        padding: 30px 15px;
      }

      .page-76win__section h2 {
        font-size: 2em;
      }

      .page-76win__game-grid,
      .page-76win__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-76win__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
      }

      .page-76win__payment-methods {
        gap: 10px;
      }

      .page-76win__payment-item {
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-76win__faq-section {
        padding: 30px 15px;
        margin: 20px auto;
      }

      .page-76win__faq-question {
        padding: 12px;
      }

      .page-76win__faq-question h3 {
        font-size: 1.1em;
      }

      .page-76win__faq-toggle {
        font-size: 1.5em;
      }

      .page-76win__faq-answer {
        padding: 15px 15px !important;
      }

      /* List item responsive adjustments */
      .page-76win__game-grid > div,
      .page-76win__promo-grid > div {
        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;
      }

      .page-76win__game-grid,
      .page-76win__promo-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-76win__game-card-content p,
      .page-76win__promo-card p,
      .page-76win__faq-answer {
        word-break: break-word !important;
      }

      .page-76win__game-provider-logos {
        gap: 15px;
        padding: 15px;
      }

      .page-76win__provider-logo {
        width: 80px;
        height: 50px;
      }
    }

    @media (max-width: 480px) {
      .page-76win__hero-content h2 {
        font-size: 1.8em;
      }

      .page-76win__section h2 {
        font-size: 1.8em;
      }

      .page-76win__floating-buttons {
        bottom: 10px;
        right: 10px;
      }

      .page-76win__floating-button {
        padding: 8px 18px;
        font-size: 0.9em;
      }
    }
  