
    /* CSS cho trang ee88bet */
    .page-ee88bet {
      font-family: 'Arial', sans-serif;
      background-color: #0d1b2a; /* Nền tối */
      color: #e0e0e0; /* Chữ sáng */
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng cách cho nút nổi */
    }

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

    /* Tiêu đề chính */
    .page-ee88bet-hero {
      text-align: center;
      padding: 40px 15px 20px;
      background: linear-gradient(135deg, #1a2a3a, #0d1b2a);
      border-bottom: 2px solid #ffd700;
    }

    .page-ee88bet-hero-banner {
      width: 100%;
      max-width: 800px;
      height: auto;
      margin: 0 auto 20px;
      display: block;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-ee88bet-hero h1 {
      font-size: 2.2em;
      color: #ffd700; /* Màu vàng nổi bật */
      margin-bottom: 15px;
      text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
    }

    .page-ee88bet-hero p {
      font-size: 1.1em;
      margin-bottom: 25px;
      color: #c0c0c0;
    }

    /* Nút CTA chung */
    .page-ee88bet-button {
      display: inline-block;
      background-color: #008000; /* Xanh lá cây */
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 128, 0, 0.4);
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

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

    /* Nút đăng nhập/đăng ký nổi */
    .page-ee88bet-floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ff4500; /* Màu cam đỏ hấp dẫn */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      z-index: 1000;
      box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
      transition: background-color 0.3s ease, transform 0.2s ease;
      animation: page-ee88bet-pulse 2s infinite;
      white-space: nowrap; /* Ngăn ngắt dòng */
    }

    .page-ee88bet-floating-button:hover {
      background-color: #cc3700;
      transform: translateX(-50%) translateY(-3px);
    }

    @keyframes page-ee88bet-pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.03); }
      100% { transform: translateX(-50%) scale(1); }
    }

    /* Các phần nội dung */
    .page-ee88bet-section {
      padding: 40px 0;
      text-align: center;
    }

    .page-ee88bet-section h2 {
      font-size: 2em;
      color: #ffd700;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-ee88bet-section h2::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ffd700;
      border-radius: 2px;
    }

    .page-ee88bet-text-block {
      max-width: 800px;
      margin: 0 auto 30px;
      text-align: left;
      padding: 0 15px;
    }

    .page-ee88bet-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 30px;
      padding: 0 15px;
    }

    .page-ee88bet-card {
      background-color: #1a2a3a;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      min-height: 180px; /* Đảm bảo chiều cao tối thiểu cho card */
    }

    .page-ee88bet-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    }

    .page-ee88bet-card img {
      max-width: 80px;
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    .page-ee88bet-card h3 {
      font-size: 1.2em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-ee88bet-card p {
      font-size: 0.9em;
      color: #c0c0c0;
    }

    .page-ee88bet-card a {
      color: #87ceeb; /* Màu xanh da trời nhạt */
      text-decoration: none;
      font-weight: bold;
      margin-top: 10px;
      display: block;
    }

    .page-ee88bet-card a:hover {
      text-decoration: underline;
    }

    /* Danh sách lợi ích / tính năng */
    .page-ee88bet-features-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 800px;
      text-align: left;
    }

    .page-ee88bet-features-list li {
      background-color: #1a2a3a;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-ee88bet-features-list li::before {
      content: '✅';
      margin-right: 10px;
      font-size: 1.2em;
    }

    /* Provider Logos */
    .page-ee88bet-provider-logo {
      max-width: 100px;
      height: auto;
      filter: grayscale(80%) brightness(150%); /* Làm mờ và sáng logo */
      transition: filter 0.3s ease;
    }

    .page-ee88bet-provider-logo:hover {
      filter: grayscale(0%) brightness(100%); /* Hiện màu khi hover */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-ee88bet-hero h1 {
        font-size: 1.8em;
      }
      .page-ee88bet-hero p {
        font-size: 1em;
      }
      .page-ee88bet-section h2 {
        font-size: 1.6em;
      }
      .page-ee88bet-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }
      .page-ee88bet-card {
        min-height: 150px;
        padding: 15px;
      }
      .page-ee88bet-card img {
        max-width: 60px;
      }
      .page-ee88bet-floating-button {
        width: calc(100% - 40px);
        font-size: 1em;
        padding: 12px 20px;
        bottom: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-ee88bet-hero h1 {
        font-size: 1.5em;
      }
      .page-ee88bet-section h2 {
        font-size: 1.4em;
      }
      .page-ee88bet-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
      .page-ee88bet-card {
        min-height: 130px;
        padding: 10px;
      }
      .page-ee88bet-card h3 {
        font-size: 1em;
      }
      .page-ee88bet-card img {
        max-width: 50px;
      }
    }
  