
    :root {
      --page-afp88-live-primary-bg: #1a1a1a; /* Dark background */
      --page-afp88-live-secondary-bg: #2a2a2a; /* Slightly lighter dark background */
      --page-afp88-live-text-color: #f0f0f0; /* Off-white text */
      --page-afp88-live-accent-color: #e44d26; /* Orange/red accent */
      --page-afp88-live-button-text: #ffffff; /* White button text */
      --page-afp88-live-border-color: #3a3a3a; /* Border color */
      --page-afp88-live-hover-color: #ff6633; /* Lighter accent for hover */
    }

    .page-afp88-live {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-afp88-live-primary-bg);
      color: var(--page-afp88-live-text-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

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

    .page-afp88-live__section--dark {
      background-color: var(--page-afp88-live-secondary-bg);
    }

    .page-afp88-live__h1,
    .page-afp88-live__h2,
    .page-afp88-live__h3 {
      color: var(--page-afp88-live-accent-color);
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-afp88-live__h1 {
      font-size: 2.5em;
      margin-top: 0;
    }

    .page-afp88-live__h2 {
      font-size: 2em;
    }

    .page-afp88-live__h3 {
      font-size: 1.5em;
    }

    .page-afp88-live__paragraph {
      text-align: center;
      margin-bottom: 20px;
      font-size: 1.1em;
    }

    /* Hero Section */
    .page-afp88-live__hero-section {
      text-align: center;
      padding: 10px 20px 40px; /* Small padding-top, assuming body handles main offset */
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .page-afp88-live__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-afp88-live__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
    }

    .page-afp88-live__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-afp88-live__hero-button {
      display: inline-block;
      background-color: var(--page-afp88-live-accent-color);
      color: var(--page-afp88-live-button-text);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin-top: 20px;
    }

    .page-afp88-live__hero-button:hover {
      background-color: var(--page-afp88-live-hover-color);
    }

    /* Floating Buttons */
    .page-afp88-live__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: var(--page-afp88-live-secondary-bg);
      border-top: 1px solid var(--page-afp88-live-border-color);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-afp88-live__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 15px;
      background-color: var(--page-afp88-live-accent-color);
      color: var(--page-afp88-live-button-text);
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-align: center;
      display: block; /* Ensure it takes full flex item width */
    }

    .page-afp88-live__floating-button:hover {
      background-color: var(--page-afp88-live-hover-color);
    }

    /* Game Categories */
    .page-afp88-live__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-afp88-live__game-card {
      background-color: var(--page-afp88-live-secondary-bg);
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-afp88-live__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-afp88-live__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-afp88-live__game-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-bottom: 1px solid var(--page-afp88-live-border-color);
    }

    .page-afp88-live__game-title {
      font-size: 1.3em;
      color: var(--page-afp88-live-accent-color);
      margin: 20px 15px 10px;
    }

    .page-afp88-live__game-description {
      font-size: 0.95em;
      color: var(--page-afp88-live-text-color);
      padding: 0 15px;
    }

    /* Promotions */
    .page-afp88-live__promotion-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-afp88-live__promotion-card {
      background-color: var(--page-afp88-live-secondary-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-afp88-live__promotion-card:hover {
      transform: translateY(-5px);
    }

    .page-afp88-live__promotion-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-afp88-live__promotion-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .page-afp88-live__promotion-content {
      padding: 20px;
    }

    .page-afp88-live__promotion-title {
      font-size: 1.4em;
      color: var(--page-afp88-live-accent-color);
      margin-bottom: 10px;
    }

    .page-afp88-live__promotion-description {
      font-size: 1em;
      color: var(--page-afp88-live-text-color);
      margin-bottom: 15px;
    }

    /* Why Choose Us */
    .page-afp88-live__features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-afp88-live__feature-item {
      background-color: var(--page-afp88-live-secondary-bg);
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-afp88-live__feature-title {
      font-size: 1.25em;
      color: var(--page-afp88-live-accent-color);
      margin-bottom: 10px;
    }

    .page-afp88-live__feature-description {
      font-size: 0.95em;
      color: var(--page-afp88-live-text-color);
    }

    /* Payment and Providers */
    .page-afp88-live__partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-afp88-live__partner-logo-wrapper {
      background-color: var(--page-afp88-live-secondary-bg);
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 120px; /* Fixed height for logos */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      width: 100%;
      max-width: 200px; /* Max width for individual logo item */
    }

    .page-afp88-live__partner-logo-wrapper:hover {
      transform: translateY(-3px);
    }

    .page-afp88-live__partner-logo {
      max-width: 100%;
      max-height: 90px;
      height: auto;
      display: block;
    }
    
    .page-afp88-live__partner-link {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: inherit;
    }

    /* FAQ Section */
    .page-afp88-live__faq-section {
      margin-top: 40px;
    }

    .page-afp88-live__faq-item {
      background-color: var(--page-afp88-live-secondary-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-afp88-live-border-color);
    }

    .page-afp88-live__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      color: var(--page-afp88-live-text-color);
      transition: background-color 0.3s ease;
    }

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

    .page-afp88-live__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: var(--page-afp88-live-accent-color);
      pointer-events: none; /* Prevents text selection from interfering with click */
      flex-grow: 1; /* Allow question text to take available space */
      text-align: left; /* Align question text to left */
    }

    .page-afp88-live__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from interfering with click */
      color: var(--page-afp88-live-text-color);
      font-weight: normal;
    }

    .page-afp88-live__faq-item.active .page-afp88-live__faq-toggle {
      transform: rotate(45deg); /* Rotate for minus sign */
    }

    .page-afp88-live__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-afp88-live-text-color);
      font-size: 1em;
    }

    .page-afp88-live__faq-item.active .page-afp88-live__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-afp88-live__h1 {
        font-size: 2em;
      }

      .page-afp88-live__h2 {
        font-size: 1.7em;
      }

      .page-afp88-live__h3 {
        font-size: 1.3em;
      }

      .page-afp88-live__section {
        padding: 30px 15px;
      }

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

      .page-afp88-live__floating-button {
        font-size: 1em;
        padding: 10px 10px;
      }
      
      /* List items mobile responsiveness */
      .page-afp88-live__game-grid,
      .page-afp88-live__promotion-list,
      .page-afp88-live__features-list,
      .page-afp88-live__partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-afp88-live__game-card,
      .page-afp88-live__promotion-card,
      .page-afp88-live__feature-item,
      .page-afp88-live__partner-logo-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-afp88-live__game-description,
      .page-afp88-live__promotion-description,
      .page-afp88-live__feature-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      
      /* Images mobile responsiveness */
      .page-afp88-live__hero-image,
      .page-afp88-live__game-image,
      .page-afp88-live__promotion-image,
      .page-afp88-live__partner-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-afp88-live__hero-image-wrapper,
      .page-afp88-live__game-image-wrapper,
      .page-afp88-live__promotion-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-afp88-live__faq-question {
        padding: 12px 15px;
      }

      .page-afp88-live__faq-question h3 {
        font-size: 1.05em;
      }

      .page-afp88-live__faq-toggle {
        font-size: 1.5em;
      }

      .page-afp88-live__faq-answer {
        padding: 0 15px;
      }

      .page-afp88-live__faq-item.active .page-afp88-live__faq-answer {
        padding: 15px !important;
      }
    }
  