
    .page-abc88c {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
    }

    /* Base styles for sections */
    .page-abc88c__section-title {
      font-size: 2.5em;
      color: #f3d45e; /* Gold/Yellow for titles */
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

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

    /* Buttons */
    .page-abc88c__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1.1em;
      text-align: center;
    }

    .page-abc88c__button--primary {
      background-color: #f3d45e;
      color: #1a1a1a;
      border: 2px solid #f3d45e;
    }

    .page-abc88c__button--primary:hover {
      background-color: #e0c24e;
      transform: translateY(-2px);
    }

    .page-abc88c__button--secondary {
      background-color: transparent;
      color: #f3d45e;
      border: 2px solid #f3d45e;
      margin-left: 15px;
    }

    .page-abc88c__button--secondary:hover {
      background-color: rgba(243, 212, 94, 0.1);
      transform: translateY(-2px);
    }

    .page-abc88c__button--large {
      padding: 15px 30px;
      font-size: 1.2em;
    }

    .page-abc88c__centered-button {
      text-align: center;
      margin-top: 40px;
      margin-bottom: 60px;
    }

    /* Hero Section */
    .page-abc88c__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, main offset handled by body */
    }

    .page-abc88c__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin-bottom: 30px;
    }

    .page-abc88c__hero-title {
      font-size: 3em;
      color: #f3d45e;
      margin-bottom: 20px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-abc88c__hero-description {
      font-size: 1.2em;
      color: #ccc;
      margin-bottom: 30px;
    }

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

    .page-abc88c__hero-image {
      width: 100%;
      max-width: 1200px;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      margin-top: 40px;
    }

    /* Sticky Buttons (Register/Login) */
    .page-abc88c__sticky-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

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

    .page-abc88c__sticky-button--register {
      background-color: #f3d45e;
      color: #1a1a1a;
    }

    .page-abc88c__sticky-button--register:hover {
      background-color: #e0c24e;
      transform: translateY(-2px);
    }

    .page-abc88c__sticky-button--login {
      background-color: #444;
      color: #f0f0f0;
      border: 1px solid #f3d45e;
    }

    .page-abc88c__sticky-button--login:hover {
      background-color: #555;
      transform: translateY(-2px);
    }

    /* Games Section */
    .page-abc88c__games-section,
    .page-abc88c__promotions-section,
    .page-abc88c__why-choose-us-section,
    .page-abc88c__faq-section,
    .page-abc88c__cta-section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-abc88c__game-categories,
    .page-abc88c__promo-grid,
    .page-abc88c__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-abc88c__game-card,
    .page-abc88c__promo-card,
    .page-abc88c__feature-item {
      background-color: #2a2a2a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-abc88c__game-card:hover,
    .page-abc88c__promo-card:hover,
    .page-abc88c__feature-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    }

    .page-abc88c__game-image,
    .page-abc88c__promo-image,
    .page-abc88c__feature-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      border-bottom: 1px solid #3a3a3a;
      margin-bottom: 20px;
    }

    .page-abc88c__game-title,
    .page-abc88c__promo-title,
    .page-abc88c__feature-title {
      font-size: 1.6em;
      color: #f3d45e;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-abc88c__game-text,
    .page-abc88c__promo-text,
    .page-abc88c__feature-text {
      font-size: 1em;
      color: #ccc;
      padding: 0 15px;
    }

    /* FAQ Section */
    .page-abc88c__faq-container {
      max-width: 900px;
      margin: 40px auto;
      border-radius: 15px;
      overflow: hidden;
      background-color: #2a2a2a;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-abc88c__faq-item {
      border-bottom: 1px solid #3a3a3a;
    }

    .page-abc88c__faq-item:last-child {
      border-bottom: none;
    }

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

    .page-abc88c__faq-question:hover {
      background-color: #444;
    }

    .page-abc88c__faq-title {
      font-size: 1.3em;
      color: #f0f0f0;
      margin: 0;
      pointer-events: none; /* Crucial for click event to bubble */
      flex-grow: 1;
    }

    .page-abc88c__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #f3d45e;
      margin-left: 15px;
      pointer-events: none; /* Crucial for click event to bubble */
      transition: transform 0.3s ease;
    }

    .page-abc88c__faq-item.active .page-abc88c__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-abc88c__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #2a2a2a;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #ccc;
      font-size: 1em;
    }

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

    /* Call to Action Section */
    .page-abc88c__cta-section {
      text-align: center;
      padding: 60px 20px 100px;
      background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-abc88c__hero-title {
        font-size: 2.5em;
      }
      .page-abc88c__hero-description {
        font-size: 1.1em;
      }
      .page-abc88c__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-abc88c__hero-section {
        padding: 40px 15px;
      }
      .page-abc88c__hero-title {
        font-size: 2em;
      }
      .page-abc88c__hero-description {
        font-size: 1em;
      }
      .page-abc88c__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }
      .page-abc88c__button--secondary {
        margin-left: 0;
      }

      .page-abc88c__games-section,
      .page-abc88c__promotions-section,
      .page-abc88c__why-choose-us-section,
      .page-abc88c__faq-section,
      .page-abc88c__cta-section {
        padding: 60px 15px;
      }

      .page-abc88c__section-title {
        font-size: 1.8em;
      }
      .page-abc88c__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
      }

      /* List item responsive styles */
      .page-abc88c__game-categories,
      .page-abc88c__promo-grid,
      .page-abc88c__features-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
      }

      .page-abc88c__game-card,
      .page-abc88c__promo-card,
      .page-abc88c__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-bottom: 15px; /* Adjust padding for smaller screens */
      }

      .page-abc88c__game-image,
      .page-abc88c__promo-image,
      .page-abc88c__feature-image {
        max-width: 100% !important;
        height: auto !important; /* Ensure images scale correctly */
        object-fit: cover;
        margin-bottom: 15px;
      }

      .page-abc88c__game-title,
      .page-abc88c__promo-title,
      .page-abc88c__feature-title {
        font-size: 1.4em;
        padding: 0 10px;
      }

      .page-abc88c__game-text,
      .page-abc88c__promo-text,
      .page-abc88c__feature-text {
        font-size: 0.9em;
        padding: 0 10px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-abc88c__faq-question {
        padding: 15px 20px;
      }
      .page-abc88c__faq-title {
        font-size: 1.1em;
      }
      .page-abc88c__faq-answer {
        padding: 0 20px;
      }
      .page-abc88c__faq-item.active .page-abc88c__faq-answer {
        padding: 15px 20px !important;
      }

      .page-abc88c__sticky-buttons {
        bottom: 10px;
        right: 10px;
        gap: 8px;
      }
      .page-abc88c__sticky-button {
        padding: 8px 15px;
        font-size: 0.9em;
        min-width: 80px;
      }
    }

    @media (max-width: 480px) {
      .page-abc88c__hero-title {
        font-size: 1.8em;
      }
      .page-abc88c__section-title {
        font-size: 1.6em;
      }
      .page-abc88c__hero-buttons {
        flex-direction: column;
        width: 100%;
      }
      .page-abc88c__button {
        width: 100%;
        margin-left: 0;
      }
      .page-abc88c__faq-question {
        padding: 12px 15px;
      }
      .page-abc88c__faq-title {
        font-size: 1em;
      }
      .page-abc88c__faq-answer {
        padding: 0 15px;
      }
      .page-abc88c__faq-item.active .page-abc88c__faq-answer {
        padding: 12px 15px !important;
      }
    }

    /* Ensure images are responsive and not filtered */
    .page-abc88c img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below image */
      filter: none; /* Explicitly disable any filters */
    }
    @media (max-width: 768px) {
      .page-abc88c img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  