
    /* Base styles for the page-888bonline */
    .page-888bonline {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0; /* Light grey for text */
      background-color: #0a0a0a; /* Very dark background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed footer/buttons */
    }

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

    /* Neon-like button styles */
    .page-888bonline .neon-btn {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      text-transform: uppercase;
      color: #00ffcc; /* Bright cyan */
      background: linear-gradient(45deg, #00ffcc, #00ccff);
      border: none;
      box-shadow: 0 0 10px #00ffcc, 0 0 20px #00ccff;
      transition: all 0.3s ease;
      cursor: pointer;
      text-align: center;
      line-height: 1; /* Ensure text is vertically centered */
    }

    .page-888bonline .neon-btn:hover {
      color: #0a0a0a;
      background: linear-gradient(45deg, #00ccff, #00ffcc);
      box-shadow: 0 0 20px #00ccff, 0 0 40px #00ffcc;
      transform: translateY(-2px);
    }

    /* Section styling */
    .page-888bonline .section {
      padding: 40px 0;
      text-align: center;
      position: relative;
    }

    .page-888bonline .section-title {
      font-size: 2.5em;
      color: #ff00ff; /* Bright magenta */
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-shadow: 0 0 8px #ff00ff, 0 0 15px #ff00ff;
    }

    .page-888bonline .section-subtitle {
      font-size: 1.2em;
      color: #00ffcc; /* Bright cyan */
      margin-bottom: 40px;
      text-shadow: 0 0 5px #00ffcc;
    }

    /* Hero Banner */
    .page-888bonline .hero-banner {
      width: 100%;
      overflow: hidden;
      position: relative;
      background-color: #0a0a0a; /* Ensure dark background */
      padding-top: 160px; /* Safety area for floating menu (140px-180px) */
      padding-bottom: 20px;
    }

    .page-888bonline .hero-banner__image {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 0 auto; /* Center the image */
      border-radius: 15px;
      box-shadow: 0 0 25px rgba(0, 255, 204, 0.7), 0 0 50px rgba(255, 0, 255, 0.5);
    }

    .page-888bonline .hero-banner__content {
      padding: 20px 15px;
      text-align: center;
      position: relative;
      z-index: 10;
    }

    .page-888bonline .hero-banner__title {
      font-size: 2.8em;
      color: #ffff00; /* Bright yellow */
      margin-bottom: 15px;
      text-shadow: 0 0 10px #ffff00, 0 0 20px #ffcc00;
      line-height: 1.2;
    }

    .page-888bonline .hero-banner__description {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login Button */
    .page-888bonline .floating-login-btn {
      position: fixed;
      top: 20px; /* Adjusted to be near the top, allowing for banner safety zone */
      right: 20px;
      z-index: 1000;
      animation: pulse 1.5s infinite;
      box-shadow: 0 0 15px rgba(0, 255, 204, 0.9), 0 0 30px rgba(0, 204, 255, 0.7);
    }

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

    /* Game Categories */
    .page-888bonline .game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

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

    .page-888bonline .game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px rgba(255, 0, 255, 0.7), 0 0 30px rgba(0, 255, 204, 0.5);
    }

    .page-888bonline .game-card__icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #00ffcc;
      box-shadow: 0 0 10px #00ffcc;
    }

    .page-888bonline .game-card__title {
      font-size: 1.2em;
      color: #00ffcc;
      font-weight: bold;
      text-decoration: none;
      text-shadow: 0 0 5px #00ffcc;
    }

    .page-888bonline .game-card__title:hover {
      text-decoration: underline;
      color: #00ccff;
    }

    /* Game Providers */
    .page-888bonline .game-providers {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }

    .page-888bonline .provider-logo {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 70px;
      box-shadow: 0 0 8px rgba(0, 204, 255, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-888bonline .provider-logo:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(0, 204, 255, 0.7), 0 0 25px rgba(255, 0, 255, 0.5);
    }

    .page-888bonline .provider-logo img {
      max-width: 90%;
      max-height: 90%;
      object-fit: contain;
      filter: brightness(1.2) drop-shadow(0 0 5px #00ccff); /* Neon glow effect */
    }

    /* Promotional Cards / Articles */
    .page-888bonline .promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-888bonline .promo-card {
      background-color: #1a1a1a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 12px rgba(255, 0, 255, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-888bonline .promo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 0 25px rgba(255, 0, 255, 0.7), 0 0 40px rgba(0, 255, 204, 0.5);
    }

    .page-888bonline .promo-card__image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-bottom: 2px solid #00ffcc;
    }

    .page-888bonline .promo-card__content {
      padding: 20px;
    }

    .page-888bonline .promo-card__title {
      font-size: 1.4em;
      color: #ffff00;
      margin-bottom: 10px;
      text-shadow: 0 0 5px #ffff00;
      text-decoration: none; /* For link titles */
      display: block;
    }

    .page-888bonline .promo-card__title:hover {
        text-decoration: underline;
        color: #00ffcc;
    }

    .page-888bonline .promo-card__description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
    }

    .page-888bonline .promo-card__link {
      color: #00ccff;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.2s ease;
    }

    .page-888bonline .promo-card__link:hover {
      color: #00ffcc;
      text-decoration: underline;
    }

    /* Payment Methods */
    .page-888bonline .payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }

    .page-888bonline .payment-logo {
      background-color: #1a1a1a;
      border-radius: 8px;
      padding: 10px 15px;
      box-shadow: 0 0 8px rgba(255, 0, 255, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-888bonline .payment-logo:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(255, 0, 255, 0.7), 0 0 25px rgba(0, 255, 204, 0.5);
    }

    .page-888bonline .payment-logo img {
      height: 40px;
      width: auto;
      object-fit: contain;
      filter: brightness(1.2) drop-shadow(0 0 5px #ff00ff);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-888bonline .section-title {
        font-size: 2em;
      }
      .page-888bonline .hero-banner__title {
        font-size: 2em;
      }
      .page-888bonline .hero-banner {
        padding-top: 100px; /* Adjust safety area for smaller screens */
      }
      .page-888bonline .floating-login-btn {
        top: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-888bonline .section-title {
        font-size: 1.8em;
      }
      .page-888bonline .hero-banner__title {
        font-size: 1.8em;
      }
      .page-888bonline .hero-banner__description {
        font-size: 1em;
      }
      .page-888bonline .game-categories {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-888bonline .game-card__icon {
        width: 60px;
        height: 60px;
      }
      .page-888bonline .game-card__title {
        font-size: 1em;
      }
      .page-888bonline .promo-grid {
        grid-template-columns: 1fr;
      }
    }
  