
    :root {
      --page-ee88__primary-bg: #1a1a2e;
      --page-ee88__secondary-bg: #2c2c4a;
      --page-ee88__text-color: #ffffff;
      --page-ee88__highlight-color: #e94560;
      --page-ee88__secondary-highlight: #00b894;
      --page-ee88__border-color: #4a4a6e;
      --page-ee88__button-hover: #c73a52;
    }

    .page-ee88 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-ee88__text-color);
      background-color: var(--page-ee88__primary-bg);
      overflow-x: hidden;
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-ee88__section-title {
      font-size: 2.5em;
      text-align: center;
      color: var(--page-ee88__text-color);
      margin-bottom: 40px;
      padding-top: 20px;
      position: relative;
    }
    .page-ee88__section-title .page-ee88__highlight {
      color: var(--page-ee88__highlight-color);
    }
    .page-ee88__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--page-ee88__highlight-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-ee88__hero-section {
      background-color: var(--page-ee88__secondary-bg);
      padding: 120px 20px 60px; /* Desktop padding-top to clear fixed header */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-ee88__hero-image-container {
      width: 100%;
      max-width: 800px;
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .page-ee88__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-ee88__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-ee88__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: var(--page-ee88__text-color);
      line-height: 1.2;
    }
    .page-ee88__hero-title .page-ee88__highlight {
      color: var(--page-ee88__highlight-color);
    }

    .page-ee88__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #ccc;
    }
    .page-ee88__hero-description a {
      color: var(--page-ee88__secondary-highlight);
      text-decoration: none;
      font-weight: bold;
    }
    .page-ee88__hero-description a:hover {
      text-decoration: underline;
    }

    .page-ee88__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-ee88__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      white-space: nowrap;
    }

    .page-ee88__button--primary {
      background-color: var(--page-ee88__highlight-color);
      color: var(--page-ee88__text-color);
      border: 2px solid var(--page-ee88__highlight-color);
    }
    .page-ee88__button--primary:hover {
      background-color: var(--page-ee88__button-hover);
      transform: translateY(-3px);
    }

    .page-ee88__button--secondary {
      background-color: transparent;
      color: var(--page-ee88__secondary-highlight);
      border: 2px solid var(--page-ee88__secondary-highlight);
    }
    .page-ee88__button--secondary:hover {
      background-color: var(--page-ee88__secondary-highlight);
      color: var(--page-ee88__primary-bg);
      transform: translateY(-3px);
    }

    .page-ee88__about-section,
    .page-ee88__game-categories-section,
    .page-ee88__promo-section,
    .page-ee88__providers-section,
    .page-ee88__why-choose-section,
    .page-ee88__faq-section,
    .page-ee88__cta-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-ee88__about-content {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      color: #e0e0e0;
    }
    .page-ee88__about-content p {
      margin-bottom: 15px;
    }
    .page-ee88__about-content a {
      color: var(--page-ee88__secondary-highlight);
      text-decoration: none;
      font-weight: bold;
    }
    .page-ee88__about-content a:hover {
      text-decoration: underline;
    }

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

    .page-ee88__game-card,
    .page-ee88__promo-card,
    .page-ee88__feature-item {
      background-color: var(--page-ee88__secondary-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-align: center;
      border: 1px solid var(--page-ee88__border-color);
    }
    .page-ee88__game-card:hover,
    .page-ee88__promo-card:hover,
    .page-ee88__feature-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    .page-ee88__game-card-image,
    .page-ee88__promo-card-image,
    .page-ee88__feature-icon {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      border-bottom: 1px solid var(--page-ee88__border-color);
    }

    .page-ee88__feature-icon {
      height: 120px; /* Smaller height for feature icons */
      width: 120px;
      object-fit: contain; /* Ensure full icon is visible */
      margin: 20px auto 10px;
      border-bottom: none;
    }


    .page-ee88__game-card-title,
    .page-ee88__promo-card-title,
    .page-ee88__feature-title {
      font-size: 1.5em;
      margin: 20px 15px 10px;
      color: var(--page-ee88__text-color);
    }

    .page-ee88__game-card-link {
      text-decoration: none;
      color: var(--page-ee88__text-color);
      transition: color 0.3s ease;
    }
    .page-ee88__game-card-link:hover {
      color: var(--page-ee88__highlight-color);
    }

    .page-ee88__game-card-description,
    .page-ee88__promo-card-description,
    .page-ee88__feature-description {
      font-size: 0.95em;
      color: #b0b0d0;
      padding: 0 15px 20px;
      flex-grow: 1; /* Make descriptions take available space */
    }
    .page-ee88__promo-card .page-ee88__button--small {
      margin: 0 15px 20px;
      padding: 10px 20px;
      font-size: 0.9em;
    }

    .page-ee88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,