
    /* Reset & Base Styles */
    .page-123b-03 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f5f7fa;
      padding-bottom: 80px; /* Space for floating buttons */
    }

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

    .page-123b-03__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-123b-03__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-123b-03__heading {
      font-size: 2.5em;
      color: #e74c3c; /* Red accent */
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-123b-03__subheading {
      font-size: 1.8em;
      color: #34495e;
      margin-bottom: 15px;
    }

    .page-123b-03__paragraph {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    .page-123b-03__button {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-123b-03__button:hover {
      background-color: #c0392b;
    }

    /* Hero Section */
    .page-123b-03__hero-section {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('[GALLERY:hero:1920x1080:betting,casino,mobile]');
      background-size: cover;
      background-position: center;
      color: #fff;
      padding: 10px 0 80px 0; /* Small top padding, large bottom for content */
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }

    .page-123b-03__hero-content {
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-123b-03__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #f1c40f; /* Gold accent */
      line-height: 1.2;
    }

    .page-123b-03__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #ecf0f1;
    }

    /* Floating Buttons */
    .page-123b-03__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 15px;
      background-color: #2c3e50;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-123b-03__floating-button {
      flex: 1;
      text-align: center;
      margin: 0 5px;
      padding: 12px 10px;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.1em;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-123b-03__floating-button--register {
      background-color: #e74c3c;
      color: #fff;
    }

    .page-123b-03__floating-button--register:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-123b-03__floating-button--login {
      background-color: #3498db;
      color: #fff;
    }

    .page-123b-03__floating-button--login:hover {
      background-color: #2980b9;
      transform: translateY(-2px);
    }

    /* Features/Game Categories */
    .page-123b-03__features-grid,
    .page-123b-03__games-grid,
    .page-123b-03__providers-grid,
    .page-123b-03__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-123b-03__feature-item,
    .page-123b-03__game-card,
    .page-123b-03__provider-card,
    .page-123b-03__payment-card {
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-123b-03__feature-item:hover,
    .page-123b-03__game-card:hover,
    .page-123b-03__provider-card:hover,
    .page-123b-03__payment-card:hover {
      transform: translateY(-5px);
    }

    .page-123b-03__feature-icon {
      margin-bottom: 15px;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }
    .page-123b-03__game-image,
    .page-123b-03__provider-logo,
    .page-123b-03__payment-logo {
      width: 100%; /* Ensure images fill their card */
      height: 200px; /* Fixed height for consistency */
      object-fit: contain; /* Adjust as needed, 'cover' or 'contain' */
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-123b-03__feature-title,
    .page-123b-03__game-title,
    .page-123b-03__provider-name,
    .page-123b-03__payment-name {
      font-size: 1.3em;
      color: #e74c3c;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-123b-03__feature-description {
      color: #777;
    }

    /* Registration Steps */
    .page-123b-03__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-direction: column; /* Default to column for mobile */
      gap: 20px;
    }

    .page-123b-03__step-item {
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: left;
      display: flex;
      align-items: center;
      box-sizing: border-box;
      width: 100%; /* Ensure it takes full width on mobile */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-123b-03__step-number {
      background-color: #3498db;
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .page-123b-03__step-content {
      flex-grow: 1;
    }

    .page-123b-03__step-title {
      font-size: 1.4em;
      color: #34495e;
      margin-bottom: 5px;
    }

    .page-123b-03__step-description {
      color: #555;
    }

    /* Promotions */
    .page-123b-03__promotion-card {
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      margin-top: 30px;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-123b-03__promotion-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .page-123b-03__promotion-title {
      font-size: 1.8em;
      color: #e74c3c;
      margin-bottom: 10px;
    }

    .page-123b-03__promotion-description {
      color: #555;
      margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-123b-03__faq-list {
      margin-top: 30px;
      text-align: left;
      list-style: none;
      padding: 0;
    }

    .page-123b-03__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      box-sizing: border-box;
      width: 100%;
    }

    .page-123b-03__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #ecf0f1;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #34495e;
      transition: background-color 0.3s ease;
    }

    .page-123b-03__faq-question:hover {
      background-color: #e0e6eb;
    }

    .page-123b-03__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-123b-03__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      color: #e74c3c;
    }

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

    .page-123b-03__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
    }

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

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-123b-03__heading {
        font-size: 2em;
      }

      .page-123b-03__subheading {
        font-size: 1.5em;
      }

      .page-123b-03__hero-title {
        font-size: 2.2em;
      }

      .page-123b-03__hero-description {
        font-size: 1em;
      }

      .page-123b-03__floating-buttons {
        flex-direction: row;
        padding: 10px;
      }

      .page-123b-03__floating-button {
        margin: 0 3px;
        padding: 10px 8px;
        font-size: 0.95em;
      }

      .page-123b-03__features-grid,
      .page-123b-03__games-grid,
      .page-123b-03__providers-grid,
      .page-123b-03__payments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-123b-03__feature-item,
      .page-123b-03__game-card,
      .page-123b-03__provider-card,
      .page-123b-03__payment-card {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-123b-03__game-image,
      .page-123b-03__provider-logo,
      .page-123b-03__payment-logo,
      .page-123b-03__promotion-image,
      .page-123b-03__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-123b-03__steps-list {
        gap: 15px;
      }

      .page-123b-03__step-item {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-123b-03__step-number {
        margin-bottom: 10px;
        margin-right: 0;
      }

      .page-123b-03__step-title {
        font-size: 1.2em;
      }

      .page-123b-03__faq-question {
        padding: 12px 15px;
      }

      .page-123b-03__faq-question h3 {
        font-size: 1.1em;
      }

      .page-123b-03__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-123b-03__hero-title {
        font-size: 1.8em;
      }
      .page-123b-03__hero-description {
        font-size: 0.9em;
      }
      .page-123b-03__floating-button {
        font-size: 0.9em;
        padding: 8px 5px;
      }
    }
  