
    :root {
      --shbet-black: #000000;
      --shbet-dark-gray: #1a1a1a;
      --shbet-light-gray: #cccccc;
      --shbet-white: #ffffff;
      --shbet-primary-color: #ffcc00; /* Vàng nổi bật */
      --shbet-secondary-color: #cc3300; /* Đỏ cam */
    }

    body {
      background-color: var(--shbet-black);
      color: var(--shbet-light-gray);
      font-family: 'Roboto', sans-serif;
      line-height: 1.6;
    }

    .page-shbet {
      background-color: var(--shbet-black);
      color: var(--shbet-light-gray);
      padding-bottom: 80px; /* Cho footer */
    }

    /* Fixed header spacing */
    .page-shbet__hero-section {
      padding-top: 120px; /* Desktop */
      position: relative;
      overflow: hidden;
      text-align: center;
      background-color: var(--shbet-dark-gray);
    }

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

    .page-shbet__hero-banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover;
    }
    .page-shbet__hero-content {
      position: absolute;
      bottom: 0; /* Đặt nội dung dưới banner */
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      padding: 20px;
      background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
      color: var(--shbet-white);
      text-align: center;
      box-sizing: border-box;
      z-index: 10;
    }

    .page-shbet__hero-title {
      font-size: 2.5em;
      color: var(--shbet-primary-color);
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
      font-weight: bold;
    }

    .page-shbet__hero-description {
      font-size: 1.2em;
      margin-bottom: 20px;
    }

    .page-shbet__button {
      display: inline-block;
      background-color: var(--shbet-primary-color);
      color: var(--shbet-black);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-shbet__button:hover {
      background-color: #ffd740;
      transform: translateY(-2px);
    }

    .page-shbet__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--shbet-secondary-color);
      color: var(--shbet-white);
      padding: 15px 25px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      animation: pulse 1.5s infinite;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background-color 0.3s ease;
    }

    .page-shbet__floating-button:hover {
      background-color: #e64d1a;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .page-shbet__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-shbet__section-title {
      color: var(--shbet-primary-color);
      font-size: 2.2em;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-shbet__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--shbet-secondary-color);
    }

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

    .page-shbet__card {
      background-color: var(--shbet-dark-gray);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      color: var(--shbet-light-gray);
    }

    .page-shbet__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-shbet__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Important for responsiveness */
    }

    .page-shbet__card-content {
      padding: 20px;
    }

    .page-shbet__card-title {
      font-size: 1.5em;
      color: var(--shbet-primary-color);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-shbet__card-title a {
      color: var(--shbet-primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-shbet__card-title a:hover {
      color: var(--shbet-white);
    }

    .page-shbet__card-description {
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .page-shbet__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 15px;
      margin-top: 30px;
      align-items: center;
      justify-items: center;
    }

    .page-shbet__provider-logo {
      width: 100%;
      height: 80px; /* Fixed height for consistency */
      object-fit: contain;
      padding: 10px;
      background-color: var(--shbet-dark-gray);
      border-radius: 8px;
      transition: transform 0.3s ease;
      max-width: 100%; /* Important for responsiveness */
    }

    .page-shbet__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-shbet__feature-list {
      list-style: none;
      padding: 0;
      text-align: left;
    }

    .page-shbet__feature-item {
      background-color: var(--shbet-dark-gray);
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-shbet__feature-icon {
      color: var(--shbet-primary-color);
      font-size: 1.8em;
      line-height: 1;
    }

    .page-shbet__feature-text h3 {
      color: var(--shbet-primary-color);
      margin-top: 0;
      margin-bottom: 5px;
      font-size: 1.3em;
    }

    .page-shbet__feature-text p {
      margin: 0;
      font-size: 0.95em;
    }

    .page-shbet__faq-container {
      margin-top: 40px;
      text-align: left;
    }

    .page-shbet__faq-item {
      background-color: var(--shbet-dark-gray);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-shbet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      border-bottom: 1px solid #333;
      transition: background-color 0.3s ease;
    }

    .page-shbet__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-shbet__faq-question h3 {
      color: var(--shbet-primary-color);
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-shbet__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--shbet-primary-color);
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-shbet__faq-item.active .page-shbet__faq-toggle {
      transform: rotate(45deg); /* Turns '+' into 'x' or '-' */
    }

    .page-shbet__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.3s ease;
    }

    .page-shbet__faq-item.active .page-shbet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }
    .page-shbet__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }
    .page-shbet__cta-section {
      background-color: var(--shbet-secondary-color);
      color: var(--shbet-white);
      padding: 50px 20px;
      text-align: center;
      margin-top: 50px;
    }

    .page-shbet__cta-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: var(--shbet-white);
    }

    .page-shbet__cta-text {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-shbet__cta-button {
      background-color: var(--shbet-primary-color);
      color: var(--shbet-black);
      padding: 15px 35px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      display: inline-block;
    }

    .page-shbet__cta-button:hover {
      background-color: #ffd740;
      transform: translateY(-3px);
    }
    .page-shbet__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }

    .page-shbet__image-wrapper img {
      width: 100%;
      height: auto;
      max-width: 100%; /* Ensure images are responsive */
      display: block;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-shbet__hero-title {
        font-size: 1.8em;
      }
      .page-shbet__hero-description {
        font-size: 1em;
      }
      .page-shbet__section-title {
        font-size: 1.8em;
      }
      .page-shbet__card {
        text-align: center;
      }
      .page-shbet__card-content {
        padding: 15px;
      }
      .page-shbet__card-title {
        font-size: 1.3em;
      }
      .page-shbet__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-shbet__feature-item {
        flex-direction: column;
        text-align: center;
      }
      .page-shbet__feature-icon {
        margin-bottom: 10px;
      }
      .page-shbet__faq-question {
        padding: 12px 15px;
      }
      .page-shbet__faq-question h3 {
        font-size: 1.1em;
      }
      .page-shbet__faq-answer {
        padding: 0 15px;
      }
      .page-shbet__faq-item.active .page-shbet__faq-answer {
        padding: 15px !important;
      }
      .page-shbet__cta-title {
        font-size: 2em;
      }
      .page-shbet__cta-text {
        font-size: 1em;
      }
      .page-shbet__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-shbet__image-wrapper img {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  