
    :root {
      --page-6-bet-primary-color: #e44d26; /* Orange-red for action */
      --page-6-bet-secondary-color: #2c3e50; /* Dark blue-grey for text */
      --page-6-bet-accent-color: #f39c12; /* Amber for highlights */
      --page-6-bet-background-dark: #1a1a1a;
      --page-6-bet-background-light: #f5f5f5;
      --page-6-bet-text-light: #ffffff;
      --page-6-bet-text-dark: #333333;
      --page-6-bet-border-color: #444;
    }

    .page-6-bet {
      font-family: 'Arial', sans-serif;
      background-color: var(--page-6-bet-background-dark);
      color: var(--page-6-bet-text-light);
      line-height: 1.6;
      padding-top: 10px; /* Small decorative padding, assuming body has header offset */
      overflow-x: hidden;
    }

    .page-6-bet__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-6-bet__section--dark {
      background-color: var(--page-6-bet-background-dark);
      color: var(--page-6-bet-text-light);
    }

    .page-6-bet__section--light {
      background-color: #222; /* Slightly lighter dark */
      color: var(--page-6-bet-text-light);
    }

    .page-6-bet__heading {
      font-size: 2.5em;
      color: var(--page-6-bet-primary-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-6-bet__subheading {
      font-size: 1.8em;
      color: var(--page-6-bet-accent-color);
      margin-bottom: 15px;
    }

    .page-6-bet__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #ccc;
    }

    /* Hero Section */
    .page-6-bet__hero-section {
      position: relative;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      overflow: hidden;
    }

    .page-6-bet__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.5); /* Allowed for background dimming */
    }

    .page-6-bet__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      text-align: center;
      color: var(--page-6-bet-text-light);
    }

    .page-6-bet__hero-title {
      font-size: 3.5em;
      color: var(--page-6-bet-primary-color);
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-6-bet__hero-subtitle {
      font-size: 1.5em;
      color: #eee;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-6-bet__cta-button {
      display: inline-block;
      background-color: var(--page-6-bet-primary-color);
      color: var(--page-6-bet-text-light);
      padding: 15px 30px;
      border-radius: 5px;
      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-6-bet__cta-button:hover {
      background-color: var(--page-6-bet-accent-color);
      transform: translateY(-2px);
    }

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

    .page-6-bet__floating-button {
      background-color: var(--page-6-bet-primary-color);
      color: var(--page-6-bet-text-light);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      min-width: 100px;
      border: none;
      cursor: pointer;
    }

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

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

    .page-6-bet__game-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--page-6-bet-border-color);
    }

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

    .page-6-bet__game-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-6-bet__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-6-bet__game-info {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .page-6-bet__game-title {
      font-size: 1.5em;
      color: var(--page-6-bet-accent-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-6-bet__game-description {
      font-size: 0.95em;
      color: #bbb;
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-6-bet__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid var(--page-6-bet-border-color);
    }

    .page-6-bet__promo-card-title {
      font-size: 1.6em;
      color: var(--page-6-bet-primary-color);
      margin-bottom: 10px;
    }

    .page-6-bet__promo-card-description {
      font-size: 1em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-6-bet__promo-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      text-align: left;
    }

    .page-6-bet__promo-item {
      background-color: #333;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      border-left: 5px solid var(--page-6-bet-accent-color);
      color: #eee;
      font-size: 1em;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-6-bet__promo-item strong {
      color: var(--page-6-bet-primary-color);
    }

    /* Payment & Providers */
    .page-6-bet__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
    }

    .page-6-bet__logo-item {
      background-color: #2a2a2a;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px;
      box-sizing: border-box;
      border: 1px solid var(--page-6-bet-border-color);
    }

    .page-6-bet__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: grayscale(100%) brightness(1.8); /* Allowed for brand logos to fit dark theme */
    }

    /* Social Media */
    .page-6-bet__social-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
    }

    .page-6-bet__social-link {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--page-6-bet-text-light);
      text-decoration: none;
      font-size: 1.1em;
      background-color: var(--page-6-bet-primary-color);
      padding: 10px 20px;
      border-radius: 5px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-6-bet__social-link:hover {
      background-color: var(--page-6-bet-accent-color);
      transform: translateY(-2px);
    }

    .page-6-bet__social-icon {
      width: 24px;
      height: 24px;
      object-fit: contain;
      filter: invert(100%); /* Allowed for social icons to fit dark theme */
    }

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

    .page-6-bet__faq-item {
      background-color: #2a2a2a;
      border: 1px solid var(--page-6-bet-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-6-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      font-size: 1.15em;
      color: var(--page-6-bet-text-light);
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-6-bet__faq-question:hover {
      background-color: #444;
    }

    .page-6-bet__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevents text selection from interfering with click */
      color: var(--page-6-bet-primary-color);
    }

    .page-6-bet__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents icon from interfering with click */
      color: var(--page-6-bet-accent-color);
    }

    .page-6-bet__faq-item.active .page-6-bet__faq-toggle {
      transform: rotate(45deg); /* Plus sign becomes cross */
    }

    .page-6-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #bbb;
      font-size: 1em;
      box-sizing: border-box;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-6-bet__section {
        padding: 30px 15px;
      }

      .page-6-bet__hero-section {
        padding: 60px 15px;
        min-height: 300px;
      }

      .page-6-bet__hero-title {
        font-size: 2.5em;
      }

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

      .page-6-bet__heading {
        font-size: 2em;
      }

      .page-6-bet__subheading {
        font-size: 1.5em;
      }

      .page-6-bet__game-grid,
      .page-6-bet__promo-list,
      .page-6-bet__logo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-6-bet__promo-item,
      .page-6-bet__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
      }

      .page-6-bet__game-image {
        height: 180px;
      }

      .page-6-bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Layout buttons horizontally on smaller screens */
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-6-bet__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-6-bet__faq-question {
        padding: 15px;
        font-size: 1em;
      }

      .page-6-bet__faq-answer {
        padding: 0 15px;
      }

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

      /* Ensure all images are responsive */
      .page-6-bet img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-6-bet__game-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-6-bet__social-link {
        width: calc(50% - 10px);
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .page-6-bet__hero-title {
        font-size: 2em;
      }
      .page-6-bet__hero-subtitle {
        font-size: 1em;
      }
      .page-6-bet__heading {
        font-size: 1.8em;
      }
      .page-6-bet__floating-buttons {
        flex-direction: column;
      }
      .page-6-bet__floating-button {
        margin: 0;
        width: 100%;
      }
    }
  