
    /* CSS Styles for page-one88 */
    :root {
      --page-one88-primary-color: #f3c20c; /* Gold/Yellow for accents */
      --page-one88-secondary-color: #2c3e50; /* Dark Blue/Grey for background */
      --page-one88-text-color: #ffffff;
      --page-one88-dark-text-color: #333333;
      --page-one88-bg-dark: #1a1a1a;
      --page-one88-bg-medium: #2a2a2a;
      --page-one88-btn-hover: #e0b000;
      --page-one88-border-color: #444444;
    }

    .page-one88 {
      font-family: 'Arial', sans-serif;
      color: var(--page-one88-text-color);
      background-color: var(--page-one88-bg-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-one88 a {
      color: var(--page-one88-primary-color);
      text-decoration: none;
    }

    .page-one88 a:hover {
      text-decoration: underline;
    }

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

    .page-one88-hero {
      position: relative;
      width: 100%;
      text-align: center;
      background-color: var(--page-one88-bg-medium);
      padding-bottom: 20px; /* Space for text below banner */
    }

    .page-one88-banner-image img {
      width: 100%;
      max-width: 100%; /* Ensure image doesn't stretch */
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: contain; /* Maintain aspect ratio */
    }

    .page-one88-hero-content {
      padding: 20px 15px;
      background-color: var(--page-one88-bg-medium);
      color: var(--page-one88-text-color);
    }

    .page-one88-hero-content h1 {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: var(--page-one88-primary-color);
    }

    .page-one88-hero-content p {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-one88-btn {
      display: inline-block;
      background-color: var(--page-one88-primary-color);
      color: var(--page-one88-dark-text-color);
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-one88-btn:hover {
      background-color: var(--page-one88-btn-hover);
      text-decoration: none;
    }

    .page-one88-section {
      padding: 40px 0;
      text-align: center;
      border-bottom: 1px solid var(--page-one88-border-color);
    }

    .page-one88-section:last-of-type {
      border-bottom: none;
    }

    .page-one88-section h2 {
      font-size: 2em;
      margin-bottom: 30px;
      color: var(--page-one88-primary-color);
      position: relative;
      padding-bottom: 10px;
    }

    .page-one88-section h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-one88-primary-color);
    }

    .page-one88-intro p {
      max-width: 800px;
      margin: 0 auto 20px auto;
      font-size: 1.05em;
    }

    .page-one88-games-grid,
    .page-one88-promos-grid,
    .page-one88-features-grid,
    .page-one88-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 20px 0;
    }
    
    .page-one88-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .page-one88-game-card,
    .page-one88-promo-card,
    .page-one88-feature-card,
    .page-one88-provider-card {
      background-color: var(--page-one88-bg-medium);
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      min-height: 180px; /* Ensure cards have a minimum height */
    }

    .page-one88-game-card:hover,
    .page-one88-promo-card:hover,
    .page-one88-feature-card:hover,
    .page-one88-provider-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-one88-game-card img,
    .page-one88-promo-card img,
    .page-one88-feature-card img {
      max-width: 90%;
      height: 100px; /* Fixed height for consistent display */
      object-fit: contain;
      margin-bottom: 10px;
      border-radius: 5px;
    }
    
    .page-one88-provider-card img {
        max-width: 90%;
        height: 80px; /* Slightly smaller for logos */
        object-fit: contain;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .page-one88-game-card h3,
    .page-one88-promo-card h3,
    .page-one88-feature-card h3,
    .page-one88-provider-card h3 {
      font-size: 1.1em;
      color: var(--page-one88-primary-color);
      margin-bottom: 10px;
      flex-grow: 1; /* Allow title to take available space */
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none; /* Ensure link titles don't get underlined by default */
    }
    
    .page-one88-game-card h3 a,
    .page-one88-promo-card h3 a {
        color: var(--page-one88-primary-color);
        text-decoration: none;
    }
    
    .page-one88-game-card h3 a:hover,
    .page-one88-promo-card h3 a:hover {
        text-decoration: underline;
    }

    .page-one88-game-card p,
    .page-one88-promo-card p {
      font-size: 0.9em;
      color: #ccc;
      margin-bottom: 10px;
    }

    .page-one88-faq-item {
      background-color: var(--page-one88-bg-medium);
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 15px 20px;
      text-align: left;
    }

    .page-one88-faq-question {
      font-weight: bold;
      color: var(--page-one88-primary-color);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1em;
    }

    .page-one88-faq-question::after {
      content: '+';
      font-size: 1.2em;
      transition: transform 0.3s ease;
    }

    .page-one88-faq-question.active::after {
      transform: rotate(45deg);
    }

    .page-one88-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      color: #ccc;
      padding-top: 0;
    }

    .page-one88-faq-answer p {
      padding-top: 10px;
    }

    .page-one88-floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      display: flex;
      gap: 10px;
      width: calc(100% - 30px); /* Adjust width for mobile padding */
      max-width: 400px;
    }

    .page-one88-floating-buttons .page-one88-btn {
      flex: 1;
      padding: 15px 10px;
      font-size: 1em;
      white-space: nowrap;
      text-align: center;
    }
    
    /* Responsive adjustments */
    @media (min-width: 600px) {
      .page-one88-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-one88-floating-buttons {
        bottom: 30px;
        max-width: 500px;
      }
      .page-one88-floating-buttons .page-one88-btn {
        font-size: 1.1em;
        padding: 15px 20px;
      }
    }

    @media (min-width: 768px) {
      .page-one88-hero-content h1 {
        font-size: 2.8em;
      }
      .page-one88-hero-content p {
        font-size: 1.2em;
      }
      .page-one88-games-grid,
      .page-one88-promos-grid,
      .page-one88-features-grid,
      .page-one88-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .page-one88-section h2 {
        font-size: 2.5em;
      }
    }

    @media (min-width: 1024px) {
      .page-one88-games-grid,
      .page-one88-promos-grid,
      .page-one88-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
      .page-one88-providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      }
    }

  