
    :root {
      --page-b52game-primary-bg: #1a1a2e;
      --page-b52game-secondary-bg: #16213e;
      --page-b52game-text-color: #e0e0e0;
      --page-b52game-heading-color: #e94560;
      --page-b52game-accent-color: #f39c12;
      --page-b52game-button-bg: #e94560;
      --page-b52game-button-text: #ffffff;
      --page-b52game-border-color: #0f3460;
      --page-b52game-card-bg: #0f3460;
    }

    .page-b52game {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-b52game-primary-bg);
      color: var(--page-b52game-text-color);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-b52game-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-b52game-section {
      padding: 40px 0;
      text-align: center;
    }

    .page-b52game-section:nth-child(even) {
      background-color: var(--page-b52game-secondary-bg);
    }

    .page-b52game-heading {
      color: var(--page-b52game-heading-color);
      font-size: 2.5em;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
    }
    
    .page-b52game-subheading {
      color: var(--page-b52game-accent-color);
      font-size: 1.8em;
      margin-bottom: 15px;
    }

    .page-b52game-paragraph {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: var(--page-b52game-text-color);
    }

    .page-b52game-button {
      display: inline-block;
      background-color: var(--page-b52game-button-bg);
      color: var(--page-b52game-button-text);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-b52game-button:hover {
      background-color: #c43c51;
      transform: translateY(-2px);
    }

    .page-b52game-banner {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: var(--page-b52game-secondary-bg);
      padding-bottom: 20px;
    }

    .page-b52game-banner-image {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      display: block;
      margin: 0 auto;
    }

    .page-b52game-banner-content {
      text-align: center;
      padding: 20px 15px;
    }

    .page-b52game-banner-content .page-b52game-heading {
      font-size: 2.2em;
      margin-top: 10px;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-b52game-games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

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

    .page-b52game-game-card:hover {
      transform: translateY(-5px);
    }

    .page-b52game-game-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      display: block;
      margin-bottom: 10px;
    }

    .page-b52game-game-card h3 {
      font-size: 1.2em;
      color: var(--page-b52game-accent-color);
      margin: 0 10px 10px;
    }
    
    .page-b52game-game-card a {
      color: var(--page-b52game-accent-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

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

    .page-b52game-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-b52game-list li {
      background-color: var(--page-b52game-card-bg);
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-b52game-list li::before {
      content: '✔';
      color: var(--page-b52game-accent-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
      line-height: 1;
    }
    
    .page-b52game-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-b52game-button-bg);
      color: var(--page-b52game-button-text);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: page-b52game-pulse 1.5s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      max-width: 250px;
    }

    .page-b52game-floating-button:hover {
      background-color: #c43c51;
      animation: none;
    }

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

    .page-b52game-faq-item {
      background-color: var(--page-b52game-card-bg);
      margin-bottom: 10px;
      border-radius: 8px;
      text-align: left;
      overflow: hidden;
    }

    .page-b52game-faq-question {
      padding: 15px 20px;
      cursor: pointer;
      font-weight: bold;
      color: var(--page-b52game-heading-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1em;
    }

    .page-b52game-faq-question::after {
      content: '+';
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }

    .page-b52game-faq-question.active::after {
      content: '-';
      transform: rotate(180deg);
    }

    .page-b52game-faq-answer {
      padding: 0 20px 15px;
      color: var(--page-b52game-text-color);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    }

    .page-b52game-faq-answer.active {
      max-height: 200px; /* Adjust as needed */
      padding-top: 10px;
    }

    @media (max-width: 768px) {
      .page-b52game-heading {
        font-size: 2em;
      }
      .page-b52game-subheading {
        font-size: 1.5em;
      }
      .page-b52game-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }
      .page-b52game-game-card img {
        height: 100px;
      }
      .page-b52game-floating-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 1em;
        max-width: 90%;
        left: 50%;
        transform: translateX(-50%);
      }
      @keyframes page-b52game-pulse {
        0% { transform: translateX(-50%) scale(1); }
        50% { transform: translateX(-50%) scale(1.05); }
        100% { transform: translateX(-50%) scale(1); }
      }
    }

    @media (max-width: 480px) {
      .page-b52game-heading {
        font-size: 1.8em;
      }
      .page-b52game-subheading {
        font-size: 1.3em;
      }
      .page-b52game-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-b52game-game-card h3 {
        font-size: 1em;
      }
    }
  