
    /* CSS Styles for page-789win */
    .page-789win {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    .page-789win__hero-section {
      position: relative;
      width: 100%;
      min-height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 10px 20px 40px; /* Adjusted padding-top for fixed header */
      box-sizing: border-box;
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
      overflow: hidden;
    }

    .page-789win__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.7);
    }

    .page-789win__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      z-index: 1;
      font-weight: bold;
    }

    .page-789win__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: #eee;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .page-789win__promo-button-fixed {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ffcc00;
      color: #2c3e50;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      z-index: 1000;
      white-space: nowrap;
      border: none;
      cursor: pointer;
    }

    .page-789win__promo-button-fixed:hover {
      background-color: #e6b800;
      transform: translateX(-50%) translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-789win__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-789win__section:first-of-type {
        margin-top: 20px; /* Initial margin for content if no hero */
    }

    .page-789win__section-title {
      font-size: 2em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-789win__text-content {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-789win__game-card {
      background-color: #f9f9f9;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-789win__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-789win__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-789win__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-bottom: 3px solid #ffcc00;
      max-width: 100%; /* Important for responsive images */
      height: auto; /* Important for responsive images */
    }

    .page-789win__game-title {
      font-size: 1.4em;
      color: #2c3e50;
      margin: 15px 10px 10px;
      font-weight: bold;
    }

    .page-789win__game-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px;
      margin-bottom: 15px;
    }

    .page-789win__game-button {
      background-color: #007bff;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-789win__game-button:hover {
      background-color: #0056b3;
    }

    .page-789win__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .page-789win__list-item {
      background-color: #e9f5f5;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 5px;
      display: flex;
      align-items: flex-start;
      font-size: 1.05em;
      color: #444;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    }

    .page-789win__list-item::before {
      content: '✓';
      color: #28a745;
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-789win__image-centered-wrapper {
        text-align: center;
        margin: 30px auto;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-789win__image-centered {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: block;
        margin: 0 auto;
    }

    .page-789win__faq-container {
      margin-top: 40px;
    }

    .page-789win__faq-item {
      background-color: #f0f0f0;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .page-789win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #2c3e50;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-789win__faq-question:hover {
      background-color: #34495e;
    }

    .page-789win__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
        text-align: left;
    }

    .page-789win__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-789win__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #fff;
      color: #555;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      font-size: 1em;
      opacity: 0;
    }

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

    .page-789win__call-to-action {
        text-align: center;
        padding: 30px 20px;
        background-color: #e6f7ff;
        border-radius: 8px;
        margin-top: 40px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-789win__call-to-action h2 {
        color: #007bff;
        font-size: 2em;
        margin-bottom: 20px;
    }

    .page-789win__call-to-action p {
        font-size: 1.1em;
        color: #333;
        margin-bottom: 30px;
    }

    .page-789win__cta-button {
        background-color: #ffcc00;
        color: #2c3e50;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.2em;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-789win__cta-button:hover {
        background-color: #e6b800;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-789win__hero-title {
        font-size: 2em;
      }
      .page-789win__hero-subtitle {
        font-size: 1em;
      }
      .page-789win__promo-button-fixed {
        padding: 12px 25px;
        font-size: 1em;
        bottom: 15px;
      }
      .page-789win__section {
        padding: 20px 15px;
        margin-bottom: 15px;
      }
      .page-789win__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-789win__text-content {
        font-size: 1em;
      }
      .page-789win__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-789win__game-title {
        font-size: 1.2em;
      }
      .page-789win__game-description {
        font-size: 0.9em;
      }
      .page-789win__list-item {
        font-size: 0.95em;
        padding: 12px 15px;
      }
      .page-789win__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-789win__faq-question h3 {
          font-size: 1em;
      }
      .page-789win__faq-answer {
        padding: 15px 15px;
        font-size: 0.95em;
      }
      .page-789win__faq-item.active .page-789win__faq-answer {
        padding: 15px 15px !important;
      }
      .page-789win__call-to-action h2 {
          font-size: 1.8em;
      }
      .page-789win__cta-button {
          padding: 12px 25px;
          font-size: 1em;
      }
      .page-789win__game-image-wrapper,
      .page-789win__image-centered-wrapper {
          width: 100%; /* Ensure full width on mobile */
      }
      .page-789win__game-image,
      .page-789win__image-centered {
          max-width: 100% !important; /* Force responsive for all images */
          height: auto !important; /* Force responsive for all images */
      }
    }
  