
    :root {
      --page-66b-bet-primary-bg: #1a1a1a;
      --page-66b-bet-secondary-bg: #2a2a2a;
      --page-66b-bet-text-color: #ffffff;
      --page-66b-bet-accent-color: #ffd700; /* Gold */
      --page-66b-bet-button-bg: #008000; /* Green */
      --page-66b-bet-button-hover-bg: #006400; /* Darker Green */
      --page-66b-bet-border-color: #444444;
      --page-66b-bet-shadow-color: rgba(0, 0, 0, 0.5);
      --page-66b-bet-faq-question-bg: #333333;
      --page-66b-bet-faq-answer-bg: #222222;
    }

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

    .page-66b-bet__section-title {
      font-size: 2.5em;
      text-align: center;
      margin-bottom: 40px;
      color: var(--page-66b-bet-accent-color);
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-66b-bet__section-description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 50px;
      color: #cccccc;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Hero Section */
    .page-66b-bet__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small decorative padding, body handles main offset */
      box-sizing: border-box;
    }

    .page-66b-bet__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-66b-bet__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 2;
    }

    .page-66b-bet__hero-content {
      position: relative;
      z-index: 3;
      max-width: 900px;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-66b-bet__brand-title {
      font-size: 4em;
      color: var(--page-66b-bet-accent-color);
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-66b-bet__hero-subtitle {
      font-size: 1.8em;
      color: #eeeeee;
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-66b-bet__hero-description {
      font-size: 1.1em;
      color: #cccccc;
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-66b-bet__hero-cta-button {
      display: inline-block;
      background-color: var(--page-66b-bet-button-bg);
      color: var(--page-66b-bet-text-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-66b-bet__hero-cta-button:hover {
      background-color: var(--page-66b-bet-button-hover-bg);
    }

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

    .page-66b-bet__floating-button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 50px;
      background-color: var(--page-66b-bet-button-bg);
      color: var(--page-66b-bet-text-color);
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 10px var(--page-66b-bet-shadow-color);
      transition: background-color 0.3s ease, transform 0.3s ease;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-66b-bet__floating-button--login {
      background-color: var(--page-66b-bet-accent-color);
      color: var(--page-66b-bet-primary-bg);
    }

    .page-66b-bet__floating-button:hover {
      background-color: var(--page-66b-bet-button-hover-bg);
      transform: translateY(-3px);
    }

    .page-66b-bet__floating-button--login:hover {
      background-color: #e6c200; /* Darker gold */
    }

    /* Promotions Section */
    .page-66b-bet__promotions-section,
    .page-66b-bet__games-section,
    .page-66b-bet__providers-section,
    .page-66b-bet__payment-section,
    .page-66b-bet__faq-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-66b-bet__promotion-grid,
    .page-66b-bet__game-categories,
    .page-66b-bet__provider-grid,
    .page-66b-bet__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-items: center;
      align-items: start;
    }

    .page-66b-bet__promotion-item,
    .page-66b-bet__game-item,
    .page-66b-bet__provider-item,
    .page-66b-bet__payment-item {
      background-color: var(--page-66b-bet-secondary-bg);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 15px var(--page-66b-bet-shadow-color);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      width: 100%; /* Ensure items take full width of their grid cell */
      max-width: 400px; /* Limit max width for larger screens */
    }

    .page-66b-bet__promotion-item:hover,
    .page-66b-bet__game-item:hover {
      transform: translateY(-5px);
    }

    .page-66b-bet__promotion-image,
    .page-66b-bet__game-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      box-sizing: border-box;
    }

    .page-66b-bet__promotion-title,
    .page-66b-bet__game-title {
      font-size: 1.5em;
      color: var(--page-66b-bet-accent-color);
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-66b-bet__promotion-text,
    .page-66b-bet__game-description {
      font-size: 1em;
      color: #cccccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Providers and Payments */
    .page-66b-bet__provider-grid,
    .page-66b-bet__payment-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller items */
    }

    .page-66b-bet__provider-item,
    .page-66b-bet__payment-item {
      padding: 15px;
      max-width: 200px; /* Smaller max width */
    }

    .page-66b-bet__provider-logo,
    .page-66b-bet__payment-logo {
      max-width: 100%;
      height: auto;
      margin-bottom: 10px;
      object-fit: contain; /* Ensure logos fit without cropping */
      box-sizing: border-box;
    }

    .page-66b-bet__provider-name,
    .page-66b-bet__payment-name {
      font-size: 0.9em;
      color: #cccccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-66b-bet__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-66b-bet__faq-item {
      background-color: var(--page-66b-bet-secondary-bg);
      border: 1px solid var(--page-66b-bet-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-66b-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-66b-bet-faq-question-bg);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-66b-bet__faq-question:hover {
      background-color: #444444;
    }

    .page-66b-bet__faq-title {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-66b-bet-text-color);
      flex-grow: 1;
      pointer-events: none; /* Prevent text selection interference */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-66b-bet__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-66b-bet-accent-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from capturing click */
      transition: transform 0.3s ease;
    }

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

    .page-66b-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: var(--page-66b-bet-faq-answer-bg);
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box;
    }

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

    .page-66b-bet__faq-answer p {
      margin: 0;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-66b-bet__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-66b-bet__section-description {
        font-size: 1em;
        margin-bottom: 40px;
      }

      .page-66b-bet__hero-section {
        min-height: 400px;
      }

      .page-66b-bet__brand-title {
        font-size: 2.8em;
      }

      .page-66b-bet__hero-subtitle {
        font-size: 1.4em;
      }

      .page-66b-bet__hero-description {
        font-size: 0.95em;
      }

      .page-66b-bet__hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-66b-bet__floating-buttons-wrapper {
        flex-direction: row;
        bottom: 10px;
        right: 10px;
        left: 10px;
        justify-content: space-around;
      }

      .page-66b-bet__floating-button {
        width: 48% !important; /* Adjust for two buttons in a row */
        height: 45px !important;
        font-size: 1em !important;
      }

      .page-66b-bet__promotions-section,
      .page-66b-bet__games-section,
      .page-66b-bet__providers-section,
      .page-66b-bet__payment-section,
      .page-66b-bet__faq-section {
        padding: 40px 15px;
      }

      .page-66b-bet__promotion-grid,
      .page-66b-bet__game-categories,
      .page-66b-bet__provider-grid,
      .page-66b-bet__payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-66b-bet__promotion-item,
      .page-66b-bet__game-item,
      .page-66b-bet__provider-item,
      .page-66b-bet__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-66b-bet__promotion-title,
      .page-66b-bet__game-title {
        font-size: 1.3em;
      }

      .page-66b-bet__promotion-text,
      .page-66b-bet__game-description {
        font-size: 0.95em;
      }

      .page-66b-bet__provider-grid,
      .page-66b-bet__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }

      .page-66b-bet__provider-item,
      .page-66b-bet__payment-item {
        max-width: 100% !important;
        padding: 10px !important;
      }

      .page-66b-bet__provider-logo,
      .page-66b-bet__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-66b-bet__faq-question {
        padding: 12px 15px;
      }

      .page-66b-bet__faq-title {
        font-size: 1.1em;
      }

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

      .page-66b-bet__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-66b-bet__brand-title {
        font-size: 2.2em;
      }

      .page-66b-bet__hero-subtitle {
        font-size: 1.2em;
      }

      .page-66b-bet__hero-cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
      }

      .page-66b-bet__floating-button {
        width: 45%;
      }
    }

    /* Ensure all images are responsive */
    .page-66b-bet img {
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    /* Ensure all list items and their containers are responsive */
    .page-66b-bet ul, .page-66b-bet ol, .page-66b-bet li,
    .page-66b-bet__promotion-grid, .page-66b-bet__game-categories,
    .page-66b-bet__provider-grid, .page-66b-bet__payment-grid {
      width: 100% !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      padding: 0 !important; /* Adjust if specific padding is needed for content inside */
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    .page-66b-bet li {
      box-sizing: border-box !important;
      width: 100% !important;
      max-width: 100% !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }
  