
    .page-be-789 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

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

    .page-be-789__hero-section {
      background-color: #0d0d0d;
      text-align: center;
      padding: 10px 0 40px; /* Small top padding, assuming body handles main offset */
      position: relative;
      overflow: hidden;
    }

    .page-be-789__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .page-be-789__brand-keyword {
      font-size: 2.8em;
      font-weight: bold;
      color: #ffcc00;
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    }

    .page-be-789__hero-title {
      font-size: 2.2em;
      color: #ffffff;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-be-789__hero-description {
      font-size: 1.1em;
      color: #cccccc;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-be-789__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      padding: 10px 15px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      box-sizing: border-box;
    }

    .page-be-789__action-button {
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 12px 25px;
      border: none;
      border-radius: 25px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      text-align: center;
      min-width: 120px;
      box-sizing: border-box;
    }

    .page-be-789__action-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-be-789__section {
      padding: 60px 0;
      text-align: center;
      background-color: #1a1a1a;
    }

    .page-be-789__section--dark {
      background-color: #0d0d0d;
    }

    .page-be-789__section-title {
      font-size: 2em;
      color: #ffcc00;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-be-789__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ffcc00;
    }

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

    .page-be-789__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      text-align: left;
      color: #f0f0f0;
    }

    .page-be-789__game-card:hover {
      transform: translateY(-8px);
    }

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

    .page-be-789__game-card-content {
      padding: 20px;
    }

    .page-be-789__game-card-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
      pointer-events: none; /* Ensure text inside doesn't block click */
    }

    .page-be-789__game-card-description {
      font-size: 0.95em;
      color: #cccccc;
      margin-bottom: 15px;
    }

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

    .page-be-789__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      text-align: left;
      color: #f0f0f0;
    }

    .page-be-789__promo-card:hover {
      transform: translateY(-8px);
    }

    .page-be-789__promo-card-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-be-789__promo-card-content {
      padding: 20px;
    }

    .page-be-789__promo-card-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-be-789__promo-card-description {
      font-size: 0.95em;
      color: #cccccc;
    }

    .page-be-789__news-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
    }

    .page-be-789__news-item {
      background-color: #2a2a2a;
      margin-bottom: 20px;
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      transition: background-color 0.3s ease;
    }

    .page-be-789__news-item:hover {
      background-color: #3a3a3a;
    }

    .page-be-789__news-title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-be-789__news-date {
      font-size: 0.85em;
      color: #999999;
      margin-bottom: 10px;
    }

    .page-be-789__news-excerpt {
      font-size: 1em;
      color: #cccccc;
    }

    .page-be-789__faq-section {
      padding: 60px 0;
      background-color: #1a1a1a;
      text-align: center;
    }

    .page-be-789__faq-list {
      max-width: 800px;
      margin: 40px auto 0;
      text-align: left;
      list-style: none;
      padding: 0;
    }

    .page-be-789__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-be-789__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: #3a3a3a;
      color: #ffffff;
      font-size: 1.15em;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-be-789__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-be-789__faq-question h3 {
      margin: 0;
      color: #ffcc00;
      font-size: 1em;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-be-789__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
      transition: transform 0.3s ease;
      color: #ffcc00;
    }

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

    .page-be-789__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
      background-color: #2a2a2a;
    }

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

    .page-be-789__payment-providers-section {
      padding: 60px 0;
      background-color: #0d0d0d;
      text-align: center;
    }

    .page-be-789__payment-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
      margin-top: 40px;
      align-items: center;
      justify-items: center;
    }

    .page-be-789__logo-item {
      width: 100%;
      max-width: 180px;
      height: auto;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: filter 0.3s ease, opacity 0.3s ease;
      box-sizing: border-box;
    }

    .page-be-789__logo-item:hover {
      filter: grayscale(0%);
      opacity: 1;
    }

    .page-be-789__social-media-section {
      padding: 60px 0;
      background-color: #1a1a1a;
      text-align: center;
    }

    .page-be-789__social-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-be-789__social-item {
      display: inline-block;
    }

    .page-be-789__social-link {
      display: flex;
      align-items: center;
      background-color: #2a2a2a;
      color: #ffcc00;
      padding: 10px 20px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .page-be-789__social-link:hover {
      background-color: #ffcc00;
      color: #1a1a1a;
    }

    .page-be-789__social-icon {
      width: 30px;
      height: 30px;
      margin-right: 10px;
      max-width: 100%;
      object-fit: contain;
      display: block;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-be-789__brand-keyword {
        font-size: 2.2em;
      }

      .page-be-789__hero-title {
        font-size: 1.8em;
      }

      .page-be-789__hero-description {
        font-size: 1em;
      }

      .page-be-789__action-button {
        padding: 10px 20px;
        font-size: 1em;
        min-width: 100px;
      }

      .page-be-789__section {
        padding: 40px 0;
      }

      .page-be-789__section-title {
        font-size: 1.8em;
      }

      .page-be-789__game-grid, .page-be-789__promo-grid, .page-be-789__payment-providers-grid {
        grid-template-columns: 1fr;
      }

      .page-be-789__game-card-image, .page-be-789__promo-card-image {
        height: 180px;
      }

      .page-be-789__game-card-title, .page-be-789__promo-card-title {
        font-size: 1.2em;
      }

      .page-be-789__news-item {
        padding: 15px;
      }

      .page-be-789__news-title {
        font-size: 1.1em;
      }

      .page-be-789__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-be-789__faq-answer {
        padding: 15px 20px !important;
      }

      .page-be-789__social-list {
        flex-direction: column;
        align-items: center;
      }

      .page-be-789__social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        box-sizing: border-box;
      }

      /* List item responsiveness */
      .page-be-789__news-list, .page-be-789__faq-list, .page-be-789__social-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-be-789__news-item, .page-be-789__faq-item, .page-be-789__social-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;
      }

      .page-be-789__logo-item {
        width: 100% !important;
        max-width: 150px !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-be-789__game-card-content, .page-be-789__promo-card-content {
        padding: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-be-789__brand-keyword {
        font-size: 2em;
      }

      .page-be-789__hero-title {
        font-size: 1.6em;
      }

      .page-be-789__floating-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
      }

      .page-be-789__action-button {
        width: 80%;
        max-width: 250px;
      }

      .page-be-789__faq-question, .page-be-789__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
    }
  