
    :root {
      --page-88app8--bg-color: #000000;
      --page-88app8--text-color: #FFFFFF;
      --page-88app8--accent-color: #FFD700; /* Gold/Yellow */
      --page-88app8--dark-gray: #1a1a1a;
      --page-88app8--light-gray: #cccccc;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-88app8--text-color);
      background-color: var(--page-88app8--bg-color);
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .page-88app8 {
      background-color: var(--page-88app8--bg-color);
      color: var(--page-88app8--text-color);
      padding-top: 120px; /* Adjust for fixed header */
    }

    @media (max-width: 768px) {
      .page-88app8 {
        padding-top: 100px; /* Adjust for fixed header on mobile */
      }
    }

    .page-88app8__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      text-align: center;
    }

    .page-88app8__section--dark {
      background-color: var(--page-88app8--dark-gray);
    }

    .page-88app8__section-title {
      font-size: 2.5em;
      color: var(--page-88app8--accent-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-88app8__section-subtitle {
      font-size: 1.2em;
      color: var(--page-88app8--light-gray);
      margin-bottom: 40px;
    }

    .page-88app8__hero-section {
      position: relative;
      overflow: hidden;
      background-color: var(--page-88app8--dark-gray);
      padding: 0; /* Hero image will handle visual height */
      margin: 0 auto;
      max-width: 100%;
      text-align: center;
    }

    .page-88app8__hero-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto;
    }

    .page-88app8__hero-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
    }

    @media (max-width: 768px) {
      .page-88app8__hero-image {
        max-width: 100% !important; /* Force responsiveness */
        height: auto !important;
      }
      .page-88app8__hero-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    .page-88app8__hero-content {
      position: relative; /* Ensure content is above image if needed, though prompt says text below */
      padding: 40px 20px;
      text-align: center;
      background-color: var(--page-88app8--bg-color); /* Separate background for text */
      z-index: 10;
    }

    .page-88app8__hero-title {
      font-size: 3em;
      color: var(--page-88app8--accent-color);
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-88app8__hero-description {
      font-size: 1.3em;
      color: var(--page-88app8--text-color);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-88app8__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-88app8__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: page-88app8__pulse 1.5s infinite;
    }

    @keyframes page-88app8__pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
      }
      70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
      }
    }

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

    .page-88app8__game-card {
      background-color: var(--page-88app8--dark-gray);
      border-radius: 15px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .page-88app8__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-88app8__game-card-image-container {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-88app8__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
    }

    @media (max-width: 768px) {
      .page-88app8__game-card-image {
        max-width: 100% !important; /* Force responsiveness */
        height: auto !important;
      }
      .page-88app8__game-card-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

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

    .page-88app8__game-card-title {
      font-size: 1.5em;
      color: var(--page-88app8--accent-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-88app8__game-card-link {
      color: var(--page-88app8--accent-color);
      text-decoration: none;
      font-weight: bold;
    }

    .page-88app8__game-card-link:hover {
      text-decoration: underline;
    }

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

    .page-88app8__provider-item {
      background-color: var(--page-88app8--dark-gray);
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100px;
    }

    .page-88app8__provider-item:hover {
      transform: scale(1.05);
    }

    .page-88app8__provider-logo-container {
      width: 100%;
      height: 100%;
      max-width: 150px; /* Limit logo size */
      max-height: 80px;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-88app8__provider-logo {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    @media (max-width: 768px) {
      .page-88app8__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-88app8__provider-logo-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    .page-88app8__benefits-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      text-align: left;
    }

    .page-88app8__benefits-item {
      background-color: var(--page-88app8--dark-gray);
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-88app8__benefits-item:hover {
      transform: translateY(-5px);
    }

    .page-88app8__benefits-item h3 {
      color: var(--page-88app8--accent-color);
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-88app8__benefits-item p {
      color: var(--page-88app8--light-gray);
      font-size: 1.1em;
    }

    .page-88app8__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-88app8__faq-item {
      background-color: var(--page-88app8--dark-gray);
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-88app8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #2a2a2a;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-88app8__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-88app8__faq-question h3 {
      color: var(--page-88app8--accent-color);
      font-size: 1.3em;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-88app8__faq-toggle {
      font-size: 1.8em;
      color: var(--page-88app8--accent-color);
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

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

    .page-88app8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-88app8--light-gray);
      font-size: 1.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-88app8__faq-item.active .page-88app8__faq-answer {
      max-height: 2000px !important; /* Use !important and large value for content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    @media (max-width: 768px) {
      .page-88app8__section-title {
        font-size: 2em;
      }
      .page-88app8__hero-title {
        font-size: 2.2em;
      }
      .page-88app8__hero-description {
        font-size: 1.1em;
      }
      .page-88app8__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-88app8__game-grid {
        grid-template-columns: 1fr;
      }
      .page-88app8__provider-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .page-88app8__benefits-list {
        grid-template-columns: 1fr;
      }
      .page-88app8__faq-question {
        padding: 15px 20px;
      }
      .page-88app8__faq-question h3 {
        font-size: 1.1em;
      }
      .page-88app8__faq-answer {
        padding: 0 20px;
      }
      .page-88app8__faq-item.active .page-88app8__faq-answer {
        padding: 15px 20px !important;
      }
    }
  