
    :root {
      --page-fly88-primary-color: #e44d26; /* A vibrant red-orange */
      --page-fly88-secondary-color: #333;
      --page-fly88-accent-color: #ffcc00; /* Gold */
      --page-fly88-background-light: #f9f9f9;
      --page-fly88-text-color-dark: #333;
      --page-fly88-text-color-light: #fff;
      --page-fly88-border-color: #eee;
    }

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

    .page-fly88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    @media (max-width: 768px) {
      .page-fly88__container {
        padding: 10px;
      }
    }

    /* Hero Section */
    .page-fly88__hero-section {
      position: relative;
      background-color: var(--page-fly88-secondary-color);
      color: var(--page-fly88-text-color-light);
      text-align: center;
      padding: 10px 20px 60px; /* Added padding-top for fixed header */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 300px; /* Ensure content is visible */
    }

    .page-fly88__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.6;
      z-index: 0;
    }

    .page-fly88__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-fly88__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-fly88-accent-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      line-height: 1.2;
    }

    .page-fly88__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-fly88-text-color-light);
    }

    .page-fly88__hero-button {
      display: inline-block;
      background-color: var(--page-fly88-primary-color);
      color: var(--page-fly88-text-color-light);
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-fly88__hero-button:hover {
      background-color: #ff6a3d;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-fly88__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-fly88-primary-color);
      color: var(--page-fly88-text-color-light);
      padding: 12px 20px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: page-fly88__pulse 2s infinite;
      border: none;
      cursor: pointer;
    }

    .page-fly88__floating-button:hover {
      background-color: #ff6a3d;
      transform: scale(1.05);
    }

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

    @media (max-width: 768px) {
      .page-fly88__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 1em;
      }
    }

    /* Section Styling */
    .page-fly88__section {
      padding: 60px 0;
      text-align: center;
      background-color: var(--page-fly88-background-light);
    }

    .page-fly88__section:nth-of-type(even) {
      background-color: #f0f0f0;
    }

    .page-fly88__section-title {
      font-size: 2.2em;
      color: var(--page-fly88-primary-color);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-fly88__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-fly88-accent-color);
      border-radius: 2px;
    }

    .page-fly88__text-block {
      max-width: 900px;
      margin: 0 auto 40px;
      font-size: 1.1em;
      color: var(--page-fly88-secondary-color);
      text-align: left;
    }

    /* Game Categories */
    .page-fly88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-fly88__game-card {
      background-color: var(--page-fly88-text-color-light);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-fly88__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for image consistency */
      overflow: hidden;
      background-color: #ccc; /* Placeholder background */
    }

    .page-fly88__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100% !important; /* Image responsive */
    }

    .page-fly88__game-card-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-fly88__game-card-title {
      font-size: 1.5em;
      color: var(--page-fly88-primary-color);
      margin-bottom: 15px;
    }

    .page-fly88__game-card-description {
      font-size: 0.95em;
      color: var(--page-fly88-secondary-color);
      margin-bottom: 20px;
      flex-grow: 1;
      word-wrap: break-word !important; /* Ensure text wraps */
      overflow-wrap: break-word !important;
      text-align: left;
    }

    .page-fly88__game-card-button {
      display: inline-block;
      background-color: var(--page-fly88-accent-color);
      color: var(--page-fly88-text-color-dark);
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: auto; /* Push button to bottom */
    }

    .page-fly88__game-card-button:hover {
      background-color: #ffd700;
    }

    /* Steps Section */
    .page-fly88__steps-list {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-fly88__step-item {
      background-color: var(--page-fly88-text-color-light);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      padding: 30px;
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      text-align: left;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

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

    .page-fly88__step-number {
      font-size: 2.5em;
      color: var(--page-fly88-primary-color);
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-fly88__step-title {
      font-size: 1.4em;
      color: var(--page-fly88-secondary-color);
      margin-bottom: 10px;
    }

    .page-fly88__step-description {
      font-size: 1em;
      color: var(--page-fly88-secondary-color);
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    /* FAQ Section */
    .page-fly88__faq-list {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
      padding: 0 20px;
    }

    .page-fly88__faq-item {
      background-color: var(--page-fly88-text-color-light);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-fly88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-fly88-secondary-color);
      transition: background-color 0.3s ease;
    }

    .page-fly88__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-fly88__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      color: var(--page-fly88-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-fly88__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: var(--page-fly88-primary-color);
      pointer-events: none; /* Prevent toggle from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-fly88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-fly88-text-color-dark);
    }

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

    .page-fly88__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    /* Call to Action Section */
    .page-fly88__cta-section {
      background-color: var(--page-fly88-primary-color);
      color: var(--page-fly88-text-color-light);
      padding: 80px 20px;
      text-align: center;
    }

    .page-fly88__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--page-fly88-accent-color);
    }

    .page-fly88__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-fly88__cta-button {
      display: inline-block;
      background-color: var(--page-fly88-accent-color);
      color: var(--page-fly88-primary-color);
      padding: 18px 35px;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-fly88__cta-button:hover {
      background-color: #ffd700;
      transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-fly88__hero-title {
        font-size: 2.5em;
      }
      .page-fly88__section-title {
        font-size: 2em;
      }
      .page-fly88__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
      .page-fly88__step-item {
        max-width: 320px;
      }
    }

    @media (max-width: 768px) {
      .page-fly88__hero-section {
        padding: 10px 10px 50px; /* Adjust padding-top for mobile fixed header */
        min-height: 250px;
      }
      .page-fly88__hero-title {
        font-size: 2em;
      }
      .page-fly88__hero-description {
        font-size: 1em;
      }
      .page-fly88__hero-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-fly88__section {
        padding: 40px 0;
      }
      .page-fly88__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-fly88__text-block {
        font-size: 1em;
        margin: 0 auto 30px;
        padding: 0 10px;
      }
      .page-fly88__game-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        padding: 0 10px;
      }
      .page-fly88__game-card-image-wrapper {
        height: 180px;
      }
      .page-fly88__game-card-title {
        font-size: 1.3em;
      }
      .page-fly88__game-card-description {
        font-size: 0.9em;
      }
      .page-fly88__steps-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }
      .page-fly88__step-item {
        width: 100% !important; /* Force full width for list items */
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }
      .page-fly88__faq-list {
        padding: 0 10px;
      }
      .page-fly88__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-fly88__faq-question h3 {
        font-size: 1.1em;
      }
      .page-fly88__faq-answer {
        padding: 0 20px;
      }
      .page-fly88__faq-item.active .page-fly88__faq-answer {
        padding: 15px 20px !important;
      }
      .page-fly88__cta-section {
        padding: 50px 10px;
      }
      .page-fly88__cta-title {
        font-size: 2em;
      }
      .page-fly88__cta-description {
        font-size: 1.1em;
      }
      .page-fly88__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }
    }
    /* Ensure all images are responsive */
    .page-fly88 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }
    .page-fly88__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }
    @media (max-width: 768px) {
      .page-fly88 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-fly88__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }
  