
    /* Biến CSS tùy chỉnh */
    :root {
      --primary-color: #e44d26; /* Màu cam/đỏ rực rỡ */
      --secondary-color: #333;
      --text-light: #f8f8f8;
      --text-dark: #333;
      --bg-dark: #1a1a1a;
      --bg-light: #2c2c2c;
      --accent-color: #007bff; /* Màu xanh cho điểm nhấn, nút */
    }

    .page-12play44 {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--bg-dark);
      line-height: 1.6;
      /* Dành cho trường hợp shared.css không xử lý padding-top cho body */
      padding-top: var(--header-offset, 122px);
    }

    /* Phần Hero */
    .page-12play44__hero-section {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:casino,game,banner,12play44]') no-repeat center center/cover;
      color: var(--text-light);
      text-align: center;
      padding: 80px 20px; /* Padding nội bộ cho phần hero */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
      margin-bottom: 40px;
      border-radius: 8px;
      box-sizing: border-box;
    }

    .page-12play44__hero-content {
      max-width: 900px;
      z-index: 1;
    }

    .page-12play44__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .page-12play44__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #fff;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-12play44__hero-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    /* Nút nổi */
    .page-12play44__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: 100%;
      max-width: 340px; /* Giới hạn chiều rộng cho thiết bị di động */
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-12play44__button {
      flex: 1;
      padding: 12px 25px;
      border-radius: 30px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: none;
    }

    .page-12play44__button--register {
      background-color: var(--primary-color);
      color: var(--text-light);
    }

    .page-12play44__button--register:hover {
      background-color: #ff6a00;
      transform: translateY(-2px);
    }

    .page-12play44__button--login {
      background-color: var(--accent-color);
      color: var(--text-light);
    }

    .page-12play44__button--login:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    /* Phong cách chung cho các phần */
    .page-12play44__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-12play44__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-12play44__description {
        font-size: 1.1em;
        color: #ccc;
        max-width: 800px;
        margin: 0 auto 30px auto;
    }

    /* Lưới sản phẩm */
    .page-12play44__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
      text-align: left;
    }

    .page-12play44__product-card {
      background-color: var(--bg-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center; /* Căn giữa nội dung theo chiều ngang */
      text-align: center; /* Căn giữa văn bản trong thẻ */
    }

    .page-12play44__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-12play44__product-image-wrapper {
      width: 100%;
      height: 200px; /* Chiều cao cố định cho hình ảnh */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
      box-sizing: border-box;
    }

    .page-12play44__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

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

    .page-12play44__product-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
      box-sizing: border-box;
    }

    .page-12play44__product-title {
      font-size: 1.8em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-12play44__product-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 20px;
    }

    /* Phần Khuyến mãi */
    .page-12play44__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-12play44__promo-card {
      background-color: var(--bg-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-12play44__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-12play44__promo-image-wrapper {
      width: 100%;
      height: 220px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
      box-sizing: border-box;
    }

    .page-12play44__promo-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

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

    .page-12play44__promo-content {
      padding: 20px;
    }

    .page-12play44__promo-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-12play44__promo-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
    }

    .page-12play44__promo-button {
      display: inline-block;
      padding: 10px 20px;
      background-color: var(--accent-color);
      color: var(--text-light);
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-12play44__promo-button:hover {
      background-color: #0056b3;
    }

    /* Phần Tin tức */
    .page-12play44__news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-12play44__news-card {
      background-color: var(--bg-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-12play44__news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-12play44__news-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #000;
      box-sizing: border-box;
    }

    .page-12play44__news-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

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

    .page-12play44__news-content {
      padding: 20px;
    }

    .page-12play44__news-date {
      font-size: 0.85em;
      color: #999;
      margin-bottom: 10px;
    }

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

    .page-12play44__news-description {
      font-size: 0.95em;
      color: #ccc;
    }

    /* Phần FAQ */
    .page-12play44__faq-container {
      max-width: 800px;
      margin: 40px auto;
      text-align: left;
    }

    .page-12play44__faq-item {
      background-color: var(--bg-light);
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-12play44__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #3a3a3a;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: var(--text-light);
      transition: background-color 0.3s ease;
    }

    .page-12play44__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-12play44__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      pointer-events: none; /* Ngăn h3 chặn sự kiện click trên div cha */
      flex-grow: 1;
    }

    .page-12play44__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click trên div cha */
      width: 20px;
      text-align: center;
    }

    .page-12play44__faq-item.active .page-12play44__faq-toggle {
      transform: rotate(45deg); /* Xoay '+' thành 'x' hoặc tương tự */
    }

    .page-12play44__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Padding ban đầu */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
      box-sizing: border-box;
    }

    .page-12play44__faq-item.active .page-12play44__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important; /* Padding cuối cùng */
      opacity: 1;
    }

    .page-12play44__faq-answer p {
      margin: 0 0 10px 0;
    }
    .page-12play44__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Thiết kế Responsive */
    @media (max-width: 768px) {
      .page-12play44 {
          padding-top: var(--header-offset, 80px); /* Điều chỉnh padding-top cho mobile nếu cần */
      }
      .page-12play44__hero-section {
        padding: 60px 15px;
        min-height: 350px;
      }

      .page-12play44__hero-title {
        font-size: 2.5em;
      }

      .page-12play44__hero-subtitle {
        font-size: 1.2em;
      }

      .page-12play44__hero-buttons {
          flex-direction: column;
          gap: 10px;
      }

      .page-12play44__floating-buttons {
        flex-direction: row; /* Giữ các nút cạnh nhau trên màn hình nhỏ nếu có đủ không gian */
        gap: 10px;
        bottom: 15px;
        max-width: calc(100% - 30px); /* Điều chỉnh cho padding */
      }

      .page-12play44__button {
        padding: 10px 15px;
        font-size: 1em;
      }

      .page-12play44__section {
        padding: 30px 15px;
      }

      .page-12play44__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-12play44__description {
          font-size: 1em;
          margin-bottom: 20px;
      }

      .page-12play44__product-grid,
      .page-12play44__promo-grid,
      .page-12play44__news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      /* Đảm bảo các thẻ danh sách và hình ảnh không tràn màn hình */
      .page-12play44__product-card,
      .page-12play44__promo-card,
      .page-12play44__news-card,
      .page-12play44__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-12play44__product-image-wrapper,
      .page-12play44__promo-image-wrapper,
      .page-12play44__news-image-wrapper {
        height: 180px; /* Điều chỉnh chiều cao hình ảnh cho di động */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-12play44__product-image,
      .page-12play44__promo-image,
      .page-12play44__news-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-12play44__product-title,
      .page-12play44__promo-title,
      .page-12play44__news-title {
        font-size: 1.3em;
      }

      .page-12play44__product-description,
      .page-12play44__promo-description,
      .page-12play44__news-description {
        font-size: 0.9em;
      }

      /* FAQ mobile specific adjustments */
      .page-12play44__faq-question,
      .page-12play44__faq-answer {
        padding-left: 15px;
        padding-right: 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-12play44__faq-item.active .page-12play44__faq-answer {
        padding: 20px 15px !important; /* Đảm bảo padding nhất quán cho trạng thái active */
      }
    }
  