
    :root {
      --page-12bet-primary-color: #e44d26; /* Màu cam đỏ */
      --page-12bet-secondary-color: #333;
      --page-12bet-accent-color: #f7b731; /* Vàng cam */
      --page-12bet-text-color: #333;
      --page-12bet-light-bg: #f5f5f5;
      --page-12bet-dark-bg: #222;
      --page-12bet-white: #fff;
      --page-12bet-border-color: #ddd;
      --page-12bet-font-family: 'Arial', sans-serif;
    }

    .page-12bet {
      font-family: var(--page-12bet-font-family);
      line-height: 1.6;
      color: var(--page-12bet-text-color);
      background-color: var(--page-12bet-light-bg);
      padding-bottom: 80px; /* Space for fixed footer */
    }

    /* Fixed header compensation */
    .page-12bet__hero-section {
      padding-top: 120px; /* Desktop padding */
      position: relative;
      overflow: hidden;
      text-align: center;
      background: var(--page-12bet-dark-bg);
    }

    @media (max-width: 768px) {
      .page-12bet__hero-section {
        padding-top: 100px; /* Mobile padding */
      }
    }

    .page-12bet__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 20px 0;
        background-color: var(--page-12bet-dark-bg);
    }

    .page-12bet__hero-image {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-12bet__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-12bet__section {
      background-color: var(--page-12bet-white);
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .page-12bet__section-title {
      color: var(--page-12bet-primary-color);
      text-align: center;
      margin-bottom: 25px;
      font-size: 2.2em;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-12bet__section-subtitle {
      color: var(--page-12bet-secondary-color);
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.1em;
    }

    .page-12bet__button {
      display: inline-block;
      background-color: var(--page-12bet-primary-color);
      color: var(--page-12bet-white);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-12bet__button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-12bet__promo-button {
      background-color: var(--page-12bet-accent-color);
      font-size: 1.1em;
      padding: 15px 30px;
      border-radius: 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-12bet__promo-button:hover {
      background-color: #e6a020;
    }

    .page-12bet__text-center {
      text-align: center;
    }

    .page-12bet__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-12bet__card {
      background-color: var(--page-12bet-light-bg);
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .page-12bet__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .page-12bet__card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Fixed height for consistency */
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--page-12bet-dark-bg);
    }

    .page-12bet__card-image {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        object-fit: contain; /* Ensure image fits without cropping or stretching */
    }

    .page-12bet__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-12bet__card-title {
      font-size: 1.4em;
      color: var(--page-12bet-primary-color);
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-12bet__card-text {
      font-size: 0.95em;
      color: var(--page-12bet-text-color);
      margin-bottom: 15px;
    }

    .page-12bet__card-link {
      display: block;
      background-color: var(--page-12bet-primary-color);
      color: var(--page-12bet-white);
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: auto; /* Push button to bottom */
    }

    .page-12bet__card-link:hover {
      background-color: #c0392b;
    }

    .page-12bet__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-12bet__provider-item {
      background-color: var(--page-12bet-white);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 120px; /* Ensure a minimum height for all provider logos */
    }

    .page-12bet__provider-item:hover {
      transform: translateY(-3px);
    }

    .page-12bet__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        max-height: 80px; /* Limit logo height */
        object-fit: contain;
        display: block;
    }

    .page-12bet__provider-name {
      margin-top: 10px;
      font-size: 0.9em;
      color: var(--page-12bet-text-color);
      font-weight: bold;
    }

    .page-12bet__info-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-12bet__info-list li {
      background-color: var(--page-12bet-light-bg);
      margin-bottom: 10px;
      padding: 15px 20px;
      border-left: 5px solid var(--page-12bet-primary-color);
      border-radius: 5px;
      font-size: 1.05em;
    }

    .page-12bet__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

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

    .page-12bet__floating-button:hover {
      background-color: #e6a020;
      transform: translateY(-3px);
    }

    .page-12bet__floating-button--login {
      background-color: var(--page-12bet-primary-color);
    }

    .page-12bet__floating-button--login:hover {
      background-color: #c0392b;
    }

    /* FAQ Section */
    .page-12bet__faq-item {
      background-color: var(--page-12bet-white);
      border: 1px solid var(--page-12bet-border-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .page-12bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-12bet-light-bg);
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid transparent;
      transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
    }

    .page-12bet__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-12bet__faq-item.active .page-12bet__faq-question {
      border-bottom-color: var(--page-12bet-border-color);
    }

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

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

    .page-12bet__faq-item.active .page-12bet__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar, or just change text */
    }

    .page-12bet__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: var(--page-12bet-text-color);
    }

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

    .page-12bet__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

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

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

      .page-12bet__grid {
        grid-template-columns: 1fr;
      }

      .page-12bet__floating-buttons {
        bottom: 15px;
        right: 15px;
        flex-direction: row;
        width: calc(100% - 30px);
        justify-content: space-around;
      }

      .page-12bet__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

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

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

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

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

      .page-12bet__faq-item.active .page-12bet__faq-answer {
        padding: 15px !important;
      }
      .page-12bet__hero-image-wrapper,
      .page-12bet__card-image-wrapper,
      .page-12bet__provider-item {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
      .page-12bet__hero-image,
      .page-12bet__card-image,
      .page-12bet__provider-logo {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  