
    /* Tổng quan */
    .page-shbet {
      font-family: 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f9f9f9;
      overflow-x: hidden;
    }

    /* Fixed Header Spacing */
    .page-shbet__hero-section {
      padding-top: 60px; /* Adjust for fixed header */
    }
    @media (min-width: 769px) {
        .page-shbet__hero-section {
            padding-top: 80px; /* Adjust for fixed header on desktop */
        }
    }

    /* Tiêu đề chung */
    .page-shbet__section-title {
      font-size: 2.2em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 30px;
      padding-top: 20px;
      font-weight: 700;
    }
    .page-shbet__section-subtitle {
      font-size: 1.5em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 20px;
      font-weight: 600;
    }

    /* Nút CTA chung */
    .page-shbet__cta-button {
      display: inline-block;
      background-color: #ff4500;
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      text-align: center;
      border: none;
      cursor: pointer;
    }
    .page-shbet__cta-button:hover {
      background-color: #e03e00;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-shbet__hero-section {
      position: relative;
      width: 100%;
      height: 450px; /* Adjusted height for banner */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      background-color: #333; /* Fallback */
      margin-bottom: 30px;
    }
    .page-shbet__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }
    .page-shbet__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 2;
    }
    .page-shbet__hero-content {
      position: relative;
      z-index: 3;
      max-width: 90%;
    }
    .page-shbet__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: 800;
      line-height: 1.2;
    }
    .page-shbet__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    @media (max-width: 768px) {
      .page-shbet__hero-section {
        height: 350px;
      }
      .page-shbet__hero-title {
        font-size: 2em;
      }
      .page-shbet__hero-description {
        font-size: 1em;
      }
    }

    /* Giới thiệu SHBET */
    .page-shbet__intro-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto 40px auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    .page-shbet__intro-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
    }
    .page-shbet__intro-text {
      flex: 1;
      min-width: 300px;
    }
    .page-shbet__intro-text h2 {
      font-size: 2em;
      color: #0056b3;
      margin-bottom: 15px;
    }
    .page-shbet__intro-text p {
      margin-bottom: 15px;
      color: #555;
    }
    .page-shbet__intro-image-wrapper {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .page-shbet__intro-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      min-width: 200px; /* Minimum size requirement */
      min-height: 200px; /* Minimum size requirement */
    }
    @media (max-width: 768px) {
      .page-shbet__intro-text h2 {
        font-size: 1.8em;
      }
      .page-shbet__intro-content {
        flex-direction: column;
      }
    }

    /* Danh mục trò chơi */
    .page-shbet__games-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto 40px auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    .page-shbet__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }
    .page-shbet__game-card {
      background-color: #f0f8ff;
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
    }
    .page-shbet__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    .page-shbet__game-card-image {
      width: 100%;
      max-width: 300px; /* Ensure image fits well */
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      min-width: 200px; /* Minimum size requirement */
      min-height: 200px; /* Minimum size requirement */
      object-fit: cover;
    }
    .page-shbet__game-card-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .page-shbet__game-card-description {
      font-size: 0.95em;
      color: #666;
      flex-grow: 1; /* Allow description to take available space */
      margin-bottom: 15px;
    }
    .page-shbet__game-card-button {
      padding: 10px 20px;
      background-color: #007bff;
      color: #fff;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .page-shbet__game-card-button:hover {
      background-color: #0056b3;
    }
    @media (max-width: 768px) {
      .page-shbet__game-grid {
        grid-template-columns: 1fr;
      }
      .page-shbet__game-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-shbet__game-card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-shbet__game-card-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    /* Tải ứng dụng */
    .page-shbet__app-download-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto 40px auto;
      background-color: #e6f7ff;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    .page-shbet__app-download-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 30px;
    }
    .page-shbet__app-info {
      flex: 1;
      min-width: 300px;
      text-align: left;
    }
    .page-shbet__app-info h3 {
      font-size: 1.8em;
      color: #0056b3;
      margin-bottom: 15px;
    }
    .page-shbet__app-info p {
      margin-bottom: 20px;
      color: #555;
    }
    .page-shbet__download-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    .page-shbet__download-button {
      display: flex;
      align-items: center;
      gap: 10px;
      background-color: #007bff;
      color: #fff;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .page-shbet__download-button:hover {
      background-color: #0056b3;
    }
    .page-shbet__qr-code-wrapper {
      flex: 1;
      min-width: 250px;
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    .page-shbet__qr-code {
      width: 200px;
      height: 200px;
      margin-bottom: 15px;
      min-width: 200px; /* Minimum size requirement */
      min-height: 200px; /* Minimum size requirement */
    }
    .page-shbet__qr-code-text {
      font-weight: 600;
      color: #333;
    }
    @media (max-width: 768px) {
      .page-shbet__app-info {
        text-align: center;
      }
      .page-shbet__download-buttons {
        justify-content: center;
      }
    }

    /* Khuyến mãi */
    .page-shbet__promotions-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto 40px auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    .page-shbet__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }
    .page-shbet__promo-card {
      background-color: #fff0e6;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }
    .page-shbet__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    .page-shbet__promo-card-title {
      font-size: 1.5em;
      color: #ff4500;
      margin-bottom: 15px;
      font-weight: 700;
    }
    .page-shbet__promo-card-description {
      font-size: 1em;
      color: #666;
      flex-grow: 1;
      margin-bottom: 20px;
    }
    .page-shbet__promo-card-button {
      padding: 10px 20px;
      background-color: #ff4500;
      color: #fff;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      align-self: flex-start;
    }
    .page-shbet__promo-card-button:hover {
      background-color: #e03e00;
    }
    @media (max-width: 768px) {
      .page-shbet__promo-grid {
        grid-template-columns: 1fr;
      }
      .page-shbet__promo-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-shbet__promo-card-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    /* Hướng dẫn đăng ký/đăng nhập */
    .page-shbet__guide-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto 40px auto;
      background-color: #f9f9f9;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    .page-shbet__guide-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .page-shbet__guide-step-item {
      flex: 1;
      min-width: 280px;
      max-width: 350px;
      background-color: #fff;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }
    .page-shbet__guide-step-icon {
      width: 80px; /* Minimum size requirement */
      height: 80px; /* Minimum size requirement */
      margin-bottom: 15px;
      object-fit: contain;
    }
    .page-shbet__guide-step-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .page-shbet__guide-step-description {
      font-size: 0.95em;
      color: #666;
    }
    @media (max-width: 768px) {
      .page-shbet__guide-step-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-shbet__guide-step-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    /* FAQ Section */
    .page-shbet__faq-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto 40px auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    .page-shbet__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box;
    }
    .page-shbet__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }
    .page-shbet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #f5f5f5;
      cursor: pointer;
      user-select: none;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }
    .page-shbet__faq-question:hover {
      background-color: #e0e0e0;
    }
    .page-shbet__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      font-weight: 600;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }
    .page-shbet__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #0056b3;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }
    .page-shbet__faq-item.active .page-shbet__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }
    .page-shbet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fdfdfd;
      border-radius: 0 0 5px 5px;
      color: #555;
    }
    .page-shbet__faq-item.active .page-shbet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }
    .page-shbet__faq-answer p {
      margin-bottom: 10px;
    }
    .page-shbet__faq-answer p:last-child {
      margin-bottom: 0;
    }
    @media (max-width: 768px) {
      .page-shbet__faq-question h3 {
        font-size: 1em;
      }
      .page-shbet__faq-answer {
        padding: 0 10px;
      }
      .page-shbet__faq-item.active .page-shbet__faq-answer {
        padding: 15px 10px !important;
      }
    }

    /* Floating Promotion Button */
    .page-shbet__floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ff4500;
      color: #fff;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
      display: none; /* Hidden by default, show on mobile */
    }
    .page-shbet__floating-button:hover {
      background-color: #e03e00;
      transform: translateX(-50%) translateY(-3px);
    }
    @media (max-width: 768px) {
      .page-shbet__floating-button {
        display: block; /* Show on mobile */
        width: calc(100% - 40px);
        max-width: 350px;
        box-sizing: border-box;
        text-align: center;
        font-size: 1em;
      }
    }
  