
    :root {
      --page-98win81__primary-color: #e02f2f;
      --page-98win81__secondary-color: #f7b731;
      --page-98win81__text-color: #333;
      --page-98win81__background-color: #f5f5f5;
      --page-98win81__light-gray: #eee;
      --page-98win81__dark-gray: #555;
    }

    .page-98win81 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-98win81__text-color);
      background-color: var(--page-98win81__background-color);
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-98win81__section {
      padding: 20px 15px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-98win81__hero-section {
      text-align: center;
      padding: 10px 0 20px; /* Added padding-top for fixed header */
      background-color: var(--page-98win81__dark-gray);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .page-98win81__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin-bottom: 20px;
      object-fit: cover;
      filter: brightness(0.7); /* Allowed for darkening, not color change */
    }

    .page-98win81__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 800px;
      z-index: 1;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-98win81__hero-title {
      font-size: 2.2em;
      margin-bottom: 10px;
      color: var(--page-98win81__secondary-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-98win81__hero-description {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #fff;
    }

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

    .page-98win81__button:hover {
      background-color: #c02a2a;
    }

    .page-98win81__floating-button {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: var(--page-98win81__primary-color);
      color: #fff;
      padding: 15px 0;
      text-align: center;
      font-size: 1.2em;
      font-weight: bold;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
      transform: translateY(100%);
      animation: page-98win81__slide-up 0.5s forwards 1s;
      display: none; /* Hidden by default, shown on mobile */
    }
    
    .page-98win81__floating-button a {
      color: #fff;
      text-decoration: none;
      display: block;
      width: 100%;
    }

    @keyframes page-98win81__slide-up {
      to {
        transform: translateY(0);
      }
    }

    .page-98win81__section-title {
      font-size: 1.8em;
      color: var(--page-98win81__primary-color);
      text-align: center;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-98win81__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }

    .page-98win81__game-card {
      background-color: var(--page-98win81__light-gray);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 10px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-98win81__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-98win81__game-card-image {
      width: 100%;
      height: 120px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-98win81__game-card-title {
      font-size: 1.1em;
      color: var(--page-98win81__text-color);
      margin: 10px 5px 5px;
      font-weight: bold;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-98win81__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-98win81__list-item {
      background-color: var(--page-98win81__light-gray);
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      box-shadow: 0 1px 2px rgba(0,0,0,0.05);
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-98win81__list-icon {
      color: var(--page-98win81__primary-color);
      font-size: 1.5em;
      margin-right: 15px;
    }

    .page-98win81__faq-item {
      background-color: var(--page-98win81__light-gray);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-98win81__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #fff;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid var(--page-98win81__light-gray);
      transition: background-color 0.3s ease;
    }

    .page-98win81__faq-question:hover {
      background-color: var(--page-98win81__background-color);
    }

    .page-98win81__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-98win81__text-color);
      pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-98win81__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-98win81__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from intercepting click */
    }

    .page-98win81__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(--page-98win81__dark-gray);
    }

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

    .page-98win81__faq-item.active .page-98win81__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

    .page-98win81__text-center {
      text-align: center;
    }

    .page-98win81__image-full-width {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px;
      border-radius: 8px;
    }
    
    .page-98win81__keyword-list {
        list-style: disc;
        padding-left: 20px;
        margin-top: 15px;
        color: var(--page-98win81__dark-gray);
    }

    .page-98win81__keyword-list li {
        margin-bottom: 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    @media (max-width: 768px) {
      .page-98win81__hero-title {
        font-size: 1.8em;
      }

      .page-98win81__hero-description {
        font-size: 1em;
      }

      .page-98win81__section {
        padding: 15px 10px;
      }

      .page-98win81__section-title {
        font-size: 1.5em;
      }

      .page-98win81__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-98win81__game-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-98win81__game-card-image {
        height: 100px;
      }
      
      .page-98win81__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-98win81__faq-question h3 {
        font-size: 1em;
      }

      .page-98win81__faq-answer {
        padding: 15px 10px;
      }

      .page-98win81__faq-item.active .page-98win81__faq-answer {
        padding: 15px 10px !important;
      }

      .page-98win81__image-full-width {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-98win81__floating-button {
        display: block; /* Show floating button on mobile */
      }
    }

    @media (min-width: 769px) {
      .page-98win81__floating-button {
        display: none; /* Hide floating button on desktop */
      }
      .page-98win81__hero-content {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        padding: 40px;
        background-color: transparent;
      }
      .page-98win81__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
      }
      .page-98win81__hero-section {
        padding-top: 10px; /* Adjust for fixed header on desktop */
      }
      .page-98win81__section {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        padding: 30px;
      }
      .page-98win81__game-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .page-98win81__game-card-image {
        height: 150px;
      }
    }
  