
    /* Base styles for the specific page */
    .page-f88 {
      background-color: #000000; /* Black background */
      color: #FFFFFF; /* White text by default */
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Shared container styling */
    .page-f88__section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Section titles */
    .page-f88__section-title {
      color: #FFD700; /* Yellow for titles */
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 40px;
      padding-top: 20px; /* Ensure space from previous section */
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-f88__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Hero Section */
    .page-f88__hero-section {
      position: relative;
      text-align: center;
      color: #FFFFFF;
      padding-top: 150px; /* Header clearance for mobile and desktop */
      padding-bottom: 50px;
      background-color: #1a1a1a; /* Slightly lighter black for contrast */
      overflow: hidden; /* Ensure banner doesn't overflow */
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-f88__hero-banner {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      object-fit: cover; /* Ensures image covers the area without distortion */
      object-position: center;
      margin-bottom: 30px; /* Space between banner and content */
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
    }

    .page-f88__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-f88__brand-logo {
      max-width: 250px;
      height: auto;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
    }

    .page-f88__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: #FFD700;
      line-height: 1.2;
    }

    .page-f88__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #E0E0E0;
    }

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

    .page-f88__primary-button,
    .page-f88__secondary-button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      text-align: center;
      min-width: 200px;
    }

    .page-f88__primary-button {
      background-color: #FFD700; /* Yellow button */
      color: #000000; /* Black text */
      border: 2px solid #FFD700;
    }

    .page-f88__primary-button:hover {
      background-color: #FFA500; /* Darker yellow on hover */
      transform: translateY(-3px);
    }

    .page-f88__secondary-button {
      background-color: transparent;
      color: #FFD700; /* Yellow text */
      border: 2px solid #FFD700;
    }

    .page-f88__secondary-button:hover {
      background-color: #FFD700;
      color: #000000;
      transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-f88__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: #FFD700;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: pulse 1.5s infinite;
    }

    .page-f88__floating-button-link {
      display: block;
      padding: 15px 30px;
      color: #000000;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      white-space: nowrap;
    }

    .page-f88__floating-button:hover {
      animation: none;
      background-color: #FFA500;
    }

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

    /* Game Categories Section */
    .page-f88__game-categories-section,
    .page-f88__providers-section,
    .page-f88__why-choose-section,
    .page-f88__faq-section,
    .page-f88__social-media-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .page-f88__game-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      text-align: center;
      padding: 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-f88__game-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-f88__game-card-image {
      width: 100%;
      height: auto; /* Responsive image */
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive image */
      min-height: 200px; /* Enforce minimum size */
      min-width: 200px; /* Enforce minimum size */
    }

    .page-f88__game-card-title {
      color: #FFD700;
      font-size: 1.8em;
      margin-bottom: 10px;
    }

    .page-f88__game-card-description {
      color: #E0E0E0;
      font-size: 1em;
      flex-grow: 1; /* Allows description to take available space */
    }

    /* Game Providers Section */
    .page-f88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
      align-items: center;
    }

    .page-f88__provider-item {
      background-color: #1a1a1a;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

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

    .page-f88__provider-logo {
      max-width: 100%;
      height: auto;
      object-fit: contain;
      margin-bottom: 10px;
      transition: filter 0.3s ease;
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
    }

    .page-f88__provider-name {
      color: #FFFFFF;
      font-weight: bold;
      font-size: 1em;
    }

    /* Why Choose Section */
    .page-f88__why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .page-f88__feature-card {
      background-color: #1a1a1a;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-f88__feature-card:hover {
      transform: translateY(-10px);
    }

    .page-f88__feature-icon {
      width: 200px; /* Ensure icons are large enough */
      height: 200px; /* Ensure icons are large enough */
      object-fit: contain;
      margin-bottom: 20px;
      max-width: 100%; /* Responsive */
      height: auto; /* Responsive */
    }

    .page-f88__feature-title {
      color: #FFD700;
      font-size: 1.6em;
      margin-bottom: 15px;
    }

    .page-f88__feature-description {
      color: #E0E0E0;
      font-size: 1em;
    }

    /* FAQ Section */
    .page-f88__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-f88__faq-item {
      background-color: #1a1a1a;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .page-f88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333333; /* Darker background for question */
      border-radius: 10px;
      transition: background-color 0.3s ease;
    }

    .page-f88__faq-question:hover {
      background-color: #444444;
    }

    .page-f88__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-f88__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click on parent div */
    }

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

    .page-f88__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;
    }

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

    .page-f88__faq-answer p {
      margin: 0;
      color: #E0E0E0;
      font-size: 1.05em;
    }

    .page-f88__faq-answer a {
      color: #FFD700;
      text-decoration: none;
    }

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

    /* Social Media Section */
    .page-f88__social-description {
      text-align: center;
      color: #E0E0E0;
      font-size: 1.1em;
      margin-bottom: 40px;
    }

    .page-f88__social-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 25px;
    }

    .page-f88__social-icon-link {
      display: block;
      width: 200px; /* Minimum size */
      height: 200px; /* Minimum size */
      border-radius: 50%;
      background-color: #333333;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      overflow: hidden; /* For responsiveness */
      box-sizing: border-box; /* For responsiveness */
    }

    .page-f88__social-icon-link:hover {
      background-color: #FFD700;
      transform: translateY(-5px);
    }

    .page-f88__social-icon {
      width: 100%; /* Fill the link container */
      height: 100%; /* Fill the link container */
      object-fit: contain;
      border-radius: 50%; /* Make sure the image itself is circular if intended */
      max-width: 100%; /* Responsive */
      height: auto; /* Responsive */
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-f88__hero-title {
        font-size: 2.8em;
      }
      .page-f88__section-title {
        font-size: 2em;
      }
    }

    @media (max-width: 768px) {
      .page-f88__hero-section {
        padding-top: 150px; /* Ensure clearance for mobile header */
        padding-bottom: 30px;
      }
      .page-f88__brand-logo {
        max-width: 200px;
      }
      .page-f88__hero-title {
        font-size: 2.2em;
      }
      .page-f88__hero-description {
        font-size: 1.1em;
      }
      .page-f88__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-f88__primary-button,
      .page-f88__secondary-button {
        width: 80%;
        margin: 0 auto;
      }
      .page-f88__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-f88__game-grid,
      .page-f88__providers-grid,
      .page-f88__why-choose-grid {
        grid-template-columns: 1fr;
      }
      .page-f88__game-card,
      .page-f88__feature-card,
      .page-f88__provider-item {
        padding: 20px;
      }
      .page-f88__faq-question {
        padding: 15px 20px;
      }
      .page-f88__faq-question h3 {
        font-size: 1.1em;
      }
      .page-f88__faq-answer {
        padding: 0 20px;
      }
      .page-f88__faq-item.active .page-f88__faq-answer {
        padding: 15px 20px !important;
      }
      .page-f88__floating-button {
        bottom: 15px;
        width: 90%;
      }
      .page-f88__floating-button-link {
        font-size: 1em;
        padding: 12px 20px;
      }
      .page-f88__social-icon-link {
        width: 150px; /* Adjust social icon size for mobile */
        height: 150px;
      }
    }

    /* Image responsiveness with !important for mobile */
    @media (max-width: 768px) {
      .page-f88 img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important; /* Ensure images fit without overflow */
      }
      /* Specific containers for images */
      .page-f88__hero-section,
      .page-f88__game-card,
      .page-f88__provider-item,
      .page-f88__feature-card,
      .page-f88__social-icon-link {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  