
    :root {
      --primary-color: #e44d26; /* A vibrant red-orange for betting */
      --secondary-color: #333;
      --accent-color: #f7b32b; /* Gold/yellow for highlights */
      --text-color: #f0f0f0;
      --bg-dark: #1a1a1a;
      --bg-light: #2c2c2c;
      --border-color: #444;
      --shadow-color: rgba(0, 0, 0, 0.5);
      --button-hover-bg: #ff6a3c;
      --button-active-bg: #c93a1a;
    }

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

    /* General Section Styling */
    .page-123b-mb-com__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--bg-light);
      border-radius: 8px;
      box-shadow: 0 4px 10px var(--shadow-color);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-123b-mb-com__section:first-of-type {
      padding-top: calc(40px + 10px); /* Add 10px for visual separation from header, assuming body padding is handled */
    }

    .page-123b-mb-com__title,
    .page-123b-mb-com__subtitle {
      text-align: center;
      color: var(--primary-color);
      margin-bottom: 30px;
      text-transform: uppercase;
    }

    .page-123b-mb-com__title {
      font-size: 2.5em;
      font-weight: bold;
      margin-top: 0;
      color: var(--accent-color);
    }

    .page-123b-mb-com__subtitle {
      font-size: 1.8em;
      color: var(--text-color);
    }
    
    .page-123b-mb-com__small-title {
        font-size: 1.5em;
        color: var(--primary-color);
        text-align: center;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-123b-mb-com__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-123b-mb-com__hero-section {
      background: linear-gradient(135deg, var(--bg-dark), var(--secondary-color));
      color: var(--text-color);
      text-align: center;
      padding: 60px 20px;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
      padding-top: calc(60px + 10px); /* Ensure space from potential fixed header */
    }

    .page-123b-mb-com__hero-image {
      width: 100%;
      max-width: 800px;
      height: auto;
      border-radius: 12px;
      margin: 30px auto;
      display: block;
      box-shadow: 0 8px 20px var(--shadow-color);
      object-fit: cover;
    }

    /* Floating Buttons */
    .page-123b-mb-com__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 15px 0;
      background-color: rgba(0, 0, 0, 0.9);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.7);
      z-index: 1000;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }

    .page-123b-mb-com__floating-button {
      background-color: var(--primary-color);
      color: var(--text-color);
      border: none;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      text-decoration: none; /* In case it's a div acting as button */
      display: block;
      width: 45%;
      box-sizing: border-box;
    }

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

    .page-123b-mb-com__floating-button:active {
      background-color: var(--button-active-bg);
      transform: translateY(0);
    }
    
    .page-123b-mb-com__floating-button--secondary {
        background-color: var(--accent-color);
        color: var(--secondary-color);
    }
    .page-123b-mb-com__floating-button--secondary:hover {
        background-color: #fcd45a;
    }
    .page-123b-mb-com__floating-button--secondary:active {
        background-color: #d49f1a;
    }

    /* Game Categories */
    .page-123b-mb-com__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-123b-mb-com__category-card {
      background-color: var(--bg-dark);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px var(--shadow-color);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
    }

    .page-123b-mb-com__category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    }

    .page-123b-mb-com__category-image {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
    }

    .page-123b-mb-com__category-name {
      font-size: 1.4em;
      font-weight: bold;
      color: var(--accent-color);
      margin-bottom: 10px;
      padding: 0 15px;
    }

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

    /* Promotions Section */
    .page-123b-mb-com__promotion-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-123b-mb-com__promotion-item {
      background-color: var(--bg-dark);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 20px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 8px var(--shadow-color);
    }

    .page-123b-mb-com__promotion-icon {
      width: 80px;
      height: 80px;
      margin-right: 20px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .page-123b-mb-com__promotion-content {
      flex-grow: 1;
    }

    .page-123b-mb-com__promotion-title {
      font-size: 1.3em;
      color: var(--accent-color);
      margin-bottom: 8px;
    }

    .page-123b-mb-com__promotion-description {
      font-size: 1em;
      color: var(--text-color);
    }
    
    .page-123b-mb-com__promotion-link {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--text-color);
        padding: 8px 15px;
        border-radius: 20px;
        margin-top: 10px;
        text-decoration: none;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
    }

    .page-123b-mb-com__promotion-link:hover {
        background-color: var(--button-hover-bg);
    }

    /* Features Section */
    .page-123b-mb-com__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-123b-mb-com__feature-card {
      background-color: var(--bg-dark);
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 12px var(--shadow-color);
    }

    .page-123b-mb-com__feature-icon {
      width: 100px;
      height: 100px;
      object-fit: cover;
      margin-bottom: 15px;
      border-radius: 50%;
      border: 3px solid var(--primary-color);
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-123b-mb-com__feature-description {
      font-size: 1em;
      color: var(--text-color);
    }

    /* Payment and Providers */
    .page-123b-mb-com__logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 30px;
      justify-items: center;
      align-items: center;
    }

    .page-123b-mb-com__logo-item {
      width: 100px;
      height: 60px;
      object-fit: contain;
      filter: grayscale(80%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .page-123b-mb-com__logo-item:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* FAQ Section */
    .page-123b-mb-com__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-123b-mb-com__faq-item {
      background-color: var(--bg-dark);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px var(--shadow-color);
    }

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

    .page-123b-mb-com__faq-question:hover {
      background-color: #444;
    }

    .page-123b-mb-com__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      color: inherit; /* Ensure h3 color matches parent */
    }

    .page-123b-mb-com__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
      transition: transform 0.3s ease;
    }

    .page-123b-mb-com__faq-item.active .page-123b-mb-com__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-123b-mb-com__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Adjust padding for visual alignment */
      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(--text-color);
      background-color: var(--bg-dark);
      border-top: 1px solid var(--border-color);
      font-size: 1em;
    }

    .page-123b-mb-com__faq-item.active .page-123b-mb-com__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-123b-mb-com__title {
        font-size: 2em;
      }

      .page-123b-mb-com__subtitle {
        font-size: 1.5em;
      }
      
      .page-123b-mb-com__small-title {
        font-size: 1.3em;
      }

      .page-123b-mb-com__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }
      
      .page-123b-mb-com__section:first-of-type {
        padding-top: calc(30px + 10px);
      }

      .page-123b-mb-com__floating-buttons {
        padding: 10px 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
      }

      .page-123b-mb-com__floating-button {
        padding: 10px 20px;
        font-size: 1em;
        width: 48%; /* Adjust width for smaller screens */
      }

      .page-123b-mb-com__game-categories-grid,
      .page-123b-mb-com__features-grid {
        grid-template-columns: 1fr;
      }

      .page-123b-mb-com__category-image {
        height: 180px;
      }

      .page-123b-mb-com__promotion-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
      }

      .page-123b-mb-com__promotion-icon {
        margin-right: 0;
        margin-bottom: 15px;
      }
      
      .page-123b-mb-com__promotion-link {
          width: 100%;
          box-sizing: border-box;
      }

      .page-123b-mb-com__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-123b-mb-com__faq-answer {
        padding: 15px 15px !important; /* Ensure important for mobile */
      }
      
      /* List item responsive for all list-like structures */
      .page-123b-mb-com__promotion-list,
      .page-123b-mb-com__faq-list {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }
      .page-123b-mb-com__promotion-item,
      .page-123b-mb-com__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;
          word-break: break-word !important;
      }
      /* Image responsive for all images */
      .page-123b-mb-com__hero-image,
      .page-123b-mb-com__category-image,
      .page-123b-mb-com__promotion-icon,
      .page-123b-mb-com__feature-icon,
      .page-123b-mb-com__logo-item {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-123b-mb-com__category-image {
          height: 180px !important; /* Maintain aspect for these specific cards */
      }
    }
    
    @media (max-width: 480px) {
        .page-123b-mb-com__floating-button {
            font-size: 0.9em;
            padding: 10px 15px;
        }
    }
  