
    .page-88e {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll from fixed buttons */
    }

    /* Fixed header offset handling */
    .page-88e__hero-section {
        padding-top: 10px; /* Small decorative padding, relying on body padding for main offset */
    }

    /* General Container */
    .page-88e__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Section Styling */
    .page-88e__section-title {
      font-size: 2.5em;
      color: #004d40; /* Dark teal for headings */
      text-align: center;
      margin-bottom: 30px;
      padding-top: 20px;
      font-weight: bold;
    }

    .page-88e__description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      color: #555;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Buttons */
    .page-88e__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      text-align: center;
    }

    .page-88e__button--primary {
      background-color: #00796b; /* Teal */
      color: #fff;
    }

    .page-88e__button--primary:hover {
      background-color: #004d40; /* Darker teal */
      transform: translateY(-2px);
    }

    .page-88e__button--secondary {
      background-color: #e0f2f1; /* Light teal */
      color: #00796b; /* Teal */
      border: 2px solid #00796b;
    }

    .page-88e__button--secondary:hover {
      background-color: #b2dfdb; /* Lighter teal */
      color: #004d40;
      transform: translateY(-2px);
    }

    .page-88e__center-button {
        text-align: center;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    /* Hero Section */
    .page-88e__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background-color: #004d40; /* Fallback background */
    }

    .page-88e__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-88e__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
      z-index: 2;
    }

    .page-88e__hero-content {
      position: relative;
      z-index: 3;
      color: #fff;
      padding: 20px;
    }

    .page-88e__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #fff; /* Ensure high contrast */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-88e__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0f2f1; /* Lighter color for subtitle */
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

    /* About Section */
    .page-88e__about-section {
      background-color: #fff;
      padding: 60px 0;
    }

    .page-88e__about-image {
        width: 100%;
        max-width: 800px;
        height: auto;
        display: block;
        margin: 30px auto 0 auto;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        box-sizing: border-box; /* Responsive image container */
    }

    /* Games Section */
    .page-88e__games-section {
      background-color: #f0f8f7;
      padding: 60px 0;
    }

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

    .page-88e__game-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Ensure padding/border doesn't overflow */
    }

    .page-88e__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-88e__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box; /* Responsive image container */
    }

    .page-88e__game-title {
      font-size: 1.5em;
      color: #004d40;
      margin: 15px 10px 10px 10px;
    }

    .page-88e__game-text {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 20px 15px;
    }

    /* Promotions Section */
    .page-88e__promotions-section {
      background-color: #fff;
      padding: 60px 0;
    }

    .page-88e__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-88e__promo-item {
      background-color: #e0f2f1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Ensure padding/border doesn't overflow */
    }

    .page-88e__promo-item:hover {
      transform: translateY(-3px);
    }

    .page-88e__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box; /* Responsive image container */
    }

    .page-88e__promo-title {
      font-size: 1.3em;
      color: #004d40;
      margin: 15px 15px 10px 15px;
    }

    .page-88e__promo-text {
      font-size: 0.9em;
      color: #555;
      padding: 0 15px 20px 15px;
    }

    /* Why Choose Section */
    .page-88e__why-choose-section {
      background-color: #f0f8f7;
      padding: 60px 0;
    }

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

    .page-88e__feature-item {
      background-color: #fff;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Ensure padding/border doesn't overflow */
    }

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

    .page-88e__feature-image {
      width: 100%; /* Make sure it's responsive */
      max-width: 150px; /* Adjust size for feature image */
      height: auto;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box; /* Responsive image container */
    }

    .page-88e__feature-title {
      font-size: 1.4em;
      color: #004d40;
      margin-bottom: 10px;
    }

    .page-88e__feature-text {
      font-size: 0.95em;
      color: #666;
    }

    /* FAQ Section */
    .page-88e__faq-section {
      background-color: #fff;
      padding: 60px 0;
    }

    .page-88e__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-88e__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: #00796b; /* Teal background for question */
      color: #fff;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-88e__faq-question:hover {
      background-color: #004d40; /* Darker teal on hover */
    }

    .page-88e__faq-q-text {
        margin: 0; /* Remove default margin from h3 */
        color: #fff; /* Ensure contrast */
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-88e__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click on parent */
    }

    .page-88e__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding, will change on active */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #e0f2f1; /* Light background for answer */
      color: #333;
    }

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

    .page-88e__faq-item.active .page-88e__faq-toggle {
      transform: rotate(45deg); /* Plus sign becomes cross */
    }

    .page-88e__faq-answer p {
      margin: 0;
      padding-bottom: 10px; /* Add some spacing below paragraph in answer */
    }

    /* Call to Action Section */
    .page-88e__cta-section {
      background-color: #004d40; /* Dark teal background */
      color: #fff;
      padding: 80px 0;
      text-align: center;
    }

    .page-88e__cta-section .page-88e__section-title {
      color: #fff;
    }

    .page-88e__cta-section .page-88e__description {
      color: #e0f2f1;
      margin-bottom: 30px;
    }

    /* Floating Buttons */
    .page-88e__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-88e__float-button {
      display: block;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .page-88e__float-button--register {
      background-color: #ff9800; /* Orange for register */
      color: #fff;
    }

    .page-88e__float-button--register:hover {
      background-color: #f57c00;
      transform: scale(1.05);
    }

    .page-88e__float-button--login {
      background-color: #4caf50; /* Green for login */
      color: #fff;
    }

    .page-88e__float-button--login:hover {
      background-color: #388e3c;
      transform: scale(1.05);
    }

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

      .page-88e__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-88e__description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-88e__hero-section {
        height: 50vh;
        min-height: 300px;
      }

      .page-88e__hero-title {
        font-size: 2.5em;
      }

      .page-88e__hero-subtitle {
        font-size: 1.2em;
      }

      .page-88e__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-88e__button {
        width: 80%;
        margin: 0 auto;
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-88e__game-grid,
      .page-88e__promo-list,
      .page-88e__feature-grid {
        grid-template-columns: 1fr;
      }

      .page-88e__game-card,
      .page-88e__promo-item,
      .page-88e__feature-item {
        padding: 20px;
      }

      .page-88e__game-image,
      .page-88e__promo-image,
      .page-88e__about-image,
      .page-88e__feature-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-88e__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }

      .page-88e__faq-answer {
        padding: 0 15px;
      }

      .page-88e__faq-item.active .page-88e__faq-answer {
        padding: 15px 15px !important;
      }

      /* List item specific responsive rules */
      .page-88e__game-grid > *,
      .page-88e__promo-list > *,
      .page-88e__feature-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-88e__game-grid,
      .page-88e__promo-list,
      .page-88e__feature-grid,
      .page-88e__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-88e__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-88e__float-button {
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-88e__hero-title {
        font-size: 2em;
      }

      .page-88e__hero-subtitle {
        font-size: 1em;
      }

      .page-88e__hero-buttons {
        gap: 10px;
      }

      .page-88e__button {
        width: 90%;
      }

      .page-88e__floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 8px;
      }

      .page-88e__float-button {
        padding: 8px 12px;
        font-size: 0.85em;
      }
    }
  