
    :root {
      --page-123-b-primary-color: #e0b000; /* Gold-like */
      --page-123-b-secondary-color: #333; /* Dark gray */
      --page-123-b-background-dark: #1a1a1a; /* Very dark gray */
      --page-123-b-background-light: #2a2a2a; /* Slightly lighter dark gray */
      --page-123-b-text-light: #f0f0f0;
      --page-123-b-text-dark: #1a1a1a;
      --page-123-b-accent-color: #007bff; /* Blue for links/buttons */
      --page-123-b-border-color: #444;
      --header-offset: 122px; /* Default value if not set by shared.css */
    }

    .page-123-b {
      font-family: 'Arial', sans-serif;
      color: var(--page-123-b-text-light);
      background-color: var(--page-123-b-background-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Fixed navigation bar spacing */
    .page-123-b__hero-section {
      padding-top: 10px; /* Small decorative top padding, assuming body handles header offset */
    }
    
    .page-123-b__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
    }

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

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

    .page-123-b__hero-section {
      text-align: center;
      padding: 80px 20px 60px;
      background: var(--page-123-b-background-light);
      border-bottom: 1px solid var(--page-123-b-border-color);
      box-sizing: border-box;
    }

    .page-123-b__hero-title {
      font-size: 3em;
      color: var(--page-123-b-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-123-b__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-123-b-text-light);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-123-b__cta-button {
      display: inline-block;
      background-color: var(--page-123-b-primary-color);
      color: var(--page-123-b-background-dark);
      padding: 15px 30px;
      border-radius: 5px;
      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-123-b__cta-button:hover {
      background-color: #ffd700; /* Lighter gold */
      transform: translateY(-2px);
    }

    .page-123-b__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-123-b__floating-buttons a {
      background-color: var(--page-123-b-primary-color);
      color: var(--page-123-b-background-dark);
      padding: 12px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 120px;
    }

    .page-123-b__floating-buttons a:hover {
      background-color: #ffd700;
      transform: scale(1.05);
    }

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

    .page-123-b__game-card {
      background-color: var(--page-123-b-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      padding-bottom: 20px;
    }

    .page-123-b__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-123-b__game-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-123-b__game-title {
      font-size: 1.5em;
      color: var(--page-123-b-primary-color);
      margin: 20px 0 10px;
    }

    .page-123-b__game-description {
      padding: 0 15px;
      color: var(--page-123-b-text-light);
      font-size: 0.95em;
    }

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

    .page-123-b__promo-item {
      background-color: var(--page-123-b-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-123-b__promo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-123-b__promo-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-123-b__promo-content {
      padding: 20px;
    }

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

    .page-123-b__promo-description {
      color: var(--page-123-b-text-light);
      font-size: 0.9em;
      margin-bottom: 15px;
    }

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

    .page-123-b__feature-item {
      background-color: var(--page-123-b-background-light);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-123-b__feature-item:hover {
      background-color: #3a3a3a;
    }

    .page-123-b__feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 15px;
      display: block;
      max-width: 100%;
      object-fit: contain;
      box-sizing: border-box;
    }

    .page-123-b__feature-title {
      font-size: 1.3em;
      color: var(--page-123-b-primary-color);
      margin-bottom: 10px;
    }

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

    .page-123-b__faq-list {
      margin-top: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-123-b__faq-item {
      background-color: var(--page-123-b-background-light);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

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

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

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

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

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

    .page-123-b__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      color: var(--page-123-b-text-light);
      background-color: var(--page-123-b-background-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-123-b__hero-title {
        font-size: 2.2em;
      }

      .page-123-b__hero-subtitle {
        font-size: 1.2em;
      }

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

      .page-123-b__section {
        padding: 30px 15px;
      }

      .page-123-b__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on mobile */
        width: calc(100% - 30px);
        justify-content: space-around;
      }
      
      .page-123-b__floating-buttons a {
          padding: 10px 15px;
          min-width: unset;
          flex-grow: 1;
      }

      .page-123-b__game-categories,
      .page-123-b__promotions-grid,
      .page-123-b__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* Image responsive optimization */
      .page-123-b img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-123-b__game-image,
      .page-123-b__promo-image,
      .page-123-b__feature-icon {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important; /* Ensure height adjusts */
        box-sizing: border-box !important;
        object-fit: cover !important; /* Maintain aspect ratio and cover */
      }
      .page-123-b__game-image { height: 180px !important; } /* Adjust height for mobile */
      .page-123-b__promo-image { height: 160px !important; } /* Adjust height for mobile */
      .page-123-b__feature-icon { width: 60px !important; height: 60px !important; } /* Adjust for mobile */

      /* List item mobile responsive requirement */
      .page-123-b__game-card,
      .page-123-b__promo-item,
      .page-123-b__feature-item,
      .page-123-b__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-123-b__faq-answer {
          padding: 15px !important; /* Adjust padding for mobile */
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
      .page-123-b__faq-question {
          padding: 15px !important;
          font-size: 1em !important;
      }
      .page-123-b__faq-question h3 {
          font-size: 1em !important;
      }
    }
  