
    :root {
      --page-88clb-primary-bg: #1a1a1a;
      --page-88clb-secondary-bg: #2c2c2c;
      --page-88clb-accent-color: #ffd700; /* Gold */
      --page-88clb-text-color: #ffffff;
      --page-88clb-light-text: #e0e0e0;
      --page-88clb-border-color: #444444;
      --page-88clb-button-hover: #e6c200;
      --page-88clb-shadow: rgba(0, 0, 0, 0.5);
    }

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

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

    /* Hero Section */
    .page-88clb-hero {
      position: relative;
      width: 100%;
      min-height: 250px; /* Adjusted for mobile-first banner */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px 0;
      overflow: hidden;
      background: linear-gradient(135deg, var(--page-88clb-primary-bg), var(--page-88clb-secondary-bg));
      border-bottom: 2px solid var(--page-88clb-border-color);
    }

    .page-88clb-hero-banner {
      width: 100%;
      max-width: 768px; /* Max width for mobile banner */
      height: auto;
      display: block;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px var(--page-88clb-shadow);
    }

    .page-88clb-hero h1 {
      font-size: 2.2em;
      color: var(--page-88clb-accent-color);
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px var(--page-88clb-shadow);
      line-height: 1.2;
    }

    .page-88clb-hero p {
      font-size: 1.1em;
      color: var(--page-88clb-light-text);
      margin-bottom: 25px;
      max-width: 800px;
    }

    .page-88clb-btn-hero {
      display: inline-block;
      background-color: var(--page-88clb-accent-color);
      color: var(--page-88clb-primary-bg);
      padding: 12px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px var(--page-88clb-shadow);
    }

    .page-88clb-btn-hero:hover {
      background-color: var(--page-88clb-button-hover);
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-88clb-section {
      padding: 40px 0;
      border-bottom: 1px solid var(--page-88clb-border-color);
    }

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

    .page-88clb-section h2 {
      font-size: 2em;
      color: var(--page-88clb-accent-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-88clb-section h2::after {
      content: '';
      width: 60px;
      height: 3px;
      background-color: var(--page-88clb-accent-color);
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .page-88clb-section p {
      margin-bottom: 15px;
      color: var(--page-88clb-light-text);
    }

    .page-88clb-section ul {
      list-style-type: none;
      padding-left: 0;
    }

    .page-88clb-section ul li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
      color: var(--page-88clb-light-text);
    }

    .page-88clb-section ul li::before {
      content: '✅';
      position: absolute;
      left: 0;
      color: var(--page-88clb-accent-color);
    }

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

    .page-88clb-game-card {
      background-color: var(--page-88clb-secondary-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px var(--page-88clb-shadow);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-88clb-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--page-88clb-shadow);
    }

    .page-88clb-game-card img {
      width: 100%;
      height: 120px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-88clb-game-card-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-88clb-game-card h3 {
      font-size: 1.2em;
      color: var(--page-88clb-accent-color);
      margin-bottom: 10px;
    }

    .page-88clb-game-card p {
      font-size: 0.9em;
      color: var(--page-88clb-light-text);
      margin-bottom: 10px;
    }

    .page-88clb-game-card a {
      color: var(--page-88clb-accent-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-88clb-game-card a:hover {
      color: var(--page-88clb-button-hover);
    }

    /* Floating Login/Register Button */
    .page-88clb-floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e21c3c; /* A distinct, attractive red */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-88clb-floating-btn:hover {
      background-color: #c71734;
      transform: translateY(-3px);
    }

    .page-88clb-floating-btn .icon {
      font-size: 1.3em;
    }

    /* Responsive Adjustments */
    @media (min-width: 768px) {
      .page-88clb-hero {
        min-height: 350px;
        padding: 40px 0;
      }
      .page-88clb-hero-banner {
        max-width: 90%;
        height: 250px; /* Larger banner for desktop */
        margin-bottom: 30px;
      }
      .page-88clb-hero h1 {
        font-size: 3em;
      }
      .page-88clb-hero p {
        font-size: 1.2em;
      }
      .page-88clb-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
      .page-88clb-game-card img {
        height: 150px;
      }
      .page-88clb-section h2 {
        font-size: 2.5em;
      }
    }

    @media (min-width: 1024px) {
      .page-88clb-hero-banner {
        max-width: 800px; /* Even larger banner for wider screens */
        height: 300px;
      }
      .page-88clb-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
  