
    /* Global styles for the page-bi88daga scope */
    .page-bi88daga {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      overflow-x: hidden;
    }

    /* Fixed header padding */
    .page-bi88daga__hero-section {
      padding-top: 120px; /* Desktop padding for fixed header */
    }

    @media (max-width: 768px) {
      .page-bi88daga__hero-section {
        padding-top: 100px; /* Mobile padding for fixed header */
      }
    }

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

    .page-bi88daga__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-bi88daga__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-bi88daga__section-title {
      font-size: 2.8em;
      margin-bottom: 30px;
      color: #2980b9;
      font-weight: bold;
    }

    .page-bi88daga__section--dark .page-bi88daga__section-title {
      color: #3498db;
    }

    .page-bi88daga__text-center {
      text-align: center;
    }

    .page-bi88daga__button {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      border: none;
      cursor: pointer;
    }

    .page-bi88daga__button:hover {
      background-color: #c0392b;
    }

    /* Hero Section */
    .page-bi88daga__hero-section {
      background: linear-gradient(135deg, #1abc9c, #2ecc71);
      color: #fff;
      text-align: center;
      padding-bottom: 40px;
    }

    .page-bi88daga__hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .page-bi88daga__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #fff;
    }

    .page-bi88daga__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #ecf0f1;
    }

    .page-bi88daga__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-top: 30px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

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

    /* Floating Login Button */
    .page-bi88daga__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #f39c12;
      color: #fff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      animation: page-bi88daga__pulse 2s infinite;
      display: flex;
      align-items: center;
      gap: 10px;
      border: none;
      cursor: pointer;
    }

    .page-bi88daga__floating-button:hover {
      background-color: #e67e22;
    }

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

    /* Game Categories */
    .page-bi88daga__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-bi88daga__category-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      min-height: 280px;
    }

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

    .page-bi88daga__category-icon {
      width: 100%;
      max-width: 150px; /* Max-width for visual size, actual image from GALLERY is larger */
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-bi88daga__category-title {
      font-size: 1.5em;
      color: #2980b9;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-bi88daga__category-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-bi88daga__category-link {
      background-color: #3498db;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-bi88daga__category-link:hover {
      background-color: #2980b9;
    }

    /* Game Providers */
    .page-bi88daga__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-bi88daga__provider-item {
      background-color: #fff;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease;
      min-height: 100px;
    }

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

    .page-bi88daga__provider-logo {
      max-width: 100%;
      max-height: 80px; /* Ensure logos are not too small but fit */
      height: auto;
      display: block;
    }

    /* Game Rankings */
    .page-bi88daga__ranking-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-bi88daga__ranking-item {
      background-color: #fff;
      border-left: 5px solid #f39c12;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: left;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .page-bi88daga__ranking-item:nth-child(1) { border-left-color: #e74c3c; }
    .page-bi88daga__ranking-item:nth-child(2) { border-left-color: #f1c40f; }
    .page-bi88daga__ranking-item:nth-child(3) { border-left-color: #2ecc71; }

    .page-bi88daga__ranking-number {
      font-size: 2.2em;
      font-weight: bold;
      color: #f39c12;
      width: 40px;
      text-align: center;
    }

    .page-bi88daga__ranking-item:nth-child(1) .page-bi88daga__ranking-number { color: #e74c3c; }
    .page-bi88daga__ranking-item:nth-child(2) .page-bi88daga__ranking-number { color: #f1c40f; }
    .page-bi88daga__ranking-item:nth-child(3) .page-bi88daga__ranking-number { color: #2ecc71; }

    .page-bi88daga__ranking-name {
      font-size: 1.4em;
      font-weight: bold;
      color: #34495e;
    }

    /* FAQ Section */
    .page-bi88daga__faq-section {
      background-color: #ecf0f1;
    }

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

    .page-bi88daga__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-bi88daga__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-bi88daga__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-bi88daga__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #2c3e50;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-bi88daga__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #3498db;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
      width: 25px; /* Fixed width to prevent layout shift */
      text-align: center;
    }

    .page-bi88daga__faq-item.active .page-bi88daga__faq-toggle {
      transform: rotate(45deg); /* Visually change + to x or - */
    }

    .page-bi88daga__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;
      opacity: 0;
      color: #555;
      text-align: left;
    }

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

    .page-bi88daga__faq-answer p {
      margin-bottom: 10px;
    }
    .page-bi88daga__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-bi88daga__hero-title {
        font-size: 2.5em;
      }

      .page-bi88daga__hero-subtitle {
        font-size: 1.2em;
      }

      .page-bi88daga__section-title {
        font-size: 2em;
      }

      .page-bi88daga__game-categories {
        grid-template-columns: 1fr;
      }

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

      .page-bi88daga__ranking-list {
        grid-template-columns: 1fr;
      }

      .page-bi88daga__ranking-item {
        padding: 15px;
      }

      .page-bi88daga__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-bi88daga__faq-question {
        padding: 15px 20px;
      }

      .page-bi88daga__faq-question h3 {
        font-size: 1.1em;
      }

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

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

      /* Ensure all images are responsive on mobile */
      .page-bi88daga img {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-bi88daga__hero-image-wrapper,
      .page-bi88daga__category-icon,
      .page-bi88daga__provider-logo {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  