
    :root {
      --page-full88-bg-dark: #000000;
      --page-full88-text-light: #FFFFFF;
      --page-full88-accent-yellow: #FFD700; /* Gold */
      --page-full88-accent-dark-yellow: #DAA520; /* Goldenrod */
    }

    .page-full88 {
      background-color: var(--page-full88-bg-dark);
      color: var(--page-full88-text-light);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
    }

    .page-full88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-full88__header-title {
      color: var(--page-full88-accent-yellow);
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.5em;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-full88__section-title {
      color: var(--page-full88-accent-yellow);
      text-align: center;
      margin: 40px 0 20px;
      font-size: 2em;
      border-bottom: 2px solid var(--page-full88-accent-dark-yellow);
      padding-bottom: 10px;
    }

    .page-full88__text-content {
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-full88__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      overflow: hidden;
      padding-top: 160px; /* Safe area for fixed header */
      padding-bottom: 20px;
      box-sizing: border-box;
      background-color: var(--page-full88-bg-dark);
    }

    .page-full88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
      object-fit: contain; /* Ensure image is not stretched */
    }

    .page-full88__hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 90%;
      max-width: 800px;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
      z-index: 10;
    }

    .page-full88__hero-heading {
      color: var(--page-full88-accent-yellow);
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-full88__hero-description {
      color: var(--page-full88-text-light);
      font-size: 1.2em;
      margin-bottom: 25px;
    }

    .page-full88__button {
      display: inline-block;
      background-color: var(--page-full88-accent-yellow);
      color: var(--page-full88-bg-dark);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .page-full88__button:hover {
      background-color: var(--page-full88-accent-dark-yellow);
      transform: translateY(-2px);
    }

    .page-full88__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-full88-accent-yellow);
      color: var(--page-full88-bg-dark);
      padding: 15px 25px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
      z-index: 1000;
      animation: page-full88__pulse 2s infinite;
      text-decoration: none; /* Ensure it looks like a button */
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-full88__floating-button:hover {
      background-color: var(--page-full88-accent-dark-yellow);
      transform: scale(1.05);
    }

    @keyframes page-full88__pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .page-full88__game-grid,
    .page-full88__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .page-full88__game-card,
    .page-full88__provider-card {
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-full88__game-card:hover,
    .page-full88__provider-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
    }

    .page-full88__game-card-image,
    .page-full88__provider-card-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      min-height: 200px; /* Minimum image size */
    }

    .page-full88__provider-card-image {
        max-height: 150px; /* Specific height for game logos */
        object-fit: contain;
    }

    .page-full88__game-card-title,
    .page-full88__provider-card-title {
      color: var(--page-full88-accent-yellow);
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-full88__list {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .page-full88__list-item {
      background-color: rgba(255, 255, 255, 0.03);
      margin-bottom: 10px;
      padding: 15px;
      border-left: 3px solid var(--page-full88-accent-yellow);
      border-radius: 5px;
      display: flex;
      align-items: center;
    }

    .page-full88__list-item strong {
      color: var(--page-full88-accent-yellow);
      margin-right: 10px;
    }

    .page-full88__app-section {
      text-align: center;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .page-full88__app-image {
      max-width: 300px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
      margin-top: 20px;
    }

    /* FAQ Section */
    .page-full88__faq-section {
      margin-top: 40px;
    }

    .page-full88__faq-item {
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    .page-full88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: rgba(255, 215, 0, 0.1);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-full88__faq-question:hover {
      background-color: rgba(255, 215, 0, 0.2);
    }

    .page-full88__faq-question h3 {
      margin: 0;
      color: var(--page-full88-text-light);
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-full88__faq-toggle {
      font-size: 1.5em;
      color: var(--page-full88-accent-yellow);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

    .page-full88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: var(--page-full88-text-light);
      background-color: rgba(0, 0, 0, 0.6);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-full88__container {
        padding: 15px;
      }

      .page-full88__header-title {
        font-size: 2em;
      }

      .page-full88__section-title {
        font-size: 1.6em;
        margin-top: 30px;
      }

      .page-full88__hero-heading {
        font-size: 2em;
      }

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

      .page-full88__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-full88__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-full88__game-grid,
      .page-full88__provider-grid {
        grid-template-columns: 1fr;
      }

      .page-full88__list-item {
        padding: 10px;
        font-size: 0.95em;
      }

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

      .page-full88__faq-answer {
        padding: 0 10px;
      }

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

      /* Force images to be responsive on mobile */
      .page-full88 img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-full88__hero-image,
      .page-full88__game-card-image,
      .page-full88__provider-card-image,
      .page-full88__app-image {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
          overflow: hidden !important;
      }
    }
  