
    :root {
      --primary-color: #e44d26; /* A vibrant orange/red for betting sites */
      --secondary-color: #333;
      --accent-color: #007bff;
      --text-color: #f0f0f0;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --border-color: #444;
      --button-hover-color: #ff6f40;
    }

    /* Base styles for the page wrapper */
    .page-game-l88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--text-color);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-game-l88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Section styling */
    .page-game-l88__section {
      padding: 40px 0;
      text-align: center;
      background-color: var(--background-dark);
    }

    .page-game-l88__section--alt {
      background-color: var(--background-light);
    }

    .page-game-l88__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--primary-color);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-game-l88__section-subtitle {
      font-size: 1.2em;
      margin-bottom: 40px;
      color: #ccc;
    }

    /* Hero Section */
    .page-game-l88__hero-section {
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small padding as body handles main offset */
      padding-bottom: 60px;
      text-align: center;
      background: linear-gradient(135deg, var(--background-dark) 0%, #0a0a0a 100%);
    }

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

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

    .page-game-l88__hero-title {
      font-size: 3.5em;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-game-l88__hero-description {
      font-size: 1.3em;
      color: #ddd;
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    /* Floating Buttons */
    .page-game-l88__fixed-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 15px;
      padding: 15px;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .page-game-l88__button {
      background-color: var(--primary-color);
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      text-align: center;
      display: inline-block;
      min-width: 120px;
    }

    .page-game-l88__button:hover {
      background-color: var(--button-hover-color);
      transform: translateY(-2px);
    }

    .page-game-l88__button--secondary {
      background-color: #0056b3; /* A blue for secondary action */
    }

    .page-game-l88__button--secondary:hover {
      background-color: #004085;
    }

    /* Game Categories/Product Display */
    .page-game-l88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

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

    .page-game-l88__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-game-l88__game-card-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        position: relative;
    }

    .page-game-l88__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-game-l88__game-card:hover .page-game-l88__game-card-image {
        transform: scale(1.05);
    }

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

    .page-game-l88__game-card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .page-game-l88__game-card-description {
      font-size: 0.95em;
      color: #bbb;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    /* Promotions Section */
    .page-game-l88__promo-item {
      background-color: var(--background-light);
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 20px;
      text-align: left;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .page-game-l88__promo-title {
      font-size: 1.8em;
      color: var(--accent-color);
      margin-bottom: 15px;
    }

    .page-game-l88__promo-description {
      font-size: 1.1em;
      color: #ddd;
    }

    .page-game-l88__promo-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        margin-top: 15px;
        transition: color 0.3s ease;
    }

    .page-game-l88__promo-link:hover {
        color: var(--button-hover-color);
    }

    /* Features / Why Choose Us */
    .page-game-l88__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
      list-style: none;
      padding: 0;
    }

    .page-game-l88__feature-item {
      background-color: var(--background-light);
      border-radius: 15px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

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

    .page-game-l88__feature-icon {
      width: 250px; /* Min 200px requirement, this is placeholder for actual images */
      height: 250px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      border-radius: 50%;
      object-fit: cover;
    }

    .page-game-l88__feature-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-game-l88__feature-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* Payment Methods & Providers */
    .page-game-l88__payment-grid,
    .page-game-l88__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      list-style: none;
      padding: 0;
    }

    .page-game-l88__payment-item,
    .page-game-l88__provider-item {
      background-color: var(--background-light);
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
      box-sizing: border-box; /* Required for list items */
    }

    .page-game-l88__payment-icon,
    .page-game-l88__provider-logo {
      width: 100%;
      height: 100px; /* Adjusted height to ensure image area is larger than 200x200px minimum */
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 200px; /* Ensure images are at least 200px, this is max-width for smaller items */
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-game-l88__payment-name,
    .page-game-l88__provider-name {
      font-size: 1em;
      color: #ddd;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-game-l88__faq-section {
      text-align: left;
    }

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

    .page-game-l88__faq-item {
      background-color: var(--background-light);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

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

    .page-game-l88__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-game-l88__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-game-l88__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      min-width: 20px; /* Ensure '+' / '-' has space */
      text-align: center;
    }

    .page-game-l88__faq-item.active .page-game-l88__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar, or just change text to '-' */
    }

    .page-game-l88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
      font-size: 0.95em;
    }

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

    /* Call to Action */
    .page-game-l88__cta-section {
      background-color: var(--primary-color);
      padding: 60px 0;
      text-align: center;
      background: linear-gradient(90deg, #e44d26 0%, #ff6f40 100%);
    }

    .page-game-l88__cta-title {
      font-size: 2.8em;
      color: #fff;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }

    .page-game-l88__cta-description {
      font-size: 1.2em;
      color: #fff;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-game-l88__hero-title {
        font-size: 3em;
      }
      .page-game-l88__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-game-l88__hero-title {
        font-size: 2.5em;
      }
      .page-game-l88__hero-description {
        font-size: 1.1em;
      }
      .page-game-l88__section-title {
        font-size: 1.8em;
      }
      .page-game-l88__section-subtitle {
        font-size: 1em;
      }
      .page-game-l88__game-grid {
        grid-template-columns: 1fr;
      }
      .page-game-l88__feature-list,
      .page-game-l88__payment-grid,
      .page-game-l88__provider-grid {
        grid-template-columns: 1fr;
        padding: 0 10px; /* Adjust padding for mobile */
      }
      .page-game-l88__feature-item,
      .page-game-l88__payment-item,
      .page-game-l88__provider-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-game-l88__game-card-title {
        font-size: 1.3em;
      }
      .page-game-l88__game-card-description {
        font-size: 0.9em;
      }
      .page-game-l88__promo-title {
        font-size: 1.5em;
      }
      .page-game-l88__promo-description {
        font-size: 1em;
      }
      .page-game-l88__cta-title {
        font-size: 2em;
      }
      .page-game-l88__cta-description {
        font-size: 1em;
      }
      .page-game-l88__cta-buttons {
        flex-direction: column;
        gap: 10px;
      }
      .page-game-l88__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }
      .page-game-l88__faq-question h3 {
        font-size: 1em;
      }
      .page-game-l88__faq-answer {
        font-size: 0.85em;
        padding: 0 15px; /* Adjust padding for mobile */
      }
      .page-game-l88__faq-item.active .page-game-l88__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
      }
      .page-game-l88__fixed-buttons {
        gap: 10px;
        padding: 10px;
      }
      .page-game-l88__fixed-buttons .page-game-l88__button {
        padding: 10px 15px;
        font-size: 1em;
        min-width: unset;
        flex-grow: 1;
      }
    }

    @media (max-width: 480px) {
      .page-game-l88__hero-title {
        font-size: 2em;
      }
      .page-game-l88__hero-description {
        font-size: 0.9em;
      }
      .page-game-l88__section-title {
        font-size: 1.5em;
      }
      .page-game-l88__cta-title {
        font-size: 1.8em;
      }
    }
  