
    :root {
      --page-123b-primary-bg: #000000;
      --page-123b-secondary-bg: #1a1a1a;
      --page-123b-primary-text: #FFFFFF;
      --page-123b-accent-color: #FFD700; /* Gold/Yellow */
      --page-123b-border-color: #333333;
    }

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

    .page-123b__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-123b__hero-section {
      text-align: center;
      padding-top: 150px; /* Safety zone for fixed header */
      padding-bottom: 40px;
      background-color: var(--page-123b-primary-bg);
      position: relative;
      overflow: hidden;
    }

    .page-123b__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-123b__hero-content {
      position: relative;
      z-index: 1;
      margin-top: 20px;
    }

    .page-123b__hero-title {
      font-size: 2.5em;
      color: var(--page-123b-accent-color);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-123b__hero-description {
      font-size: 1.1em;
      color: var(--page-123b-primary-text);
      max-width: 800px;
      margin: 0 auto 30px auto;
    }

    .page-123b__button {
      display: inline-block;
      background-color: var(--page-123b-accent-color);
      color: var(--page-123b-primary-bg);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-123b__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-123b__section {
      padding: 40px 0;
      background-color: var(--page-123b-primary-bg);
    }

    .page-123b__section--dark {
      background-color: var(--page-123b-secondary-bg);
    }

    .page-123b__section-title {
      font-size: 2em;
      color: var(--page-123b-accent-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-123b__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-123b-accent-color);
    }

    .page-123b__text-block {
      margin-bottom: 20px;
      color: var(--page-123b-primary-text);
      font-size: 1em;
    }

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

    .page-123b__game-item {
      background-color: var(--page-123b-secondary-bg);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding: 20px 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-123b__game-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-123b__game-image {
      width: 100%;
      max-width: 250px;
      height: auto;
      border-radius: 4px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-123b__game-title {
      font-size: 1.2em;
      color: var(--page-123b-accent-color);
      margin-bottom: 10px;
    }

    .page-123b__game-description {
      font-size: 0.9em;
      color: var(--page-123b-primary-text);
    }

    .page-123b__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 15px;
      margin-top: 30px;
    }

    .page-123b__provider-item {
      background-color: var(--page-123b-secondary-bg);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-123b__provider-logo {
      width: 100%;
      max-width: 150px;
      height: auto;
      display: block;
      margin: 0 auto 10px auto;
    }

    .page-123b__provider-name {
      font-size: 0.9em;
      color: var(--page-123b-primary-text);
      font-weight: bold;
    }

    .page-123b__promo-card {
      background-color: var(--page-123b-secondary-bg);
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .page-123b__promo-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 4px;
      margin-bottom: 20px;
    }

    .page-123b__promo-title {
      font-size: 1.5em;
      color: var(--page-123b-accent-color);
      margin-bottom: 10px;
    }

    .page-123b__promo-description {
      font-size: 1em;
      color: var(--page-123b-primary-text);
      margin-bottom: 20px;
    }

    .page-123b__cta-section {
      text-align: center;
      padding: 50px 0;
      background-color: var(--page-123b-secondary-bg);
    }

    .page-123b__cta-title {
      font-size: 2em;
      color: var(--page-123b-accent-color);
      margin-bottom: 20px;
    }

    .page-123b__cta-description {
      font-size: 1.1em;
      color: var(--page-123b-primary-text);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-123b__faq-section {
      padding: 50px 0;
      background-color: var(--page-123b-primary-bg);
    }

    .page-123b__faq-item {
      background-color: var(--page-123b-secondary-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-123b__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-123b-border-color);
      color: var(--page-123b-accent-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-123b__faq-question:hover {
      background-color: #444444;
    }

    .page-123b__faq-question h3 {
      margin: 0;
      color: var(--page-123b-accent-color);
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-123b__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-123b__faq-item.active .page-123b__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-123b__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-123b-primary-text);
      font-size: 0.95em;
    }

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

    .page-123b__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-123b-accent-color);
      color: var(--page-123b-primary-bg);
      padding: 15px 25px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: page-123b-pulse 2s infinite;
      text-align: center;
      cursor: default; /* No actual link */
      user-select: none;
    }

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

    /* General image responsiveness */
    .page-123b img {
      max-width: 100%;
      height: auto;
      display: block;
      box-sizing: border-box;
      /* No filter properties */
    }

    .page-123b__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-123b__hero-section {
        padding-top: 150px; /* Maintain safety zone */
        padding-bottom: 30px;
      }

      .page-123b__hero-title {
        font-size: 2em;
      }

      .page-123b__hero-description {
        font-size: 1em;
      }

      .page-123b__section-title {
        font-size: 1.8em;
      }

      .page-123b__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }

      .page-123b__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-123b__promo-title {
        font-size: 1.3em;
      }

      .page-123b__cta-title {
        font-size: 1.8em;
      }

      .page-123b__floating-button {
        font-size: 1em;
        padding: 12px 20px;
        bottom: 15px;
        right: 15px;
      }

      .page-123b img {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-123b__hero-title {
        font-size: 1.8em;
      }

      .page-123b__game-grid {
        grid-template-columns: 1fr;
      }

      .page-123b__provider-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .page-123b__floating-button {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }
  