
    /* Base styles for the page-88xx */
    .page-88xx {
      font-family: 'Arial', sans-serif;
      background-color: #000; /* Black background */
      color: #fff; /* White text */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for the floating button */
    }

    .page-88xx__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-88xx__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-88xx__section--dark {
      background-color: #1a1a1a;
    }

    .page-88xx__title {
      color: #ffd700; /* Yellow for titles */
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }

    .page-88xx__subtitle {
      color: #fff;
      font-size: 1.8em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-88xx__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #e0e0e0;
    }

    /* Hero Section */
    .page-88xx__hero-section {
      position: relative;
      padding-top: 120px; /* Desktop safe area for fixed header */
      background-color: #000;
      text-align: center;
      overflow: hidden;
    }

    .page-88xx__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }

    .page-88xx__hero-content {
      padding: 30px 15px;
      background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.6));
      margin-top: -5px; /* Adjust to overlap slightly with image for smooth transition */
      position: relative;
      z-index: 1;
    }

    .page-88xx__hero-title {
      font-size: 3em;
      color: #ffd700;
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-88xx__hero-description {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-88xx__cta-button {
      display: inline-block;
      background-color: #ffd700; /* Yellow button */
      color: #000; /* Black text on button */
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .page-88xx__cta-button:hover {
      background-color: #ffe84d;
      transform: translateY(-3px);
    }

    /* Game Categories Section */
    .page-88xx__game-categories {
      padding: 60px 0;
    }

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

    .page-88xx__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-88xx__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    }

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

    .page-88xx__game-card-image {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      border-bottom: 3px solid #ffd700;
    }

    .page-88xx__game-card-title {
      font-size: 1.5em;
      color: #ffd700;
      margin: 20px 0 10px;
      padding: 0 15px;
    }

    .page-88xx__game-card-link {
      color: #ffd700;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-88xx__game-card-link:hover {
      color: #fff;
    }

    .page-88xx__game-card-description {
      color: #ccc;
      font-size: 0.95em;
      padding: 0 15px;
      margin-bottom: 15px;
    }

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

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

    .page-88xx__promo-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      text-align: left;
      border-left: 5px solid #ffd700;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-88xx__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    }

    .page-88xx__promo-card-title {
      color: #ffd700;
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-88xx__promo-card-text {
      color: #e0e0e0;
      margin-bottom: 20px;
    }

    /* How-to Guides Section */
    .page-88xx__guides-section {
      padding: 60px 0;
    }

    .page-88xx__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-88xx__guide-step {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 30px;
      max-width: 350px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      border-bottom: 4px solid #ffd700;
    }

    .page-88xx__guide-step-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      border-radius: 50%;
      background-color: #ffd700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 3em;
      color: #000;
      font-weight: bold;
    }

    .page-88xx__guide-step-title {
      color: #ffd700;
      font-size: 1.6em;
      margin-bottom: 10px;
    }

    .page-88xx__guide-step-description {
      color: #ccc;
      font-size: 1em;
    }

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

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

    .page-88xx__feature-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      border-left: 3px solid #ffd700;
    }

    .page-88xx__feature-icon {
      color: #ffd700;
      font-size: 2.5em;
      margin-bottom: 15px;
      display: block;
    }

    .page-88xx__feature-title {
      color: #ffd700;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-88xx__feature-description {
      color: #ccc;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-88xx__faq-section {
      padding: 60px 0;
    }

    .page-88xx__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
    }

    .page-88xx__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

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

    .page-88xx__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: 1.2em; /* Ensure h3 matches parent font size */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-88xx__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-88xx__faq-item.active .page-88xx__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus effect */
    }

    .page-88xx__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      color: #e0e0e0;
      font-size: 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-88xx__faq-item.active .page-88xx__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important; /* Padding when active */
      opacity: 1;
    }

    /* Floating Login Button */
    .page-88xx__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #ffd700; /* Yellow button */
      color: #000; /* Black text on button */
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Prevent text wrapping */
    }

    .page-88xx__floating-button:hover {
      background-color: #ffe84d;
      transform: translateX(-50%) translateY(-5px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-88xx__hero-section {
        padding-top: 100px; /* Mobile safe area for fixed header */
      }

      .page-88xx__hero-title {
        font-size: 2.2em;
      }

      .page-88xx__hero-description {
        font-size: 1.1em;
      }

      .page-88xx__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-88xx__game-grid,
      .page-88xx__promo-card-grid,
      .page-88xx__feature-list {
        grid-template-columns: 1fr;
      }

      .page-88xx__title {
        font-size: 2em;
      }

      .page-88xx__subtitle {
        font-size: 1.5em;
      }

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

      .page-88xx__game-card-image-wrapper {
        height: 180px;
      }

      .page-88xx__game-card-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-88xx__promo-card,
      .page-88xx__guide-step,
      .page-88xx__feature-item {
        padding: 20px;
      }

      .page-88xx__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }

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

      .page-88xx__faq-question h3 {
        font-size: 1.1em;
      }

      .page-88xx__faq-answer {
        padding: 0 20px;
      }

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

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

      .page-88xx__hero-description {
        font-size: 0.95em;
      }

      .page-88xx__title {
        font-size: 1.8em;
      }

      .page-88xx__floating-button {
        width: calc(100% - 40px);
        left: 20px;
        transform: translateX(0);
        bottom: 15px;
        text-align: center;
      }
    }
  