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

    .page-789f-bet__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-789f-bet__section--dark {
      background-color: #222;
    }

    .page-789f-bet__header-title {
      text-align: center;
      color: #ffd700;
      font-size: 2.8em;
      margin-bottom: 20px;
      padding-top: 10px; /* Decorative padding */
    }

    .page-789f-bet__header-title span {
      display: block;
      font-size: 0.6em;
      color: #ccc;
      margin-top: 10px;
    }

    .page-789f-bet__hero-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #000;
      position: relative;
      overflow: hidden;
    }

    .page-789f-bet__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
      object-fit: cover;
    }

    .page-789f-bet__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 20px auto 0;
    }

    .page-789f-bet__hero-content h1 {
      color: #ffd700;
      font-size: 2.5em;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-789f-bet__hero-content p {
      font-size: 1.1em;
      color: #e0e0e0;
      margin-bottom: 30px;
    }

    .page-789f-bet__button {
      display: inline-block;
      background-color: #007bff;
      color: white;
      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-789f-bet__button:hover {
      background-color: #0056b3;
    }

    .page-789f-bet__button--secondary {
      background-color: #28a745;
    }

    .page-789f-bet__button--secondary:hover {
      background-color: #218838;
    }

    .page-789f-bet__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      justify-content: center;
    }

    .page-789f-bet__floating-button {
      flex: 1;
      padding: 15px 0;
      text-align: center;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-789f-bet__floating-button--register {
      background-color: #ffd700;
      color: #1a1a1a;
    }

    .page-789f-bet__floating-button--register:hover {
      background-color: #e6c200;
    }

    .page-789f-bet__floating-button--login {
      background-color: #007bff;
      color: white;
    }

    .page-789f-bet__floating-button--login:hover {
      background-color: #0056b3;
    }

    .page-789f-bet__section-title {
      font-size: 2em;
      color: #ffd700;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-789f-bet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #007bff;
      border-radius: 2px;
    }

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

    .page-789f-bet__product-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-789f-bet__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-789f-bet__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-789f-bet__product-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-789f-bet__product-content h3 {
      color: #ffd700;
      font-size: 1.5em;
      margin-bottom: 10px;
    }

    .page-789f-bet__product-content p {
      color: #ccc;
      font-size: 0.95em;
    }

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

    .page-789f-bet__promotion-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    .page-789f-bet__promotion-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .page-789f-bet__promotion-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-789f-bet__promotion-content h3 {
      color: #ffd700;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-789f-bet__promotion-content p {
      color: #ccc;
      font-size: 0.9em;
    }

    .page-789f-bet__news-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .page-789f-bet__news-item h3 {
      color: #ffd700;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-789f-bet__news-item p {
      color: #ccc;
      font-size: 0.9em;
    }

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

    .page-789f-bet__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-789f-bet__feature-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }

    .page-789f-bet__feature-image-container {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 15px;
      overflow: hidden;
      border-radius: 8px;
      box-sizing: border-box;
    }

    .page-789f-bet__feature-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-789f-bet__feature-card h3 {
      color: #ffd700;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-789f-bet__feature-card p {
      color: #ccc;
      font-size: 0.9em;
    }

    .page-789f-bet__faq-container {
      margin-top: 40px;
    }

    .page-789f-bet__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-789f-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #333;
      color: #ffd700;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-789f-bet__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
    }

    .page-789f-bet__faq-question:hover {
      background-color: #444;
    }

    .page-789f-bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-789f-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: #ccc;
      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-789f-bet__faq-item.active .page-789f-bet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-789f-bet__cta-section {
      text-align: center;
      padding: 50px 20px;
      background-color: #007bff;
      color: white;
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-789f-bet__cta-section h2 {
      color: white;
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    .page-789f-bet__cta-section p {
      font-size: 1.1em;
      margin-bottom: 30px;
    }

    @media (max-width: 768px) {
      .page-789f-bet__header-title {
        font-size: 2.2em;
      }

      .page-789f-bet__hero-content h1 {
        font-size: 2em;
      }

      .page-789f-bet__hero-content p {
        font-size: 1em;
      }

      .page-789f-bet__section {
        padding: 30px 15px;
      }

      .page-789f-bet__section-title {
        font-size: 1.8em;
      }

      .page-789f-bet__product-grid, .page-789f-bet__promotion-grid, .page-789f-bet__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-789f-bet__product-card, .page-789f-bet__promotion-card, .page-789f-bet__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-789f-bet__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-789f-bet__faq-answer {
        padding: 15px 15px !important;
      }

      .page-789f-bet__floating-buttons {
        width: 95%;
        bottom: 15px;
        gap: 10px;
      }

      .page-789f-bet__floating-button {
        padding: 12px 0;
        font-size: 1em;
      }

      .page-789f-bet__cta-section h2 {
        font-size: 1.8em;
      }

      .page-789f-bet__cta-section p {
        font-size: 1em;
      }

      /* Responsive image adjustment */
      .page-789f-bet__hero-image, .page-789f-bet__product-image, .page-789f-bet__promotion-image, .page-789f-bet__news-image, .page-789f-bet__feature-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-789f-bet__feature-image-container {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-789f-bet__product-content p, .page-789f-bet__promotion-content p, .page-789f-bet__news-item p, .page-789f-bet__feature-card p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-789f-bet__header-title {
        font-size: 2em;
      }

      .page-789f-bet__hero-content h1 {
        font-size: 1.8em;
      }

      .page-789f-bet__floating-buttons {
        flex-direction: column;
        width: 80%;
        max-width: 300px;
      }

      .page-789f-bet__floating-button {
        width: 100%;
      }
    }
  