
    :root {
      --page-bet-12-primary-color: #e44d26; /* A vibrant color for betting theme */
      --page-bet-12-secondary-color: #333;
      --page-bet-12-accent-color: #ffcc00; /* Gold/yellow for highlights */
      --page-bet-12-background-light: #f8f8f8;
      --page-bet-12-background-dark: #222;
      --page-bet-12-text-light: #fff;
      --page-bet-12-text-dark: #333;
      --page-bet-12-border-color: #ddd;
      --page-bet-12-border-radius: 8px;
      --page-bet-12-spacing-sm: 10px;
      --page-bet-12-spacing-md: 20px;
      --page-bet-12-spacing-lg: 40px;
      --page-bet-12-font-family: 'Arial', sans-serif;
    }

    /* Base styles for the page content */
    .page-bet-12 {
      font-family: var(--page-bet-12-font-family);
      color: var(--page-bet-12-text-dark);
      line-height: 1.6;
      background-color: var(--page-bet-12-background-light);
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    @media (min-width: 769px) {
        .page-bet-12 {
            padding-top: 10px; /* Adjust for desktop if body already has padding */
        }
    }

    .page-bet-12__section {
      padding: var(--page-bet-12-spacing-lg) var(--page-bet-12-spacing-md);
      margin: 0 auto;
      max-width: 1200px;
    }

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

    .page-bet-12__heading {
      text-align: center;
      color: var(--page-bet-12-primary-color);
      margin-bottom: var(--page-bet-12-spacing-lg);
      font-size: 2.5em;
      font-weight: bold;
    }
    .page-bet-12__section--dark .page-bet-12__heading {
        color: var(--page-bet-12-accent-color);
    }

    .page-bet-12__subheading {
      text-align: center;
      color: var(--page-bet-12-secondary-color);
      margin-bottom: var(--page-bet-12-spacing-md);
      font-size: 1.8em;
    }
    .page-bet-12__section--dark .page-bet-12__subheading {
        color: var(--page-bet-12-text-light);
    }

    .page-bet-12__paragraph {
      text-align: center;
      margin-bottom: var(--page-bet-12-spacing-md);
      font-size: 1.1em;
    }
    .page-bet-12__section--dark .page-bet-12__paragraph {
        color: rgba(255, 255, 255, 0.8);
    }

    /* Hero Section */
    .page-bet-12__hero-section {
      background-color: #1a1a1a;
      color: var(--page-bet-12-text-light);
      text-align: center;
      padding: 10px var(--page-bet-12-spacing-md) var(--page-bet-12-spacing-lg); /* 10px top padding for hero */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      position: relative;
      overflow: hidden;
    }

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

    .page-bet-12__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-bet-12__hero-title {
      font-size: 3em;
      color: var(--page-bet-12-accent-color);
      margin-bottom: var(--page-bet-12-spacing-sm);
      line-height: 1.2;
    }

    .page-bet-12__hero-description {
      font-size: 1.3em;
      margin-bottom: var(--page-bet-12-spacing-md);
      color: rgba(255, 255, 255, 0.9);
    }

    .page-bet-12__promo-banner {
      background-color: var(--page-bet-12-primary-color);
      color: var(--page-bet-12-text-light);
      padding: var(--page-bet-12-spacing-sm) var(--page-bet-12-spacing-md);
      border-radius: var(--page-bet-12-border-radius);
      font-size: 1.1em;
      font-weight: bold;
      margin-top: var(--page-bet-12-spacing-md);
    }

    /* Floating Buttons for Register/Login */
    .page-bet-12__floating-buttons {
      position: fixed;
      bottom: var(--page-bet-12-spacing-md);
      right: var(--page-bet-12-spacing-md);
      display: flex;
      flex-direction: column;
      gap: var(--page-bet-12-spacing-sm);
      z-index: 1000;
    }

    .page-bet-12__button {
      background-color: var(--page-bet-12-primary-color);
      color: var(--page-bet-12-text-light);
      padding: 12px 25px;
      border: none;
      border-radius: 30px;
      font-size: 1.1em;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-bet-12__button:hover {
      background-color: #c7401f; /* Manually darkened */
      transform: translateY(-2px);
    }

    .page-bet-12__button--secondary {
      background-color: var(--page-bet-12-accent-color);
      color: #222; /* Ensuring high contrast on accent color */
    }

    .page-bet-12__button--secondary:hover {
      background-color: #e6b800; /* Manually darkened */
    }

    /* Info Cards Section */
    .page-bet-12__info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--page-bet-12-spacing-md);
      margin-top: var(--page-bet-12-spacing-lg);
    }

    .page-bet-12__info-card {
      background-color: #fff;
      border-radius: var(--page-bet-12-border-radius);
      padding: var(--page-bet-12-spacing-md);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid var(--page-bet-12-border-color);
    }

    .page-bet-12__info-card:hover {
      transform: translateY(-5px);
    }
    
    .page-bet-12__info-card-image {
        width: 200px; /* Minimum width */
        height: 200px; /* Minimum height */
        object-fit: cover;
        margin-bottom: var(--page-bet-12-spacing-sm);
        border-radius: var(--page-bet-12-border-radius);
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%; /* Responsive image */
    }

    .page-bet-12__info-card-title {
      font-size: 1.4em;
      color: var(--page-bet-12-primary-color);
      margin-bottom: var(--page-bet-12-spacing-sm);
    }

    .page-bet-12__info-card-description {
      font-size: 0.95em;
      color: var(--page-bet-12-secondary-color);
    }

    /* Game Categories Section */
    .page-bet-12__game-categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: var(--page-bet-12-spacing-md);
      margin-top: var(--page-bet-12-spacing-lg);
    }

    .page-bet-12__game-card {
      background-color: var(--page-bet-12-background-dark);
      color: var(--page-bet-12-text-light);
      border-radius: var(--page-bet-12-border-radius);
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      text-align: center;
      display: flex;
      flex-direction: column;
    }

    .page-bet-12__game-card:hover {
      transform: translateY(-5px);
    }

    .page-bet-12__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-bet-12__game-card-image {
      width: 100%;
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      transition: transform 0.3s ease;
    }

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

    .page-bet-12__game-card-content {
      padding: var(--page-bet-12-spacing-md);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-bet-12__game-card-title {
      font-size: 1.5em;
      color: var(--page-bet-12-accent-color);
      margin-bottom: var(--page-bet-12-spacing-sm);
    }

    .page-bet-12__game-card-description {
      font-size: 0.9em;
      margin-bottom: var(--page-bet-12-spacing-md);
      color: rgba(255, 255, 255, 0.8);
    }

    /* Promotions Section */
    .page-bet-12__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--page-bet-12-spacing-md);
      margin-top: var(--page-bet-12-spacing-lg);
    }

    .page-bet-12__promo-card {
      background-color: #fff;
      border-radius: var(--page-bet-12-border-radius);
      padding: var(--page-bet-12-spacing-md);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      border: 1px solid var(--page-bet-12-border-color);
    }

    .page-bet-12__promo-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-bet-12__promo-card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: var(--page-bet-12-border-radius);
      margin-bottom: var(--page-bet-12-spacing-sm);
    }

    .page-bet-12__promo-card-title {
      font-size: 1.3em;
      color: var(--page-bet-12-primary-color);
      margin-bottom: var(--page-bet-12-spacing-sm);
    }

    .page-bet-12__promo-card-description {
      font-size: 0.95em;
      color: var(--page-bet-12-secondary-color);
      margin-bottom: var(--page-bet-12-spacing-md);
    }

    /* Payment Methods & Game Providers */
    .page-bet-12__list-section {
      text-align: center;
      margin-top: var(--page-bet-12-spacing-lg);
    }

    .page-bet-12__list-title {
      font-size: 2em;
      color: var(--page-bet-12-primary-color);
      margin-bottom: var(--page-bet-12-spacing-md);
    }
    .page-bet-12__section--dark .page-bet-12__list-title {
        color: var(--page-bet-12-accent-color);
    }

    .page-bet-12__list-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--page-bet-12-spacing-sm);
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 900px;
    }

    .page-bet-12__list-item {
      background-color: #fff;
      border-radius: var(--page-bet-12-border-radius);
      padding: var(--page-bet-12-spacing-sm);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      font-weight: bold;
      color: var(--page-bet-12-secondary-color);
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word; /* Required for list items */
      overflow-wrap: break-word; /* Required for list items */
      word-break: break-word; /* Required for list items */
    }
    .page-bet-12__section--dark .page-bet-12__list-item {
        background-color: #333;
        color: var(--page-bet-12-text-light);
    }

    /* FAQ Section */
    .page-bet-12__faq-section {
      margin-top: var(--page-bet-12-spacing-lg);
      padding-bottom: var(--page-bet-12-spacing-lg);
    }

    .page-bet-12__faq-item {
      background-color: #fff;
      border: 1px solid var(--page-bet-12-border-color);
      border-radius: var(--page-bet-12-border-radius);
      margin-bottom: var(--page-bet-12-spacing-sm);
      overflow: hidden;
    }
    .page-bet-12__section--dark .page-bet-12__faq-item {
        background-color: #333;
        border-color: #444;
    }


    .page-bet-12__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: var(--page-bet-12-spacing-md);
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-bet-12-secondary-color);
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
    }
    .page-bet-12__section--dark .page-bet-12__faq-question {
        background-color: #444;
        color: var(--page-bet-12-text-light);
    }

    .page-bet-12__faq-question:hover {
      background-color: #e0e0e0;
    }
    .page-bet-12__section--dark .page-bet-12__faq-question:hover {
        background-color: #555;
    }


    .page-bet-12__faq-question h3 {
      margin: 0;
      font-size: 1.2em; /* Ensure heading size is consistent */
      pointer-events: none; /* Crucial for click event to work on parent */
      color: inherit; /* Inherit color from parent */
    }

    .page-bet-12__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Crucial for click event to work on parent */
      transition: transform 0.3s ease;
      color: var(--page-bet-12-primary-color);
    }
    .page-bet-12__section--dark .page-bet-12__faq-toggle {
        color: var(--page-bet-12-accent-color);
    }

    .page-bet-12__faq-item.active .page-bet-12__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-bet-12__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--page-bet-12-spacing-md); /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: var(--page-bet-12-secondary-color);
    }
    .page-bet-12__section--dark .page-bet-12__faq-answer {
        color: rgba(255, 255, 255, 0.8);
    }

    .page-bet-12__faq-item.active .page-bet-12__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to show content */
      padding: var(--page-bet-12-spacing-md) !important; /* Expanded padding */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-bet-12__hero-title {
        font-size: 2.2em;
      }

      .page-bet-12__hero-description {
        font-size: 1em;
      }

      .page-bet-12__heading {
        font-size: 2em;
      }

      .page-bet-12__subheading {
        font-size: 1.5em;
      }

      .page-bet-12__section {
        padding: var(--page-bet-12-spacing-md) var(--page-bet-12-spacing-sm);
      }

      .page-bet-12__floating-buttons {
        bottom: var(--page-bet-12-spacing-sm);
        right: var(--page-bet-12-spacing-sm);
      }

      .page-bet-12__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      /* List item responsive requirements */
      .page-bet-12__list-grid {
        grid-template-columns: 1fr; /* Stack items */
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-bet-12__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px !important; /* Adjust padding for mobile */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsive requirements */
      .page-bet-12__info-card-image,
      .page-bet-12__game-card-image,
      .page-bet-12__promo-card-image,
      .page-bet-12__hero-background {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-bet-12__game-card-image-wrapper,
      .page-bet-12__promo-card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-bet-12__game-card-image {
        height: 200px !important; /* Maintain a reasonable height for game images on mobile */
      }

      .page-bet-12__faq-question {
        padding: var(--page-bet-12-spacing-sm);
        font-size: 1.1em;
      }

      .page-bet-12__faq-question h3 {
        font-size: 1.1em;
      }

      .page-bet-12__faq-answer {
        padding: 0 var(--page-bet-12-spacing-sm);
      }

      .page-bet-12__faq-item.active .page-bet-12__faq-answer {
        padding: var(--page-bet-12-spacing-sm) !important;
      }
    }
  