
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #00BFFF; /* Deep Sky Blue */
      --background-dark: #1a1a2e; /* Dark Blue */
      --text-light: #f0f0f0;
      --text-dark: #333;
      --card-bg: #222540; /* Slightly lighter dark blue */
      --border-color: #3e2e60;
      --button-hover: #ffeb3b;
      --faq-question-bg: #2c2f4f;
      --faq-answer-bg: #36395b;
      --header-offset: 122px; /* Default value, will be overridden by shared.css */
    }

    /* Base styles for the page content */
    .page-6bet-bet {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset if shared.css doesn't set body padding */
      overflow-x: hidden;
      max-width: 100vw; /* Ensure no horizontal scroll */
    }

    .page-6bet-bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    /* Section styling */
    .page-6bet-bet__section {
      padding: 40px 0;
      text-align: center;
      position: relative;
    }

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

    .page-6bet-bet__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 30px;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 10px;
    }

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

    .page-6bet-bet__section-subtitle {
      font-size: 1.5em;
      color: var(--text-light);
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-6bet-bet__hero-section {
      background-color: var(--background-dark);
      padding: 10px 0 60px 0; /* Adjusted padding-top as body handles header offset */
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-6bet-bet__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
    }

    .page-6bet-bet__hero-title {
      font-size: 3.2em;
      color: var(--primary-color);
      margin-bottom: 15px;
      text-transform: uppercase;
      line-height: 1.2;
      font-weight: bold;
    }

    .page-6bet-bet__hero-description {
      font-size: 1.3em;
      color: var(--text-light);
      margin-bottom: 30px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-6bet-bet__hero-cta {
      display: inline-block;
      background-color: var(--secondary-color);
      color: var(--background-dark);
      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-6bet-bet__hero-cta:hover {
      background-color: var(--button-hover);
      transform: translateY(-3px);
    }

    .page-6bet-bet__hero-image-wrapper {
        position: relative;
        width: 100%;
        max-width: 800px;
        margin: 30px auto 0 auto;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-6bet-bet__hero-image {
      max-width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .page-6bet-bet__hero-image:hover {
        transform: scale(1.03);
    }

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

    .page-6bet-bet__floating-button {
      display: block;
      background-color: var(--primary-color);
      color: var(--background-dark);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
    }

    .page-6bet-bet__floating-button--register {
      background-color: var(--secondary-color);
    }

    .page-6bet-bet__floating-button:hover {
      background-color: var(--button-hover);
      transform: translateY(-2px);
    }
    .page-6bet-bet__floating-button--register:hover {
      background-color: #0099e6; /* A slightly darker blue for hover */
    }


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

    .page-6bet-bet__game-card {
      background-color: var(--card-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
    }

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

    .page-6bet-bet__game-card-image-wrapper {
        width: 100%;
        overflow: hidden;
        height: 200px; /* Fixed height for consistent card appearance */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page-6bet-bet__game-card-image {
      max-width: 100%;
      height: auto;
      object-fit: cover; /* Ensures image covers the area without distortion */
      display: block;
      transition: transform 0.5s ease;
    }

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

    .page-6bet-bet__game-card-content {
      padding: 20px;
      text-align: center;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-6bet-bet__game-card-description {
      font-size: 0.95em;
      color: var(--text-light);
      margin-bottom: 15px;
    }

    /* Promotions Section */
    .page-6bet-bet__promo-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-6bet-bet__promo-item {
      background-color: var(--card-bg);
      border-radius: 12px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .page-6bet-bet__promo-item:hover {
      transform: translateY(-5px);
      background-color: #2c2f4f;
    }

    .page-6bet-bet__promo-title {
      font-size: 1.8em;
      color: var(--secondary-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-6bet-bet__promo-description {
      font-size: 1em;
      color: var(--text-light);
      margin-bottom: 15px;
    }

    .page-6bet-bet__promo-validity {
      font-size: 0.9em;
      color: #aaa;
    }

    /* Why Choose Us Section */
    .page-6bet-bet__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .page-6bet-bet__feature-item {
      background-color: var(--card-bg);
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .page-6bet-bet__feature-item:hover {
      background-color: #2c2f4f;
    }

    .page-6bet-bet__feature-icon-wrapper {
        width: 100%;
        max-width: 120px;
        height: 120px;
        margin: 0 auto 20px auto;
        overflow: hidden;
        border-radius: 50%;
        background-color: var(--secondary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
    }

    .page-6bet-bet__feature-icon {
      max-width: 80%;
      height: auto;
      display: block;
    }

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

    .page-6bet-bet__feature-description {
      font-size: 1em;
      color: var(--text-light);
    }

    /* Payment and Providers */
    .page-6bet-bet__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-6bet-bet__logo-item {
      background-color: var(--card-bg);
      border-radius: 10px;
      padding: 15px 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 150px;
      max-width: 200px;
      height: 80px;
      border: 1px solid var(--border-color);
    }

    .page-6bet-bet__logo-item:hover {
      transform: translateY(-5px) scale(1.05);
    }

    .page-6bet-bet__logo-image {
      max-width: 100%;
      max-height: 50px;
      height: auto;
      display: block;
    }

    /* FAQ Section */
    .page-6bet-bet__faq-list {
      margin-top: 40px;
      text-align: left;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-6bet-bet__faq-item {
      background-color: var(--faq-question-bg);
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border-color);
    }

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

    .page-6bet-bet__faq-question:hover {
      background-color: #36395b;
    }

    .page-6bet-bet__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

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

    .page-6bet-bet__faq-item.active .page-6bet-bet__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or rotate to make it look like a minus) */
    }

    .page-6bet-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      background-color: var(--faq-answer-bg);
      color: var(--text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-6bet-bet__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }
    .page-6bet-bet__faq-answer p:last-child {
      padding-bottom: 0;
    }

    /* Call to Action Section */
    .page-6bet-bet__cta-section {
      background-image: url('[GALLERY:banner:1920x400:betting,casino,promotions]');
      background-size: cover;
      background-position: center;
      padding: 60px 0;
      text-align: center;
      margin-top: 50px;
      position: relative;
      z-index: 1;
    }

    .page-6bet-bet__cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: -1;
    }

    .page-6bet-bet__cta-title {
      font-size: 2.8em;
      color: var(--primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-6bet-bet__cta-description {
      font-size: 1.3em;
      color: var(--text-light);
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }


    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-6bet-bet__hero-title {
        font-size: 2.8em;
      }
      .page-6bet-bet__section-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-6bet-bet__hero-title {
        font-size: 2.2em;
      }
      .page-6bet-bet__hero-description {
        font-size: 1.1em;
      }
      .page-6bet-bet__hero-cta {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-6bet-bet__section-title {
        font-size: 1.8em;
      }
      .page-6bet-bet__section-subtitle {
        font-size: 1.2em;
      }
      .page-6bet-bet__game-grid,
      .page-6bet-bet__promo-list,
      .page-6bet-bet__feature-grid {
        grid-template-columns: 1fr;
      }

      /* List item specific responsive requirements */
      .page-6bet-bet__game-card,
      .page-6bet-bet__promo-item,
      .page-6bet-bet__feature-item,
      .page-6bet-bet__faq-item {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }

      .page-6bet-bet__game-card-content,
      .page-6bet-bet__promo-item,
      .page-6bet-bet__feature-item,
      .page-6bet-bet__faq-item {
          padding: 15px !important; /* Adjust padding for smaller screens */
      }

      .page-6bet-bet__faq-question {
        padding: 15px 20px;
      }
      .page-6bet-bet__faq-question h3 {
        font-size: 1.1em;
      }
      .page-6bet-bet__faq-toggle {
        font-size: 1.5em;
      }
      .page-6bet-bet__faq-answer {
        padding: 0 20px;
      }
      .page-6bet-bet__faq-item.active .page-6bet-bet__faq-answer {
        padding: 15px 20px !important;
      }

      .page-6bet-bet__logo-grid {
        gap: 20px;
      }
      .page-6bet-bet__logo-item {
        min-width: 120px;
        max-width: 150px;
        height: 70px;
        padding: 10px 15px;
      }
      .page-6bet-bet__logo-image {
        max-height: 40px;
      }

      .page-6bet-bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row; /* Buttons side-by-side on mobile for better thumb reach */
        width: calc(100% - 30px);
        justify-content: space-around;
      }
      .page-6bet-bet__floating-button {
        flex: 1;
        margin: 0 5px;
        padding: 10px 15px;
        font-size: 1em;
      }
      .page-6bet-bet__floating-button:first-child { margin-left: 0; }
      .page-6bet-bet__floating-button:last-child { margin-right: 0; }

      /* Image responsive optimization */
      .page-6bet-bet__hero-image,
      .page-6bet-bet__game-card-image,
      .page-6bet-bet__feature-icon,
      .page-6bet-bet__logo-image {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
      .page-6bet-bet__hero-image-wrapper,
      .page-6bet-bet__game-card-image-wrapper,
      .page-6bet-bet__feature-icon-wrapper,
      .page-6bet-bet__logo-item {
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
      }
      .page-6bet-bet__feature-icon-wrapper {
        max-width: 80px !important;
        height: 80px !important;
      }
      .page-6bet-bet__game-card-image-wrapper {
        height: 150px !important;
      }
    }

    @media (max-width: 480px) {
      .page-6bet-bet__hero-title {
        font-size: 1.8em;
      }
      .page-6bet-bet__hero-description {
        font-size: 1em;
      }
      .page-6bet-bet__section-title {
        font-size: 1.5em;
      }
      .page-6bet-bet__cta-title {
        font-size: 2em;
      }
      .page-6bet-bet__cta-description {
        font-size: 1em;
      }
    }
  