
    /* CSS Styles for 789 bet page */
    .page-789bets {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 80px; /* Space for fixed footer */
    }

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

    .page-789bets__hero-section {
      text-align: center;
      padding: 120px 0 40px; /* Top padding for fixed header */
      background-color: #2a0000; /* Dark background for hero */
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .page-789bets__hero-section {
        padding: 100px 0 30px; /* Adjusted top padding for mobile */
      }
    }

    .page-789bets__hero-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }

    .page-789bets__hero-image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 768px) {
      .page-789bets__hero-image-wrapper {
        padding: 0 10px;
      }
      .page-789bets__hero-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-789bets__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold color for title */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-789bets__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-789bets__cta-button {
      display: inline-block;
      background-color: #e44d26; /* Vibrant orange-red */
      color: #fff;
      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;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-789bets__cta-button:hover {
      background-color: #ff6f40;
      transform: translateY(-2px);
    }

    .page-789bets__section {
      padding: 60px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-789bets__section--dark {
      background-color: #2a0000;
      color: #eee;
    }
    
    .page-789bets__section--dark .page-789bets__section-title {
        color: #ffcc00;
    }

    .page-789bets__section-title {
      font-size: 2.2em;
      text-align: center;
      margin-bottom: 40px;
      color: #2a0000;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-789bets__text-content p {
      margin-bottom: 20px;
      font-size: 1.1em;
      text-align: justify;
    }

    .page-789bets__text-content strong {
        color: #e44d26;
    }

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

    .page-789bets__game-card {
      background-color: #fefefe;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-789bets__game-card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Fixed height for game images */
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000; /* Dark background for game images */
    }

    .page-789bets__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Cover the container */
      transition: transform 0.3s ease;
    }

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

    @media (max-width: 768px) {
      .page-789bets__game-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

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

    .page-789bets__game-card-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #2a0000;
    }

    .page-789bets__game-card-link {
      color: #e44d26;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-789bets__game-card-link:hover {
      color: #ff6f40;
      text-decoration: underline;
    }

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

    .page-789bets__promo-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease;
    }

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

    .page-789bets__promo-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 220px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f0f0f0;
    }

    .page-789bets__promo-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @media (max-width: 768px) {
      .page-789bets__promo-card-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

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

    .page-789bets__promo-card-title {
        font-size: 1.4em;
        color: #2a0000;
        margin-bottom: 10px;
    }

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

    .page-789bets__promo-button {
        display: inline-block;
        background-color: #e44d26;
        color: #fff;
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
    }

    .page-789bets__promo-button:hover {
        background-color: #ff6f40;
    }

    .page-789bets__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller minmax for logos */
      gap: 20px;
      margin-top: 40px;
      justify-items: center;
      align-items: center;
    }

    .page-789bets__provider-item {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      padding: 15px;
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px; /* Fixed height for logo cards */
      width: 100%;
      max-width: 180px; /* Max width for individual logos */
    }

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

    .page-789bets__provider-logo {
      max-width: 100%;
      max-height: 70px; /* Max height for the logo image */
      height: auto;
      object-fit: contain;
    }
    
    @media (max-width: 768px) {
      .page-789bets__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    .page-789bets__faq-list {
      margin-top: 40px;
    }

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

    .page-789bets__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f2f2f2;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      font-weight: bold;
      color: #2a0000;
      transition: background-color 0.3s ease;
    }

    .page-789bets__faq-question:hover {
      background-color: #eaeaea;
    }

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

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

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

    .page-789bets__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      color: #444;
    }

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

    .page-789bets__faq-answer p {
      margin: 0;
      padding: 0;
    }

    /* Floating Login/Register Button */
    .page-789bets__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #e44d26; /* Match CTA button */
      color: #fff;
      padding: 15px 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;
      animation: pulse 2s infinite;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 280px; /* Limit width */
    }

    .page-789bets__floating-button:hover {
      background-color: #ff6f40;
      transform: scale(1.05);
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }

    @media (max-width: 768px) {
      .page-789bets__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-789bets__section-title {
        font-size: 1.8em;
      }
      .page-789bets__hero-title {
        font-size: 2.2em;
      }
      .page-789bets__hero-subtitle {
        font-size: 1.1em;
      }
      .page-789bets__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-789bets__text-content p {
        font-size: 1em;
      }
      .page-789bets__game-grid {
        grid-template-columns: 1fr;
      }
      .page-789bets__promo-grid {
        grid-template-columns: 1fr;
      }
      .page-789bets__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-789bets__provider-item {
        height: 80px;
        max-width: 150px;
      }
      .page-789bets__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-789bets__faq-answer {
        padding: 15px 15px;
      }
    }
  