
    :root {
      --page-9win-primary-color: #007bff;
      --page-9win-secondary-color: #6c757d;
      --page-9win-accent-color: #ffc107;
      --page-9win-text-color: #333;
      --page-9win-light-bg: #f8f9fa;
      --page-9win-dark-bg: #343a40;
      --page-9win-white: #ffffff;
      --page-9win-border-color: #dee2e6;
    }

    .page-9win {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-9win-text-color);
      background-color: var(--page-9win-light-bg);
      padding-bottom: 80px; /* Space for the floating button */
    }

    .page-9win__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-9win__hero-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--page-9win-white);
      padding-top: 10px; /* Clear fixed header */
      padding-bottom: 50px;
      min-height: 400px;
      box-sizing: border-box;
    }

    .page-9win__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.7); /* Slightly darken background for text readability */
      max-width: 100%;
      height: auto;
    }

    .page-9win__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
      margin: 20px;
      max-width: 800px;
    }

    .page-9win__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-9win-accent-color);
      line-height: 1.2;
    }

    .page-9win__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-9win-white);
    }

    .page-9win__cta-button {
      display: inline-block;
      background-color: var(--page-9win-accent-color);
      color: var(--page-9win-dark-bg);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-9win__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    .page-9win__section {
      padding: 60px 0;
      background-color: var(--page-9win-white);
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      border-radius: 8px;
    }

    .page-9win__section--dark {
      background-color: var(--page-9win-dark-bg);
      color: var(--page-9win-white);
    }

    .page-9win__section-title {
      font-size: 2.2em;
      color: var(--page-9win-primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-9win__section--dark .page-9win__section-title {
      color: var(--page-9win-accent-color);
    }

    .page-9win__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-9win-accent-color);
      border-radius: 2px;
    }

    .page-9win__text-content {
      font-size: 1.1em;
      line-height: 1.8;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-9win__text-content p {
      margin-bottom: 15px;
    }

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

    .page-9win__game-item {
      background-color: var(--page-9win-light-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-9win__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .page-9win__game-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for image consistency */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--page-9win-dark-bg);
    }

    .page-9win__game-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      max-width: 100%;
    }

    .page-9win__game-item:hover .page-9win__game-image {
      transform: scale(1.05);
    }

    .page-9win__game-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-9win__game-title {
      font-size: 1.5em;
      color: var(--page-9win-primary-color);
      margin-bottom: 10px;
    }

    .page-9win__game-description {
      font-size: 0.95em;
      color: var(--page-9win-secondary-color);
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-9win__game-button {
      background-color: var(--page-9win-primary-color);
      color: var(--page-9win-white);
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 0.9em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      width: fit-content;
      margin: 0 auto;
    }

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

    .page-9win__list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-9win__list-item {
      background-color: var(--page-9win-light-bg);
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      display: flex;
      align-items: flex-start;
      color: var(--page-9win-text-color);
    }

    .page-9win__list-item strong {
      color: var(--page-9win-primary-color);
      margin-right: 10px;
      flex-shrink: 0;
    }

    .page-9win__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-9win-accent-color);
      color: var(--page-9win-dark-bg);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      z-index: 1000;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .page-9win__floating-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-9win__floating-button svg {
      fill: var(--page-9win-dark-bg);
      width: 24px;
      height: 24px;
    }

    .page-9win__faq-section {
      padding: 60px 0;
      background-color: var(--page-9win-white);
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      border-radius: 8px;
    }

    .page-9win__faq-item {
      border: 1px solid var(--page-9win-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      background-color: var(--page-9win-light-bg);
    }

    .page-9win__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-9win-primary-color);
      color: var(--page-9win-white);
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-9win__faq-question:hover {
      background-color: #0056b3;
    }

    .page-9win__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: inherit;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-9win__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from interfering with click */
    }

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

    .page-9win__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.3s ease;
      color: var(--page-9win-text-color);
    }

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

    .page-9win__faq-answer p {
      margin-bottom: 15px;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .page-9win__hero-title {
        font-size: 2.2em;
      }
      .page-9win__hero-subtitle {
        font-size: 1em;
      }
      .page-9win__section-title {
        font-size: 1.8em;
      }
      .page-9win__text-content {
        font-size: 1em;
      }
    }

    @media (max-width: 768px) {
      .page-9win__hero-section {
        min-height: 300px;
        padding-top: 10px; /* Ensure mobile header clear */
      }
      .page-9win__hero-title {
        font-size: 1.8em;
      }
      .page-9win__hero-subtitle {
        font-size: 0.9em;
      }
      .page-9win__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-9win__section {
        padding: 40px 0;
      }
      .page-9win__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
      }
      .page-9win__text-content {
        font-size: 0.95em;
      }
      .page-9win__game-grid {
        grid-template-columns: 1fr;
      }
      .page-9win__game-image-wrapper {
        height: 180px;
      }
      .page-9win__game-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-9win__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-9win__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-9win__faq-question h3 {
        font-size: 1em;
      }
      .page-9win__faq-answer {
        padding: 15px 15px !important; /* Important for mobile padding */
      }
      .page-9win__list-item {
        padding: 12px 15px;
        font-size: 0.95em;
      }
    }

    @media (max-width: 480px) {
      .page-9win__hero-title {
        font-size: 1.5em;
      }
      .page-9win__hero-subtitle {
        font-size: 0.85em;
      }
      .page-9win__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }
      .page-9win__floating-button {
        padding: 10px 18px;
        font-size: 0.9em;
      }
      .page-9win__floating-button svg {
        width: 20px;
        height: 20px;
      }
    }
  