
    :root {
      --page-b66clubonline__primary-color: #ff4500; /* OrangeRed */
      --page-b66clubonline__secondary-color: #ffd700; /* Gold */
      --page-b66clubonline__dark-bg: #1a1a1a;
      --page-b66clubonline__light-bg: #f5f5f5;
      --page-b66clubonline__text-color: #ffffff;
      --page-b66clubonline__dark-text-color: #333333;
      --page-b66clubonline__border-color: #333333;
      --page-b66clubonline__accent-color: #007bff; /* Blue for links/buttons */
    }

    .page-b66clubonline {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-b66clubonline__text-color);
      background-color: var(--page-b66clubonline__dark-bg);
      overflow-x: hidden;
    }

    .page-b66clubonline__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #2a2a2a;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-b66clubonline__section--light {
      background-color: var(--page-b66clubonline__light-bg);
      color: var(--page-b66clubonline__dark-text-color);
    }

    .page-b66clubonline__title {
      text-align: center;
      color: var(--page-b66clubonline__primary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-b66clubonline__subtitle {
      text-align: center;
      color: var(--page-b66clubonline__secondary-color);
      margin-bottom: 25px;
      font-size: 1.8em;
      font-weight: 600;
    }

    .page-b66clubonline__text {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    .page-b66clubonline__text strong {
      color: var(--page-b66clubonline__secondary-color);
    }

    /* Hero Section */
    .page-b66clubonline__hero-section {
      position: relative;
      width: 100%;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--page-b66clubonline__text-color);
      overflow: hidden;
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
    }

    .page-b66clubonline__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.6); /* Only for background image, not content images */
    }

    .page-b66clubonline__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      max-width: 900px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-b66clubonline__hero-title {
      font-size: 3em;
      color: var(--page-b66clubonline__primary-color);
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-b66clubonline__hero-description {
      font-size: 1.3em;
      margin-bottom: 20px;
      color: #eee;
    }

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

    .page-b66clubonline__cta-button:hover {
      background-color: var(--page-b66clubonline__secondary-color);
      transform: translateY(-3px);
      color: var(--page-b66clubonline__dark-text-color);
    }

    /* Floating Login Button */
    .page-b66clubonline__floating-promo {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-b66clubonline__primary-color);
      color: var(--page-b66clubonline__text-color);
      padding: 10px 15px;
      border-radius: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      display: flex;
      align-items: center;
      cursor: pointer;
      font-weight: bold;
      animation: page-b66clubonline__pulse 2s infinite;
      text-decoration: none;
      target-name: _blank;
      rel: noopener noreferrer;
    }

    .page-b66clubonline__floating-promo:hover {
      background-color: var(--page-b66clubonline__secondary-color);
      color: var(--page-b66clubonline__dark-text-color);
    }

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

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

    .page-b66clubonline__game-card {
      background-color: #3a3a3a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-b66clubonline__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-b66clubonline__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-b66clubonline__game-card-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-b66clubonline__game-card-title {
      font-size: 1.4em;
      color: var(--page-b66clubonline__secondary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-b66clubonline__game-card-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-b66clubonline__promo-item {
      display: flex;
      align-items: center;
      background-color: #3a3a3a;
      border-radius: 10px;
      margin-bottom: 20px;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-b66clubonline__promo-icon {
      width: 80px;
      height: 80px;
      margin-right: 20px;
      flex-shrink: 0;
      object-fit: contain;
    }

    .page-b66clubonline__promo-details h3 {
      color: var(--page-b66clubonline__primary-color);
      font-size: 1.5em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-b66clubonline__promo-details p {
      color: #ccc;
      margin-bottom: 0;
    }

    /* FAQ Section */
    .page-b66clubonline__faq-container {
      margin-top: 30px;
    }

    .page-b66clubonline__faq-item {
      background-color: #3a3a3a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-b66clubonline__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #4a4a4a;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-b66clubonline__faq-question:hover {
      background-color: #5a5a5a;
    }

    .page-b66clubonline__faq-question h3 {
      margin: 0;
      color: var(--page-b66clubonline__secondary-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-b66clubonline__faq-toggle {
      font-size: 1.8em;
      color: var(--page-b66clubonline__primary-color);
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-b66clubonline__faq-item.active .page-b66clubonline__faq-toggle {
      transform: rotate(45deg);
    }

    .page-b66clubonline__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-b66clubonline__faq-item.active .page-b66clubonline__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-b66clubonline__faq-answer p {
      margin-bottom: 10px;
    }

    /* Irrelevant Keywords Section */
    .page-b66clubonline__disclaimer-section {
      background-color: #222222;
      border-left: 5px solid var(--page-b66clubonline__secondary-color);
      padding: 20px;
      margin-top: 40px;
      border-radius: 8px;
    }

    .page-b66clubonline__disclaimer-section h2 {
      color: var(--page-b66clubonline__primary-color);
      margin-bottom: 15px;
    }

    .page-b66clubonline__disclaimer-section p {
      color: #aaa;
      font-size: 0.95em;
    }

    .page-b66clubonline__disclaimer-keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 15px;
    }

    .page-b66clubonline__disclaimer-keyword {
      background-color: #333;
      color: #eee;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 0.85em;
    }

    /* General Image Styling */
    .page-b66clubonline img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      box-sizing: border-box;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-b66clubonline__hero-section {
        min-height: 300px;
        padding-top: 10px; /* For fixed header */
      }
      .page-b66clubonline__hero-title {
        font-size: 2em;
      }
      .page-b66clubonline__hero-description {
        font-size: 1em;
      }
      .page-b66clubonline__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-b66clubonline__floating-promo {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 0.9em;
      }
      .page-b66clubonline__title {
        font-size: 2em;
      }
      .page-b66clubonline__subtitle {
        font-size: 1.5em;
      }
      .page-b66clubonline__text {
        font-size: 1em;
      }
      .page-b66clubonline__section {
        padding: 20px 15px;
      }
      .page-b66clubonline__game-grid {
        grid-template-columns: 1fr;
      }
      .page-b66clubonline__promo-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
      }
      .page-b66clubonline__promo-icon {
        margin-right: 0;
        margin-bottom: 10px;
      }
      .page-b66clubonline__faq-question {
        padding: 12px 15px;
      }
      .page-b66clubonline__faq-question h3 {
        font-size: 1.1em;
      }
      .page-b66clubonline__faq-answer {
        padding: 15px 15px !important; /* Ensure padding is consistent */
      }

      /* Image responsive important */
      .page-b66clubonline img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* List item responsive important */
      .page-b66clubonline__game-grid > div,
      .page-b66clubonline__promo-item,
      .page-b66clubonline__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-b66clubonline__game-grid {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }
  