
    :root {
      --page-32-bet-primary-color: #e44d26; /* Cam đỏ */
      --page-32-bet-secondary-color: #f7a000; /* Vàng cam */
      --page-32-bet-dark-bg: #1a1a1a;
      --page-32-bet-light-bg: #2a2a2a;
      --page-32-bet-text-color: #ffffff;
      --page-32-bet-accent-color: #4CAF50; /* Xanh lá cây */
      --page-32-bet-border-color: #3a3a3a;
      --header-offset: 122px; /* Default value, assumed to be set by shared.css */
    }

    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--page-32-bet-dark-bg);
      color: var(--page-32-bet-text-color);
      line-height: 1.6;
    }

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

    .page-32-bet__hero-section {
      text-align: center;
      padding: 60px 0 40px;
      background: linear-gradient(135deg, var(--page-32-bet-dark-bg), var(--page-32-bet-light-bg));
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

    .page-32-bet__hero-section::before {
      content: '';
      position: absolute;
      top: -50px;
      left: -50px;
      width: 200px;
      height: 200px;
      background-color: rgba(228, 77, 38, 0.1);
      border-radius: 50%;
      z-index: 0;
    }

    .page-32-bet__hero-section::after {
      content: '';
      position: absolute;
      bottom: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background-color: rgba(247, 160, 0, 0.1);
      border-radius: 50%;
      z-index: 0;
    }

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

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

    .page-32-bet__hero-subtitle {
      font-size: 1.3em;
      color: var(--page-32-bet-text-color);
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-32-bet__cta-button {
      display: inline-block;
      background-color: var(--page-32-bet-primary-color);
      color: var(--page-32-bet-text-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-32-bet__cta-button:hover {
      background-color: var(--page-32-bet-secondary-color);
      transform: translateY(-3px);
    }

    .page-32-bet__section {
      padding: 60px 0;
      text-align: center;
      background-color: var(--page-32-bet-light-bg);
      border-bottom: 1px solid var(--page-32-bet-border-color);
      border-radius: 10px;
      margin-top: 30px;
    }

    .page-32-bet__section:nth-of-type(even) {
      background-color: var(--page-32-bet-dark-bg);
    }

    .page-32-bet__section-title {
      font-size: 2.2em;
      color: var(--page-32-bet-primary-color);
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-32-bet__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
      justify-content: center;
    }

    .page-32-bet__product-card {
      background-color: var(--page-32-bet-dark-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border: 1px solid var(--page-32-bet-border-color);
    }

    .page-32-bet__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-32-bet__product-image-wrapper {
      width: 100%;
      max-width: 100%;
      height: 200px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-32-bet__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .page-32-bet__product-card:hover .page-32-bet__product-image {
      transform: scale(1.05);
    }

    .page-32-bet__product-content {
      padding: 25px;
    }

    .page-32-bet__product-title {
      font-size: 1.5em;
      color: var(--page-32-bet-secondary-color);
      margin-bottom: 15px;
    }

    .page-32-bet__product-description {
      font-size: 0.95em;
      color: #ccc;
    }

    .page-32-bet__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-32-bet__promo-card {
      background-color: var(--page-32-bet-dark-bg);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid var(--page-32-bet-border-color);
      transition: border-color 0.3s ease;
    }

    .page-32-bet__promo-card:hover {
      border-color: var(--page-32-bet-primary-color);
    }

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

    .page-32-bet__promo-description {
      color: #ccc;
      margin-bottom: 20px;
    }

    .page-32-bet__promo-details {
      color: var(--page-32-bet-secondary-color);
      font-weight: bold;
    }

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

    .page-32-bet__why-choose-item {
      background-color: var(--page-32-bet-dark-bg);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      border-left: 5px solid var(--page-32-bet-primary-color);
      transition: background-color 0.3s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-32-bet__why-choose-item:hover {
      background-color: #333;
    }

    .page-32-bet__why-choose-item h3 {
      color: var(--page-32-bet-secondary-color);
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.3em;
    }

    .page-32-bet__why-choose-item p {
      color: #ccc;
    }

    .page-32-bet__faq-section {
      background-color: var(--page-32-bet-light-bg);
      border-radius: 10px;
      margin-top: 30px;
      padding: 60px 0;
    }

    .page-32-bet__faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

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

    .page-32-bet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-32-bet-dark-bg);
      color: var(--page-32-bet-text-color);
      font-size: 1.1em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-32-bet__faq-question:hover {
      background-color: #333;
    }

    .page-32-bet__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to match parent font size */
      color: var(--page-32-bet-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-32-bet__faq-item.active .page-32-bet__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-32-bet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #ccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-32-bet__call-to-action-section {
      background-color: var(--page-32-bet-primary-color);
      color: var(--page-32-bet-text-color);
      padding: 50px 0;
      text-align: center;
      border-radius: 10px;
      margin-top: 30px;
      margin-bottom: 30px;
    }

    .page-32-bet__call-to-action-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .page-32-bet__call-to-action-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-32-bet__floating-button {
      background-color: var(--page-32-bet-accent-color);
      color: var(--page-32-bet-text-color);
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      min-width: 120px; /* Ensure buttons are wide enough */
    }

    .page-32-bet__floating-button:hover {
      background-color: #5cb85c;
      transform: translateY(-3px);
    }

    .page-32-bet__login-button {
      background-color: var(--page-32-bet-secondary-color);
    }

    .page-32-bet__login-button:hover {
      background-color: #ffc107;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-32-bet {
        padding: 0 10px;
      }

      .page-32-bet__hero-section {
        padding: 40px 0 30px;
      }

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

      .page-32-bet__hero-subtitle {
        font-size: 1.1em;
      }

      .page-32-bet__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-32-bet__section {
        padding: 40px 0;
      }

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

      .page-32-bet__product-grid,
      .page-32-bet__promo-grid,
      .page-32-bet__why-choose-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-32-bet__product-card,
      .page-32-bet__promo-card,
      .page-32-bet__why-choose-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .page-32-bet__why-choose-list {
        padding: 0; /* Ensure list container has no extra padding */
      }

      .page-32-bet__why-choose-item p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-32-bet__product-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-32-bet__product-image {
        max-width: 100% !important;
        height: auto !important;
      }

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

      .page-32-bet__faq-answer {
        padding: 0 20px;
      }

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

      .page-32-bet__call-to-action-title {
        font-size: 2em;
      }

      .page-32-bet__call-to-action-description {
        font-size: 1em;
      }

      .page-32-bet__floating-buttons-wrapper {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        justify-content: space-around;
        gap: 5px;
        bottom: 10px;
      }

      .page-32-bet__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        min-width: unset;
      }
    }

    @media (max-width: 480px) {
      .page-32-bet__hero-title {
        font-size: 1.8em;
      }
      .page-32-bet__section-title {
        font-size: 1.5em;
      }
      .page-32-bet__call-to-action-title {
        font-size: 1.8em;
      }
    }
  