
    .page-bet6789-com {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f0f2f5;
    }

    .page-bet6789-com__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .page-bet6789-com__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-bet6789-com__section-title {
      text-align: center;
      color: #2c3e50;
      margin-bottom: 30px;
      font-size: 2.2em;
      font-weight: bold;
    }

    .page-bet6789-com__section--dark .page-bet6789-com__section-title {
      color: #ecf0f1;
    }

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

    /* Hero Section */
    .page-bet6789-com__hero-section {
      position: relative;
      padding: 10px 0 60px 0; /* Adjusted padding-top for header offset */
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      overflow: hidden;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 0;
    }

    .page-bet6789-com__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-bet6789-com__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px 0;
    }

    .page-bet6789-com__brand-logo {
      font-size: 3.5em;
      font-weight: 900;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-bet6789-com__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-bet6789-com__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-bet6789-com__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-bet6789-com__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-bet6789-com__floating-button {
      background-color: #ffcc00;
      color: #333;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-bet6789-com__floating-button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-bet6789-com__floating-button--login {
      background-color: #007bff;
      color: #fff;
    }

    .page-bet6789-com__floating-button--login:hover {
      background-color: #0056b3;
    }

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

    .page-bet6789-com__game-card {
      background-color: #f8f8f8;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .page-bet6789-com__game-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .page-bet6789-com__game-card-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
    }

    .page-bet6789-com__game-card-title {
      font-size: 1.5em;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-bet6789-com__game-card-description {
      font-size: 0.95em;
      color: #666;
    }

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

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

    .page-bet6789-com__promotion-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .page-bet6789-com__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-bet6789-com__promotion-content {
      padding: 20px;
    }

    .page-bet6789-com__promotion-title {
      font-size: 1.4em;
      font-weight: bold;
      color: #e74c3c;
      margin-bottom: 10px;
    }

    .page-bet6789-com__promotion-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-bet6789-com__promotion-link {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-bet6789-com__promotion-link:hover {
      background-color: #c0392b;
    }

    /* News Section */
    .page-bet6789-com__news-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-bet6789-com__news-item {
      background-color: #fdfdfd;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-bet6789-com__news-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .page-bet6789-com__news-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .page-bet6789-com__news-content {
      padding: 20px;
    }

    .page-bet6789-com__news-title {
      font-size: 1.3em;
      font-weight: bold;
      color: #34495e;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .page-bet6789-com__news-date {
      font-size: 0.85em;
      color: #7f8c8d;
      margin-bottom: 10px;
    }

    .page-bet6789-com__news-excerpt {
      font-size: 0.95em;
      color: #666;
    }

    /* Providers & Payments */
    .page-bet6789-com__icon-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      text-align: center;
    }

    .page-bet6789-com__icon-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
      background-color: #fdfdfd;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
    }

    .page-bet6789-com__icon-item:hover {
      transform: translateY(-3px);
    }

    .page-bet6789-com__icon-image {
      max-width: 120px; /* Adjusted from small icons */
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
      max-height: 80px; /* Constrain height */
    }

    .page-bet6789-com__icon-text {
      font-weight: bold;
      color: #34495e;
      font-size: 0.95em;
    }

    /* FAQ Section */
    .page-bet6789-com__faq-list {
      margin-top: 30px;
    }

    .page-bet6789-com__faq-item {
      background-color: #fdfdfd;
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-bet6789-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #ecf0f1;
      color: #2c3e50;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #e0e0e0;
    }

    .page-bet6789-com__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-bet6789-com__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #2c3e50;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-bet6789-com__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-bet6789-com__faq-item.active .page-bet6789-com__faq-toggle {
      transform: rotate(45deg);
    }

    .page-bet6789-com__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;
      color: #555;
    }

    .page-bet6789-com__faq-item.active .page-bet6789-com__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* General Image Styles */
    .page-bet6789-com img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-bet6789-com__section {
        padding: 25px 15px;
      }

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

      .page-bet6789-com__brand-logo {
        font-size: 2.5em;
      }

      .page-bet6789-com__hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 20px;
      }

      .page-bet6789-com__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-bet6789-com__floating-buttons {
        bottom: 15px;
        right: 15px;
      }

      .page-bet6789-com__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-bet6789-com__game-categories,
      .page-bet6789-com__promotions-grid,
      .page-bet6789-com__news-list,
      .page-bet6789-com__icon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-bet6789-com__game-card-image,
      .page-bet6789-com__promotion-image,
      .page-bet6789-com__news-image,
      .page-bet6789-com__icon-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-bet6789-com__game-card,
      .page-bet6789-com__promotion-card,
      .page-bet6789-com__news-item,
      .page-bet6789-com__icon-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-bet6789-com__game-card-title,
      .page-bet6789-com__promotion-title,
      .page-bet6789-com__news-title {
        font-size: 1.2em;
      }

      .page-bet6789-com__faq-question {
        padding: 15px;
      }

      .page-bet6789-com__faq-question h3 {
        font-size: 1em;
      }

      .page-bet6789-com__faq-answer {
        padding: 15px 15px !important;
      }

      /* Ensure all list-like containers are 100% width on mobile */
      .page-bet6789-com__game-categories,
      .page-bet6789-com__promotions-grid,
      .page-bet6789-com__news-list,
      .page-bet6789-com__icon-grid,
      .page-bet6789-com__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      
      .page-bet6789-com p,
      .page-bet6789-com li,
      .page-bet6789-com h1,
      .page-bet6789-com h2,
      .page-bet6789-com h3,
      .page-bet6789-com h4,
      .page-bet6789-com h5,
      .page-bet6789-com h6 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-bet6789-com__brand-logo {
        font-size: 2em;
      }

      .page-bet6789-com__hero-subtitle {
        font-size: 1em;
      }

      .page-bet6789-com__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-bet6789-com__floating-buttons {
        bottom: 10px;
        right: 10px;
      }

      .page-bet6789-com__floating-button {
        padding: 8px 18px;
        font-size: 0.9em;
      }

      .page-bet6789-com__section-title {
        font-size: 1.5em;
      }
    }
  