
    /* Reset & Base Styles */
    .page-bet789link {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #e0e0e0;
      background-color: #1a1a1a;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      overflow-x: hidden; /* Prevent horizontal scroll from fixed elements */
    }

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

    .page-bet789link__section {
      padding: 40px 0;
      text-align: center;
    }

    .page-bet789link__section--light {
        background-color: #242424;
    }

    .page-bet789link__section-title {
      font-size: 2.2em;
      color: #f0b90b;
      margin-bottom: 30px;
      text-transform: uppercase;
      font-weight: bold;
    }
    
    .page-bet789link__section-title strong {
        color: #fff;
    }

    .page-bet789link__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #cccccc;
    }

    .page-bet789link__button {
      display: inline-block;
      background-color: #f0b90b;
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-bet789link__button:hover {
      background-color: #e6a700;
      transform: translateY(-2px);
    }

    .page-bet789link__button:active {
      transform: translateY(0);
    }

    /* Image responsive default */
    .page-bet789link img {
      max-width: 100%;
      height: auto;
      display: block; /* Ensure image doesn't have extra space below */
      margin: 0 auto; /* Center images */
      border-radius: 8px;
    }

    .page-bet789link__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    /* Hero Section */
    .page-bet789link__hero-section {
      position: relative;
      background-color: #0d0d0d;
      padding-top: 10px; /* Crucial for fixed header */
      padding-bottom: 60px;
      overflow: hidden;
      text-align: center;
    }

    .page-bet789link__hero-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        margin: 0 auto;
        max-width: 1200px; /* Limit hero image width if it's not a full-bleed background */
        border-radius: 0; /* Hero image usually doesn't have border-radius */
    }

    .page-bet789link__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px 15px;
      margin-top: -50px; /* Pull content up over the bottom of the image */
      background: linear-gradient(to top, #1a1a1a 0%, rgba(26, 26, 26, 0.8) 70%, rgba(26, 26, 26, 0) 100%);
      padding-bottom: 40px;
    }

    .page-bet789link__hero-title {
      font-size: 2.8em;
      color: #f0b90b;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .page-bet789link__hero-description {
      font-size: 1.3em;
      color: #ffffff;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Floating Login Button */
    .page-bet789link__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ff4500; /* A vivid color for promo */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
      text-align: center;
    }

    .page-bet789link__floating-button:hover {
      background-color: #e03e00;
      transform: translateX(-50%) translateY(-3px);
    }

    /* Why Choose Section */
    .page-bet789link__why-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-bet789link__why-item {
      background-color: #242424;
      padding: 25px;
      border-radius: 10px;
      text-align: left;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      border-left: 5px solid #f0b90b;
    }

    .page-bet789link__why-item-title {
      color: #f0b90b;
      font-size: 1.4em;
      margin-bottom: 10px;
    }

    .page-bet789link__why-item-text {
      color: #cccccc;
      font-size: 1em;
    }

    /* Game Categories Section */
    .page-bet789link__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-bet789link__game-card {
      background-color: #242424;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-bet789link__game-card-image {
      width: 100%;
      height: 120px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-bet789link__game-card-title {
      font-size: 1.2em;
      color: #f0b90b;
      padding: 15px 10px;
      margin: 0;
      text-decoration: none; /* For link inside */
      display: block;
      font-weight: bold;
    }

    .page-bet789link__game-card-title a {
        color: #f0b90b;
        text-decoration: none;
        display: block;
    }

    .page-bet789link__game-card-title a:hover {
        text-decoration: underline;
    }

    /* How To Section */
    .page-bet789link__steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

    .page-bet789link__step-item {
      background-color: #242424;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      border-right: 5px solid #f0b90b;
    }

    .page-bet789link__step-number {
      font-size: 1.8em;
      color: #f0b90b;
      font-weight: bold;
      margin-bottom: 10px;
      display: block;
    }

    .page-bet789link__step-title {
      font-size: 1.3em;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .page-bet789link__step-text {
      color: #cccccc;
      font-size: 1em;
    }

    .page-bet789link__step-text a {
        color: #f0b90b;
        text-decoration: none;
    }

    .page-bet789link__step-text a:hover {
        text-decoration: underline;
    }

    /* Download App Section */
    .page-bet789link__app-download {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      max-width: 600px;
      margin: 0 auto;
    }

    .page-bet789link__qr-code-wrapper {
        background-color: #ffffff;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: inline-block; /* To contain the image */
    }

    .page-bet789link__qr-code {
        width: 200px; /* Specific size for QR code */
        height: 200px;
        object-fit: contain;
    }

    /* Latest Links Section */
    .page-bet789link__link-list {
        list-style: none;
        padding: 0;
        max-width: 700px;
        margin: 30px auto 0;
        display: grid;
        gap: 15px;
    }

    .page-bet789link__link-item {
        background-color: #242424;
        padding: 15px 20px;
        border-radius: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-bet789link__link-item-text {
        font-size: 1.1em;
        color: #ffffff;
        font-weight: bold;
    }

    .page-bet789link__link-item-button {
        background-color: #f0b90b;
        color: #1a1a1a;
        padding: 8px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
    }

    .page-bet789link__link-item-button:hover {
        background-color: #e6a700;
    }

    /* FAQ Section */
    .page-bet789link__faq-list {
      max-width: 800px;
      margin: 30px auto 0;
      text-align: left;
    }

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

    .page-bet789link__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #333333;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      border-bottom: 1px solid #444;
    }

    .page-bet789link__faq-question:hover {
      background-color: #444444;
    }

    .page-bet789link__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #f0b90b;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-bet789link__faq-toggle {
      font-size: 1.8em;
      color: #f0b90b;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

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

    .page-bet789link__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #cccccc;
      font-size: 1em;
    }

    .page-bet789link__faq-item.active .page-bet789link__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important; /* Final padding when open */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-bet789link__section {
        padding: 30px 0;
      }

      .page-bet789link__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-bet789link__text {
        font-size: 1em;
      }

      .page-bet789link__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      /* Hero */
      .page-bet789link__hero-section {
        padding-bottom: 40px;
      }

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

      .page-bet789link__hero-description {
        font-size: 1.1em;
      }

      /* Floating Button */
      .page-bet789link__floating-button {
        font-size: 0.95em;
        padding: 10px 20px;
        bottom: 15px;
      }

      /* Why Choose List */
      .page-bet789link__why-item {
        padding: 20px;
      }

      .page-bet789link__why-item-title {
        font-size: 1.2em;
      }

      /* Game Grid */
      .page-bet789link__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }
      .page-bet789link__game-card-image {
        height: 100px;
      }
      .page-bet789link__game-card-title {
        font-size: 1.1em;
        padding: 10px 5px;
      }

      /* How To Steps */
      .page-bet789link__step-item {
        padding: 20px;
      }
      .page-bet789link__step-number {
        font-size: 1.6em;
      }
      .page-bet789link__step-title {
        font-size: 1.2em;
      }

      /* App Download */
      .page-bet789link__qr-code {
          width: 150px;
          height: 150px;
      }

      /* Latest Links */
      .page-bet789link__link-item {
          flex-direction: column;
          align-items: flex-start;
          gap: 10px;
          padding: 15px;
      }
      .page-bet789link__link-item-button {
          width: 100%;
          text-align: center;
      }

      /* FAQ */
      .page-bet789link__faq-question {
        padding: 15px 20px;
      }

      .page-bet789link__faq-question h3 {
        font-size: 1.1em;
      }

      .page-bet789link__faq-toggle {
        font-size: 1.5em;
      }

      .page-bet789link__faq-answer {
        padding: 0 20px;
      }
      .page-bet789link__faq-item.active .page-bet789link__faq-answer {
        padding: 15px 20px !important;
      }

      /* Enforce responsive images for mobile */
      .page-bet789link img {
          max-width: 100% !important;
          height: auto !important;
      }
      .page-bet789link__image-wrapper {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
    }
  