
    :root {
      --page-789bet__primary-color: #e44d26; /* A vibrant orange-red for branding */
      --page-789bet__secondary-color: #f0ad4e; /* A complementary orange */
      --page-789bet__text-color: #333;
      --page-789bet__background-color: #f8f9fa;
      --page-789bet__light-grey: #e9ecef;
      --page-789bet__dark-grey: #495057;
      --page-789bet__white: #fff;
    }

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

    /* Hero Section */
    .page-789bet__hero-section {
      position: relative;
      width: 100%;
      min-height: 400px; /* Default height */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--page-789bet__white);
      background-color: var(--page-789bet__dark-grey); /* Fallback */
      padding-top: 10px; /* For fixed header */
      box-sizing: border-box;
      overflow: hidden;
    }

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

    .page-789bet__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .page-789bet__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
    }

    .page-789bet__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: var(--page-789bet__white);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-789bet__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-789bet__light-grey);
    }

    .page-789bet__cta-button {
      display: inline-block;
      background-color: var(--page-789bet__primary-color);
      color: var(--page-789bet__white);
      padding: 15px 30px;
      border-radius: 50px;
      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-789bet__cta-button:hover {
      background-color: var(--page-789bet__secondary-color);
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-789bet__floating-login-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-789bet__primary-color);
      color: var(--page-789bet__white);
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-789bet__floating-login-button:hover {
      background-color: var(--page-789bet__secondary-color);
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-789bet__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-789bet__section--grey {
      background-color: var(--page-789bet__light-grey);
    }

    .page-789bet__section-title {
      font-size: 2.2em;
      color: var(--page-789bet__dark-grey);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-789bet__section-description {
      font-size: 1.1em;
      color: var(--page-789bet__text-color);
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-789bet__game-card {
      background-color: var(--page-789bet__white);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

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

    .page-789bet__game-card-image-container {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-789bet__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-789bet__game-card:hover .page-789bet__game-card-image {
      transform: scale(1.05);
    }

    .page-789bet__game-card-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-789bet__game-card-title {
      font-size: 1.5em;
      color: var(--page-789bet__primary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-789bet__game-card-description {
      font-size: 0.95em;
      color: var(--page-789bet__text-color);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .page-789bet__game-card-button {
      background-color: var(--page-789bet__secondary-color);
      color: var(--page-789bet__white);
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-789bet__game-card-button:hover {
      background-color: var(--page-789bet__primary-color);
    }

    /* Promotions */
    .page-789bet__promotion-item {
      background-color: var(--page-789bet__white);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      padding: 30px;
      margin-bottom: 25px;
      text-align: left;
      transition: transform 0.3s ease;
    }

    .page-789bet__promotion-item:hover {
      transform: translateY(-5px);
    }

    .page-789bet__promotion-title {
      font-size: 1.8em;
      color: var(--page-789bet__primary-color);
      margin-bottom: 10px;
    }

    .page-789bet__promotion-description {
      font-size: 1.05em;
      color: var(--page-789bet__dark-grey);
      margin-bottom: 20px;
    }

    /* Guide Steps */
    .page-789bet__guide-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-789bet__guide-step {
        background-color: var(--page-789bet__white);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-789bet__guide-step:hover {
        transform: translateY(-5px);
    }

    .page-789bet__guide-icon {
        width: 150px; /* Ensure images are not small icons */
        height: 150px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .page-789bet__guide-step h3 {
        font-size: 1.5em;
        color: var(--page-789bet__dark-grey);
        margin-bottom: 15px;
    }

    .page-789bet__guide-step p {
        font-size: 1em;
        color: var(--page-789bet__text-color);
    }


    /* FAQ Section */
    .page-789bet__faq-container {
      margin-top: 40px;
      text-align: left;
    }

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

    .page-789bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-789bet__light-grey);
      border-bottom: 1px solid var(--page-789bet__text-color);
      transition: background-color 0.3s ease;
    }

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

    .page-789bet__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-789bet__dark-grey);
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
    }

    .page-789bet__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-789bet__primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

    .page-789bet__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: var(--page-789bet__text-color);
    }

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

    .page-789bet__faq-answer p {
      margin-bottom: 10px;
    }

    /* General responsive adjustments */
    @media (max-width: 768px) {
      .page-789bet__hero-section {
        min-height: 300px;
        padding-top: 10px; /* For fixed header on mobile */
      }

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

      .page-789bet__hero-subtitle {
        font-size: 1em;
      }

      .page-789bet__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-789bet__floating-login-button {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.9em;
      }

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

      .page-789bet__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-789bet__section-description {
        font-size: 0.9em;
        margin-bottom: 30px;
      }

      .page-789bet__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-789bet__game-card-image-container {
        height: 180px;
      }

      .page-789bet__game-card-title {
        font-size: 1.3em;
      }

      .page-789bet__game-card-description {
        font-size: 0.85em;
      }

      .page-789bet__guide-steps {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .page-789bet__guide-icon {
          width: 120px;
          height: 120px;
      }

      .page-789bet__faq-question {
        padding: 15px 20px;
      }

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

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

      .page-789bet__faq-answer {
        padding: 0 20px;
      }

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

    /* Image responsive optimization for all images */
    .page-789bet img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    .page-789bet__game-card-image-container,
    .page-789bet__hero-image-container,
    .page-789bet__guide-step .page-789bet__guide-icon { /* Add any other image containers here */
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .page-789bet img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-789bet__game-card-image-container,
        .page-789bet__hero-image-container,
        .page-789bet__guide-step .page-789bet__guide-icon {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

  