
    /* CSS cho trang shbet800com */
    :root {
      --page-shbet800com-primary-color: #f7b32b; /* Màu vàng cam */
      --page-shbet800com-secondary-color: #333; /* Màu đen xám */
      --page-shbet800com-text-color: #333; /* Màu chữ chính */
      --page-shbet800com-background-light: #f5f5f5; /* Nền sáng */
      --page-shbet800com-background-dark: #222; /* Nền tối */
      --page-shbet800com-button-bg: #e60000; /* Màu đỏ cho nút */
      --page-shbet800com-button-text: #ffffff; /* Màu chữ nút */
    }

    .page-shbet800com {
      font-family: 'Arial', sans-serif;
      color: var(--page-shbet800com-text-color);
      line-height: 1.6;
      background-color: var(--page-shbet800com-background-light);
      padding-bottom: 80px; /* Để tránh nút nổi bị che */
    }

    .page-shbet800com-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-shbet800com-section {
      padding: 40px 0;
      text-align: center;
    }

    .page-shbet800com-section:nth-of-type(even) {
      background-color: #fff;
    }

    .page-shbet800com-section-dark {
      background-color: var(--page-shbet800com-background-dark);
      color: #fff;
    }

    .page-shbet800com-section-dark h2,
    .page-shbet800com-section-dark h3 {
      color: var(--page-shbet800com-primary-color);
    }

    .page-shbet800com h1 {
      font-size: 2.5em;
      color: var(--page-shbet800com-button-bg);
      margin-bottom: 20px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    }

    .page-shbet800com h2 {
      font-size: 2em;
      color: var(--page-shbet800com-secondary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-shbet800com h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--page-shbet800com-primary-color);
      border-radius: 5px;
    }

    .page-shbet800com h3 {
      font-size: 1.5em;
      color: var(--page-shbet800com-primary-color);
      margin-bottom: 15px;
    }

    .page-shbet800com p {
      margin-bottom: 20px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Hero Section */
    .page-shbet800com-hero {
      position: relative;
      background-color: var(--page-shbet800com-background-dark);
      color: #fff;
      padding-top: 160px; /* Safe zone for header */
      padding-bottom: 40px;
      min-height: 450px; /* Adjust based on banner size */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .page-shbet800com-hero-image-wrapper {
        width: 100%;
        max-width: 800px; /* Limit banner width */
        margin: 0 auto 20px auto;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .page-shbet800com-hero img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover; /* Ensure image covers the area without distortion */
        max-height: 200px; /* Constrain banner height */
    }

    .page-shbet800com-hero .page-shbet800com-button {
      margin-top: 30px;
      font-size: 1.3em;
      padding: 15px 30px;
      animation: pulse 2s infinite;
    }

    /* Floating Button */
    .page-shbet800com-floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: var(--page-shbet800com-button-bg);
      color: var(--page-shbet800com-button-text);
      border: none;
      border-radius: 50px;
      padding: 15px 25px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      z-index: 1000;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .page-shbet800com-floating-button:hover {
      background-color: #cc0000;
      transform: translateY(-3px);
    }
    
    .page-shbet800com-floating-button .icon {
        font-size: 1.2em;
        line-height: 1;
    }

    /* General Button Style */
    .page-shbet800com-button {
      display: inline-block;
      background-color: var(--page-shbet800com-button-bg);
      color: var(--page-shbet800com-button-text);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-shbet800com-button:hover {
      background-color: #cc0000;
    }

    /* Game Categories / Product Display */
    .page-shbet800com-game-grid,
    .page-shbet800com-provider-grid,
    .page-shbet800com-payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 20px;
      margin-top: 30px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-shbet800com-game-item,
    .page-shbet800com-provider-item,
    .page-shbet800com-payment-item {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      overflow: hidden;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .page-shbet800com-game-item:hover,
    .page-shbet800com-provider-item:hover,
    .page-shbet800com-payment-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .page-shbet800com-game-item img {
      width: 100%;
      max-width: 100px; /* Kích thước logo trò chơi */
      height: auto;
      margin-bottom: 10px;
      border-radius: 5px;
    }

    .page-shbet800com-provider-item img,
    .page-shbet800com-payment-item img {
      width: 100%;
      max-width: 120px; /* Kích thước logo nhà cung cấp */
      height: auto;
      margin-bottom: 10px;
      object-fit: contain;
    }

    .page-shbet800com-game-item a,
    .page-shbet800com-provider-item a,
    .page-shbet800com-payment-item a {
      text-decoration: none;
      color: var(--page-shbet800com-secondary-color);
      font-weight: bold;
      font-size: 1em;
      display: block;
    }

    .page-shbet800com-game-item a:hover,
    .page-shbet800com-provider-item a:hover,
    .page-shbet800com-payment-item a:hover {
      color: var(--page-shbet800com-primary-color);
    }

    /* Benefits List */
    .page-shbet800com-benefits-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
      text-align: left;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-shbet800com-benefits-list li {
      background-color: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .page-shbet800com-benefits-list li strong {
      color: var(--page-shbet800com-primary-color);
      font-size: 1.2em;
      display: block;
      margin-bottom: 5px;
    }

    .page-shbet800com-benefits-list li .icon {
      font-size: 1.8em;
      color: var(--page-shbet800com-button-bg);
      flex-shrink: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-shbet800com h1 {
        font-size: 2em;
      }

      .page-shbet800com h2 {
        font-size: 1.8em;
      }

      .page-shbet800com p {
        font-size: 1em;
      }

      .page-shbet800com-hero {
        padding-top: 140px; /* Adjust safe zone for smaller screens */
        min-height: 350px;
      }

      .page-shbet800com-hero .page-shbet800com-button {
        font-size: 1.1em;
        padding: 12px 25px;
      }

      .page-shbet800com-game-grid,
      .page-shbet800com-provider-grid,
      .page-shbet800com-payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }

      .page-shbet800com-benefits-list {
        grid-template-columns: 1fr;
      }

      .page-shbet800com-floating-button {
        padding: 12px 20px;
        font-size: 1em;
        bottom: 15px;
        right: 15px;
      }
    }

    @media (max-width: 480px) {
        .page-shbet800com-hero h1 {
            font-size: 1.8em;
        }
        .page-shbet800com-hero p {
            font-size: 0.95em;
        }
        .page-shbet800com-game-grid,
        .page-shbet800com-provider-grid,
        .page-shbet800com-payment-grid {
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 10px;
        }
        .page-shbet800com-game-item img,
        .page-shbet800com-provider-item img,
        .page-shbet800com-payment-item img {
            max-width: 80px;
        }
    }

    /* Animation for pulse effect */
    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

  