
    :root {
      --page-888b-primary-bg: #1a1a1a;
      --page-888b-secondary-bg: #282828;
      --page-888b-text-color: #f0f0f0;
      --page-888b-accent-color: #FFD700; /* Gold */
      --page-888b-button-bg: #E74C3C; /* Red for urgency/promo */
      --page-888b-button-hover-bg: #C0392B;
      --page-888b-border-color: #444;
      --page-888b-card-bg: #333;
      --page-888b-shadow: rgba(0, 0, 0, 0.5);
    }

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

    .page-888b-section {
      padding: 20px;
      margin-bottom: 20px;
      background-color: var(--page-888b-secondary-bg);
      border-radius: 8px;
      box-shadow: 0 4px 8px var(--page-888b-shadow);
    }

    .page-888b-hero {
      position: relative;
      text-align: center;
      padding: 40px 20px;
      background-size: cover;
      background-position: center;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 0; /* Full width banner */
      margin-bottom: 0;
      overflow: hidden;
    }

    .page-888b-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
        z-index: 1;
    }

    .page-888b-hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: auto;
    }

    .page-888b-hero h1 {
      font-size: 2.2em;
      color: var(--page-888b-accent-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px var(--page-888b-shadow);
    }

    .page-888b-hero p {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-888b-text-color);
    }

    .page-888b-button {
      display: inline-block;
      background-color: var(--page-888b-button-bg);
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-888b-button:hover {
      background-color: var(--page-888b-button-hover-bg);
      transform: translateY(-2px);
    }

    .page-888b-floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      background-color: var(--page-888b-button-bg);
      color: #fff;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: page-888b-pulse 2s infinite;
    }

    .page-888b-floating-button:hover {
      background-color: var(--page-888b-button-hover-bg);
      animation: none;
    }

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

    .page-888b-h2 {
      font-size: 1.8em;
      color: var(--page-888b-accent-color);
      text-align: center;
      margin-bottom: 30px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--page-888b-border-color);
    }

    .page-888b-h3 {
      font-size: 1.4em;
      color: var(--page-888b-text-color);
      margin-bottom: 15px;
    }

    .page-888b-games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      text-align: center;
    }

    .page-888b-game-card {
      background-color: var(--page-888b-card-bg);
      border-radius: 10px;
      padding: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-888b-game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px var(--page-888b-shadow);
    }

    .page-888b-game-card img {
      max-width: 100%;
      height: 100px;
      object-fit: contain;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .page-888b-game-card span {
      font-weight: bold;
      color: var(--page-888b-accent-color);
      font-size: 1em;
    }

    .page-888b-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .page-888b-list li {
      background-color: var(--page-888b-card-bg);
      margin-bottom: 10px;
      padding: 15px;
      border-left: 4px solid var(--page-888b-accent-color);
      border-radius: 5px;
      display: flex;
      align-items: flex-start;
    }

    .page-888b-list li::before {
      content: '✔';
      color: var(--page-888b-accent-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-888b-faq-item {
      background-color: var(--page-888b-card-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-888b-faq-question {
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      color: var(--page-888b-accent-color);
      border-bottom: 1px solid var(--page-888b-border-color);
    }

    .page-888b-faq-question.active {
        border-bottom: none;
    }

    .page-888b-faq-question span {
      transition: transform 0.3s ease;
    }

    .page-888b-faq-question.active span {
      transform: rotate(180deg);
    }

    .page-888b-faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      color: var(--page-888b-text-color);
    }

    .page-888b-faq-answer p {
        padding-bottom: 15px;
    }

    .page-888b-provider-logo {
        width: 80px;
        height: 50px;
        object-fit: contain;
        margin: 5px;
        filter: grayscale(80%) brightness(150%);
        transition: filter 0.3s ease;
    }

    .page-888b-provider-logo:hover {
        filter: grayscale(0%) brightness(100%);
    }

    .page-888b-providers-grid, .page-888b-payment-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    @media (min-width: 768px) {
      .page-888b-hero h1 {
        font-size: 3em;
      }
      .page-888b-h2 {
        font-size: 2.5em;
      }
      .page-888b-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }
      .page-888b-section {
        padding: 30px;
      }
    }

    @media (min-width: 1024px) {
      .page-888b-hero {
        min-height: 350px;
      }
      .page-888b-hero h1 {
        font-size: 3.5em;
      }
      .page-888b-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }
  