
    :root {
      --page-22bet-primary-color: #007bff; /* Blue */
      --page-22bet-secondary-color: #ffc107; /* Yellow */
      --page-22bet-dark-bg: #1a1a1a; /* Dark background */
      --page-22bet-light-text: #ffffff;
      --page-22bet-dark-text: #333333;
      --page-22bet-grey-text: #cccccc;
      --page-22bet-card-bg: #2a2a2a;
      --page-22bet-border-color: #444444;
      --header-offset: 122px; /* Default offset if not provided by shared.css */
    }

    /* Base styles for the page container */
    .page-22bet {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-22bet-light-text);
      background-color: var(--page-22bet-dark-bg);
      padding-top: var(--header-offset); /* Fallback for header offset */
    }

    /* Section styling */
    .page-22bet__section {
      padding: 40px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-22bet__section--dark {
      background-color: #222222;
    }

    .page-22bet__section-title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: var(--page-22bet-secondary-color);
      text-transform: uppercase;
    }

    .page-22bet__section-subtitle {
      font-size: 1.2em;
      margin-bottom: 40px;
      color: var(--page-22bet-grey-text);
    }

    /* Hero Section */
    .page-22bet__hero-section {
      background-color: #000;
      padding: 10px 0 60px 0; /* Adjusted padding-top as body handles full offset */
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-22bet__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.4;
    }

    .page-22bet__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-22bet__hero-title {
      font-size: 3em;
      color: var(--page-22bet-light-text);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-22bet__hero-description {
      font-size: 1.1em;
      color: var(--page-22bet-grey-text);
      margin-bottom: 30px;
    }

    .page-22bet__hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* General Button Styling (for non-linked buttons) */
    .page-22bet__button {
      background-color: var(--page-22bet-primary-color);
      color: var(--page-22bet-light-text);
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-size: 1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

    .page-22bet__button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-22bet__button--secondary {
      background-color: var(--page-22bet-secondary-color);
      color: var(--page-22bet-dark-text);
    }

    .page-22bet__button--secondary:hover {
      background-color: #e0a800;
    }

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

    .page-22bet__game-card {
      background-color: var(--page-22bet-card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

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

    .page-22bet__game-card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
    }

    .page-22bet__game-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
      height: auto; /* Maintain aspect ratio */
    }

    .page-22bet__game-card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .page-22bet__game-card-title {
      font-size: 1.5em;
      color: var(--page-22bet-secondary-color);
      margin-bottom: 10px;
    }

    .page-22bet__game-card-description {
      font-size: 0.95em;
      color: var(--page-22bet-grey-text);
    }

    /* Promotions Section */
    .page-22bet__promotion-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-22bet__promotion-item {
      background-color: var(--page-22bet-card-bg);
      border-left: 5px solid var(--page-22bet-primary-color);
      padding: 25px;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-22bet__promotion-item:hover {
      transform: translateX(5px);
    }

    .page-22bet__promotion-title {
      font-size: 1.4em;
      color: var(--page-22bet-primary-color);
      margin-bottom: 10px;
    }

    .page-22bet__promotion-description {
      color: var(--page-22bet-grey-text);
      font-size: 0.95em;
    }

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

    .page-22bet__logo-item {
      background-color: var(--page-22bet-card-bg);
      border-radius: 8px;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-22bet__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-22bet__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    /* Why Choose Section */
    .page-22bet__feature-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-22bet__feature-item {
      background-color: var(--page-22bet-card-bg);
      padding: 25px;
      border-radius: 10px;
      text-align: left;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
      border-top: 4px solid var(--page-22bet-secondary-color);
      box-sizing: border-box;
    }

    .page-22bet__feature-title {
      font-size: 1.3em;
      color: var(--page-22bet-light-text);
      margin-bottom: 10px;
    }

    .page-22bet__feature-description {
      color: var(--page-22bet-grey-text);
      font-size: 0.95em;
    }

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

    .page-22bet__faq-item {
      background-color: var(--page-22bet-card-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      box-sizing: border-box;
    }

    .page-22bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #333333;
      color: var(--page-22bet-light-text);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

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

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

    .page-22bet__faq-item.active .page-22bet__faq-toggle {
      transform: rotate(45deg); /* Plus to X (or rotate 180 for minus visual) */
    }
    
    .page-22bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding for collapsed state */
      color: var(--page-22bet-grey-text);
      background-color: var(--page-22bet-card-bg);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
      text-align: left;
    }

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

    /* Floating Register/Login Buttons */
    .page-22bet__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 100%;
      max-width: 350px; /* Limit width for mobile */
      justify-content: center;
      box-sizing: border-box;
      padding: 0 10px;
    }

    .page-22bet__floating-button {
      flex: 1;
      padding: 12px 0;
      font-size: 1.1em;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
      cursor: pointer;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-22bet__floating-button--register {
      background-color: var(--page-22bet-primary-color);
      color: var(--page-22bet-light-text);
    }

    .page-22bet__floating-button--register:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-22bet__floating-button--login {
      background-color: var(--page-22bet-secondary-color);
      color: var(--page-22bet-dark-text);
    }

    .page-22bet__floating-button--login:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-22bet {
        padding-top: var(--header-offset); /* Ensure body padding-top is respected */
      }

      .page-22bet__hero-title {
        font-size: 2.2em;
      }

      .page-22bet__hero-description {
        font-size: 1em;
      }

      .page-22bet__section-title {
        font-size: 1.8em;
      }

      .page-22bet__section-subtitle {
        font-size: 1em;
      }

      .page-22bet__game-grid,
      .page-22bet__promotion-list,
      .page-22bet__logo-grid,
      .page-22bet__feature-list {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 20px;
      }

      .page-22bet__game-card,
      .page-22bet__promotion-item,
      .page-22bet__feature-item,
      .page-22bet__faq-item,
      .page-22bet__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 smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-22bet__game-card-image-wrapper {
        height: 180px;
      }

      .page-22bet__game-card-content,
      .page-22bet__promotion-item,
      .page-22bet__feature-item,
      .page-22bet__faq-question,
      .page-22bet__faq-answer {
        padding: 15px !important;
      }

      .page-22bet__faq-question h3 {
        font-size: 1em;
      }

      .page-22bet__faq-toggle {
        font-size: 1.3em;
      }

      .page-22bet__floating-buttons {
        gap: 10px;
        max-width: 95%;
        padding: 0;
      }

      .page-22bet__floating-button {
        font-size: 1em;
        padding: 10px 0;
      }
    }

    @media (max-width: 480px) {
      .page-22bet__hero-title {
        font-size: 1.8em;
      }
      .page-22bet__section-title {
        font-size: 1.6em;
      }
      .page-22bet__hero-buttons {
        flex-direction: column;
        gap: 10px;
      }
      .page-22bet__button {
        width: 80%;
        margin: 0 auto;
      }
      .page-22bet__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    }
  