
    /* Tổng quan: Đảm bảo nền tối, chữ sáng để đạt độ tương phản */
    .page-shbet88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #f0f0f0; /* Màu chữ sáng */
      background-color: #1a1a2e; /* Nền tối */
      line-height: 1.6;
      padding-bottom: 80px; /* Để tránh nút đăng nhập nổi che mất nội dung */
      direction: ltr;
    }

    .page-shbet88 .page-shbet88__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
    }

    /* Banner Section */
    .page-shbet88__hero {
      text-align: center;
      padding: 2rem 0;
      background: linear-gradient(135deg, #2c073a, #0f041a); /* Nền gradient tối */
      position: relative;
      overflow: hidden;
    }

    .page-shbet88__hero-banner {
      width: 100%;
      max-width: 800px; /* Giới hạn chiều rộng banner */
      height: auto;
      border-radius: 10px;
      margin-bottom: 1.5rem;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .page-shbet88__hero h1 {
      font-size: 2.5rem;
      color: #ffcc00; /* Màu vàng nổi bật */
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-shbet88__hero p {
      font-size: 1.1rem;
      color: #e0e0e0;
      margin-bottom: 2rem;
    }

    .page-shbet88__hero-button {
      display: inline-block;
      background-color: #e63946; /* Nút đỏ hấp dẫn */
      color: #fff;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2rem;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-shbet88__hero-button:hover {
      background-color: #c92f3b;
      transform: translateY(-2px);
    }

    /* Floating Login Button */
    .page-shbet88__floating-login {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      animation: page-shbet88-pulse 2s infinite;
    }

    .page-shbet88__floating-login-button {
      background-color: #00b894; /* Màu xanh lá cây */
      color: #fff;
      padding: 1rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-shbet88__floating-login-button:hover {
      background-color: #009879;
      transform: scale(1.05);
    }

    .page-shbet88__floating-login-button span {
      animation: page-shbet88-bounce 1s infinite alternate;
    }

    @keyframes page-shbet88-pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    @keyframes page-shbet88-bounce {
      0% { transform: translateY(0); }
      100% { transform: translateY(-5px); }
    }

    /* Section Styling */
    .page-shbet88__section {
      padding: 3rem 0;
      background-color: #1a1a2e; /* Nền tối */
      border-bottom: 1px solid #333;
    }

    .page-shbet88__section:nth-of-type(even) {
      background-color: #22223b; /* Nền hơi khác cho các phần xen kẽ */
    }

    .page-shbet88__section-title {
      font-size: 2rem;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 2.5rem;
      position: relative;
    }

    .page-shbet88__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #e63946;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* About Section */
    .page-shbet88__about-text {
      font-size: 1.1rem;
      text-align: justify;
      color: #ccc;
    }
    .page-shbet88__about-text strong {
      color: #ffcc00;
    }

    /* Game Categories */
    .page-shbet88__game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
      text-align: center;
    }

    .page-shbet88__game-card {
      background-color: #2c073a;
      border-radius: 10px;
      padding: 1.5rem 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-shbet88__game-card img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 1rem;
    }

    .page-shbet88__game-card h3 {
      font-size: 1.2rem;
      color: #ffcc00;
      margin-bottom: 0.5rem;
    }

    .page-shbet88__game-card p {
      font-size: 0.9rem;
      color: #e0e0e0;
    }

    .page-shbet88__game-card a {
      color: #ffcc00;
      text-decoration: none;
      font-weight: bold;
    }
    .page-shbet88__game-card a:hover {
      text-decoration: underline;
    }

    /* Promotions */
    .page-shbet88__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .page-shbet88__promo-card {
      background-color: #2c073a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-shbet88__promo-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
    }

    .page-shbet88__promo-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-shbet88__promo-content {
      padding: 1.5rem;
    }

    .page-shbet88__promo-content h3 {
      font-size: 1.4rem;
      color: #ffcc00;
      margin-bottom: 1rem;
    }

    .page-shbet88__promo-content p {
      font-size: 1rem;
      color: #e0e0e0;
      margin-bottom: 1.5rem;
    }

    .page-shbet88__promo-button {
      display: inline-block;
      background-color: #e63946;
      color: #fff;
      padding: 0.7rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-shbet88__promo-button:hover {
      background-color: #c92f3b;
    }

    /* Why Choose Us */
    .page-shbet88__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .page-shbet88__feature-item {
      background-color: #22223b;
      padding: 1.5rem;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-shbet88__feature-item img {
      width: 60px;
      height: 60px;
      margin-bottom: 1rem;
    }

    .page-shbet88__feature-item h3 {
      color: #ffcc00;
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .page-shbet88__feature-item p {
      color: #ccc;
      font-size: 0.95rem;
    }

    /* FAQ */
    .page-shbet88__faq-item {
      margin-bottom: 1.5rem;
      background-color: #2c073a;
      border-radius: 8px;
      padding: 1.2rem 1.5rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-shbet88__faq-question {
      font-size: 1.1rem;
      color: #ffcc00;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
    }

    .page-shbet88__faq-question span {
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }

    .page-shbet88__faq-answer {
      font-size: 1rem;
      color: #e0e0e0;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #3a3a5e;
      display: none; /* Hidden by default */
    }

    .page-shbet88__faq-item.page-shbet88--active .page-shbet88__faq-answer {
      display: block;
    }

    .page-shbet88__faq-item.page-shbet88--active .page-shbet88__faq-question span {
      transform: rotate(180deg);
    }

    /* Download App */
    .page-shbet88__app-download {
      text-align: center;
      padding: 3rem 0;
      background-color: #0f041a;
    }

    .page-shbet88__app-download h2 {
      color: #ffcc00;
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }

    .page-shbet88__app-download p {
      color: #e0e0e0;
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    .page-shbet88__app-buttons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .page-shbet88__app-button {
      display: inline-flex;
      align-items: center;
      background-color: #e63946;
      color: #fff;
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-shbet88__app-button:hover {
      background-color: #c92f3b;
      transform: translateY(-2px);
    }

    .page-shbet88__app-button img {
      width: 24px;
      height: 24px;
      margin-right: 0.8rem;
    }

    /* Social Links */
    .page-shbet88__social-icon img {
      transition: transform 0.3s ease;
    }
    .page-shbet88__social-icon:hover img {
      transform: scale(1.1);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-shbet88__hero h1 {
        font-size: 2rem;
      }
      .page-shbet88__section-title {
        font-size: 1.8rem;
      }
      .page-shbet88__game-grid,
      .page-shbet88__promo-grid,
      .page-shbet88__feature-list {
        grid-template-columns: 1fr;
      }
      .page-shbet88__floating-login {
        bottom: 15px;
        right: 15px;
      }
      .page-shbet88__floating-login-button {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
      }
      .page-shbet88__app-buttons {
        flex-direction: column;
        align-items: center;
      }
    }

    @media (max-width: 480px) {
      .page-shbet88__hero h1 {
        font-size: 1.8rem;
      }
      .page-shbet88__hero p {
        font-size: 1rem;
      }
      .page-shbet88__hero-button {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
      }
      .page-shbet88__section-title {
        font-size: 1.5rem;
      }
      .page-shbet88__game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-shbet88__game-card {
        padding: 1rem 0.5rem;
      }
      .page-shbet88__game-card h3 {
        font-size: 1.1rem;
      }
      .page-shbet88__game-card p {
        font-size: 0.85rem;
      }
    }
  