
    /* Base styles for the page */
    .page-bet88 {
      font-family: 'Arial', sans-serif;
      background-color: #000000; /* Black background */
      color: #ffffff; /* White text */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed footer/floating elements */
      overflow-x: hidden;
    }

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

    /* Fixed header safety zone */
    .page-bet88__hero-section,
    .page-bet88__intro-section {
      padding-top: 140px; /* Safety zone for fixed header on desktop */
    }

    /* Headings */
    .page-bet88 h1,
    .page-bet88 h2,
    .page-bet88 h3 {
      color: #FFD700; /* Gold/Yellow for headings */
      text-align: center;
      margin-bottom: 20px;
    }

    .page-bet88 h1 {
      font-size: 2.8em;
      margin-top: 0;
      line-height: 1.2;
    }

    .page-bet88 h2 {
      font-size: 2.2em;
      margin-top: 40px;
    }

    .page-bet88 h3 {
      font-size: 1.8em;
      margin-top: 30px;
      text-align: left;
    }

    /* Paragraphs */
    .page-bet88 p {
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Buttons */
    .page-bet88__button {
      display: inline-block;
      background-color: #FFD700; /* Yellow button */
      color: #000000; /* Black text on button */
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-bet88__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-bet88__hero-section {
      text-align: center;
      padding-bottom: 40px;
      background-color: #1a1a1a;
      position: relative;
    }

    .page-bet88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-bet88__hero-image img {
      width: 100%;
      height: auto;
      display: block;
    }


    .page-bet88__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px 15px;
    }

    .page-bet88__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login Button */
    .page-bet88__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: pulse 2s infinite;
      border-radius: 50px;
      padding: 15px 30px;
      font-size: 1.1em;
      white-space: nowrap;
    }

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

    /* Game Categories Section */
    .page-bet88__game-categories {
      padding: 60px 0;
      background-color: #0d0d0d;
    }

    .page-bet88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-bet88__game-card {
      background-color: #1a1a1a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

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

    .page-bet88__game-card-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-bet88__game-card-image img {
      width: 100%;
      height: auto;
      display: block;
    }

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

    .page-bet88__game-card-link {
      color: #FFD700;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-bet88__game-card-link:hover {
      color: #ffffff;
    }

    /* Game Providers Section */
    .page-bet88__providers-section {
      padding: 60px 0;
      background-color: #000000;
    }

    .page-bet88__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
    }

    .page-bet88__provider-logo {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px; /* Fixed height for uniformity */
      width: 100%;
      max-width: 200px; /* Max width for logos */
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-bet88__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-bet88__provider-logo img {
      max-width: 100%;
      max-height: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }

    /* About Section */
    .page-bet88__about-section {
      padding: 60px 0;
      background-color: #0d0d0d;
    }

    .page-bet88__about-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .page-bet88__about-text {
      max-width: 800px;
      text-align: center;
    }

    .page-bet88__about-image {
      width: 100%;
      max-width: 600px;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      box-sizing: border-box;
    }
    .page-bet88__about-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* FAQ Section */
    .page-bet88__faq-section {
      padding: 60px 0;
      background-color: #000000;
    }

    .page-bet88__faq-list {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-bet88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #2a2a2a;
      color: #FFD700;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-bet88__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-bet88__faq-question h3 {
      margin: 0;
      text-align: left;
      flex-grow: 1;
      color: #FFD700;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-bet88__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-bet88__faq-item.active .page-bet88__faq-toggle {
      transform: rotate(45deg);
    }

    .page-bet88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #1a1a1a;
      color: #ffffff;
      opacity: 0;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-bet88__hero-section,
      .page-bet88__intro-section {
        padding-top: 100px; /* Safety zone for fixed header on mobile */
      }

      .page-bet88 h1 {
        font-size: 2em;
      }

      .page-bet88 h2 {
        font-size: 1.8em;
      }

      .page-bet88 h3 {
        font-size: 1.5em;
      }

      .page-bet88__hero-description {
        font-size: 1em;
      }

      .page-bet88__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }

      .page-bet88__game-card {
        padding: 15px;
      }

      .page-bet88__game-card-title {
        font-size: 1.1em;
      }

      .page-bet88__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-bet88__provider-logo {
        height: 80px;
        max-width: 150px;
        padding: 10px;
      }

      .page-bet88__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-bet88__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-bet88__faq-answer {
        padding: 0 20px;
      }

      .page-bet88__faq-item.active .page-bet88__faq-answer {
        padding: 15px 20px !important;
      }

      /* Image responsiveness for mobile */
      .page-bet88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-bet88__hero-image,
      .page-bet88__game-card-image,
      .page-bet88__provider-logo,
      .page-bet88__about-image {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  