
    /* Reset & Base Styles */
    :root {
      --page-789bet-primary-color: #e44d26; /* A vibrant orange/red for action */
      --page-789bet-secondary-color: #333;
      --page-789bet-accent-color: #f7b731; /* A golden yellow for highlights */
      --page-789bet-text-color: #333;
      --page-789bet-light-text-color: #fff;
      --page-789bet-background-light: #f9f9f9;
      --page-789bet-background-dark: #2c3e50;
      --page-789bet-border-radius: 8px;
      --page-789bet-transition-speed: 0.3s ease-in-out;
    }

    .page-789bet {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-789bet-text-color);
      background-color: var(--page-789bet-background-light);
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-789bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Section Styling */
    .page-789bet__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-789bet__section--dark {
      background-color: var(--page-789bet-background-dark);
      color: var(--page-789bet-light-text-color);
    }

    .page-789bet__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-789bet-primary-color);
      position: relative;
      padding-bottom: 10px;
      display: inline-block;
    }

    .page-789bet__section-title--light {
      color: var(--page-789bet-light-text-color);
    }

    .page-789bet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: var(--page-789bet-accent-color);
      border-radius: 2px;
    }

    .page-789bet__text-center {
      text-align: center;
    }

    /* Buttons */
    .page-789bet__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: var(--page-789bet-primary-color);
      color: var(--page-789bet-light-text-color);
      border: none;
      border-radius: var(--page-789bet-border-radius);
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color var(--page-789bet-transition-speed), transform var(--page-789bet-transition-speed);
      text-decoration: none;
      text-align: center;
    }

    .page-789bet__button:hover {
      background-color: #d1401f;
      transform: translateY(-2px);
    }

    .page-789bet__button--secondary {
      background-color: var(--page-789bet-accent-color);
      color: var(--page-789bet-text-color);
    }

    .page-789bet__button--secondary:hover {
      background-color: #e6a72e;
      color: var(--page-789bet-light-text-color);
    }

    /* Hero Section */
    .page-789bet__hero-section {
      position: relative;
      background-color: #000; /* Fallback for image */
      color: var(--page-789bet-light-text-color);
      padding: 10px 0 60px; /* Adjusted padding-top for fixed header */
      text-align: center;
      overflow: hidden;
    }

    .page-789bet__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.7;
    }

    .page-789bet__hero-content {
      position: relative;
      z-index: 2;
      padding-top: 50px; /* Additional spacing below fixed header for content */
    }

    .page-789bet__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: var(--page-789bet-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-789bet__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-789bet__promotion-banner {
      background: linear-gradient(90deg, #ff6b6b, #ffa500);
      padding: 15px 20px;
      border-radius: var(--page-789bet-border-radius);
      margin-top: 30px;
      display: inline-block;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Floating Login Button */
    .page-789bet__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-789bet-accent-color);
      color: var(--page-789bet-text-color);
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      animation: page-789bet-pulse 2s infinite;
      transition: background-color var(--page-789bet-transition-speed);
      text-decoration: none; /* Ensure no underline */
      text-align: center;
      cursor: pointer; /* Indicate it's clickable */
    }

    .page-789bet__floating-button:hover {
      background-color: #e6a72e;
    }

    @keyframes page-789bet-pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    /* Game Categories / Product Display */
    .page-789bet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-789bet__game-card {
      background-color: #fff;
      border-radius: var(--page-789bet-border-radius);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform var(--page-789bet-transition-speed), box-shadow var(--page-789bet-transition-speed);
      padding-bottom: 20px;
    }

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

    .page-789bet__game-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }
    
    .page-789bet__game-card-image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-789bet__game-card-title {
      font-size: 1.4em;
      margin: 20px 15px 10px;
      color: var(--page-789bet-secondary-color);
    }

    .page-789bet__game-card-description {
      font-size: 0.95em;
      color: #666;
      padding: 0 15px 15px;
    }

    /* Download Section */
    .page-789bet__download-steps {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
    }

    .page-789bet__step-item {
      background-color: #fff;
      padding: 30px;
      border-radius: var(--page-789bet-border-radius);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      max-width: 300px;
      text-align: left;
      flex: 1 1 300px;
    }

    .page-789bet__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-789bet-primary-color);
      margin-bottom: 15px;
    }

    .page-789bet__step-title {
      font-size: 1.3em;
      color: var(--page-789bet-secondary-color);
      margin-bottom: 10px;
    }

    .page-789bet__step-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-789bet__download-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      margin-top: 30px;
      border-radius: var(--page-789bet-border-radius);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    .page-789bet__download-image-container {
      width: 100%;
      max-width: 300px; /* Limit max width for QR code */
      margin: 0 auto; /* Center the container */
      overflow: hidden;
      box-sizing: border-box;
    }

    /* Promotions Section */
    .page-789bet__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-789bet__promo-card {
      background-color: #fff;
      border-radius: var(--page-789bet-border-radius);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: left;
      transition: transform var(--page-789bet-transition-speed);
    }

    .page-789bet__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-789bet__promo-icon {
      font-size: 2.5em;
      color: var(--page-789bet-primary-color);
      margin-bottom: 15px;
    }

    .page-789bet__promo-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: var(--page-789bet-secondary-color);
    }

    .page-789bet__promo-description {
      font-size: 0.95em;
      color: #666;
    }

    /* FAQ Section */
    .page-789bet__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .page-789bet__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: var(--page-789bet-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-789bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: var(--page-789bet-primary-color);
      color: var(--page-789bet-light-text-color);
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: var(--page-789bet-border-radius);
      transition: background-color var(--page-789bet-transition-speed);
    }

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

    .page-789bet__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevents text selection from blocking click */
      color: var(--page-789bet-light-text-color); /* Ensure h3 color matches parent */
    }

    .page-789bet__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      transition: transform var(--page-789bet-transition-speed);
      pointer-events: none; /* Prevents icon from blocking click */
    }

    .page-789bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #f0f2f5;
      color: var(--page-789bet-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }
    
    .page-789bet__faq-answer p {
        margin-top: 0;
        margin-bottom: 15px;
    }
    .page-789bet__faq-answer p:last-child {
        margin-bottom: 0;
    }


    .page-789bet__faq-item.active .page-789bet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show all content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-789bet__faq-item.active .page-789bet__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    /* Contact Section */
    .page-789bet__contact-info {
      margin-top: 30px;
      font-size: 1.1em;
      color: #666;
    }

    .page-789bet__contact-info strong {
      color: var(--page-789bet-primary-color);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-789bet__hero-section {
        padding-top: 10px; /* Adjusted padding-top for fixed header on mobile */
      }
      .page-789bet__hero-content {
          padding-top: 30px; /* Adjust spacing below fixed header for content on mobile */
      }
      .page-789bet__hero-title {
        font-size: 2.2em;
      }

      .page-789bet__hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 30px;
      }

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

      .page-789bet__game-grid,
      .page-789bet__promo-grid {
        grid-template-columns: 1fr;
      }

      .page-789bet__download-steps {
        flex-direction: column;
        align-items: center;
      }

      .page-789bet__step-item {
        max-width: 100%;
        width: 100%;
      }

      .page-789bet__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      
      /* Image responsiveness */
      .page-789bet img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-789bet__game-card-image-container,
      .page-789bet__download-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-789bet__game-card-image {
        height: 180px; /* Adjust height for mobile */
      }
      .page-789bet__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-789bet__faq-answer {
        padding: 15px 20px;
      }
    }
    @media (max-width: 480px) {
        .page-789bet__hero-title {
            font-size: 1.8em;
        }
        .page-789bet__hero-subtitle {
            font-size: 1em;
        }
        .page-789bet__section-title {
            font-size: 1.8em;
        }
        .page-789bet__button {
            padding: 10px 20px;
            font-size: 1em;
        }
        .page-789bet__floating-button {
            padding: 10px 15px;
            font-size: 0.9em;
        }
    }
  