
    :root {
      --page-188bet-primary-color: #e44d26; /* Cam đỏ */
      --page-188bet-secondary-color: #f7931e; /* Cam */
      --page-188bet-accent-color: #4CAF50; /* Xanh lá cây */
      --page-188bet-text-color: #333;
      --page-188bet-text-light: #f5f5f5;
      --page-188bet-background-color: #f0f2f5;
      --page-188bet-card-background: #ffffff;
      --page-188bet-border-color: #ddd;
    }

    .page-188bet {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-188bet-text-color);
      background-color: var(--page-188bet-background-color);
      padding: 0;
      margin: 0;
    }

    .page-188bet-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
    }

    /* Hero Section */
    .page-188bet-hero {
      text-align: center;
      padding: 2rem 0;
      background-color: var(--page-188bet-primary-color);
      color: var(--page-188bet-text-light);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-188bet-hero-image-wrapper {
        width: 100%;
        max-width: 100%; /* Ensure it doesn't overflow */
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }

    .page-188bet-hero-image {
        width: 100%; /* Full width within its wrapper */
        height: auto; /* Maintain aspect ratio */
        display: block; /* Remove extra space below image */
        max-height: 400px; /* Limit height for desktop */
        object-fit: contain; /* Ensure image is fully visible */
    }

    @media (min-width: 768px) {
        .page-188bet-hero-image {
            max-height: 500px;
        }
    }

    .page-188bet-hero h1 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: var(--page-188bet-text-light);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-188bet-hero p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-188bet-text-light);
    }

    .page-188bet-btn {
      display: inline-block;
      background-color: var(--page-188bet-accent-color);
      color: var(--page-188bet-text-light);
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

    .page-188bet-btn:hover {
      background-color: #45a049;
    }

    /* Floating Login Button */
    .page-188bet-floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: var(--page-188bet-primary-color);
      color: var(--page-188bet-text-light);
      padding: 1rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      animation: page-188bet-pulse 2s infinite;
      text-align: center;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .page-188bet-floating-btn:hover {
      background-color: #c73c1c;
    }

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

    /* Sections */
    .page-188bet-section {
      padding: 2rem 0;
      background-color: var(--page-188bet-card-background);
      margin-bottom: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .page-188bet-section h2 {
      text-align: center;
      font-size: 1.8rem;
      margin-bottom: 2rem;
      color: var(--page-188bet-primary-color);
    }

    .page-188bet-section h3 {
      font-size: 1.4rem;
      margin-top: 1.5rem;
      margin-bottom: 1rem;
      color: var(--page-188bet-secondary-color);
    }

    .page-188bet-text-content p {
      margin-bottom: 1rem;
      padding: 0 1rem;
      text-align: justify;
    }

    .page-188bet-text-content ul {
      list-style-type: disc;
      margin-left: 2rem;
      margin-bottom: 1rem;
      padding: 0 1rem;
    }

    .page-188bet-text-content li {
      margin-bottom: 0.5rem;
    }

    /* Game Categories / Product Display */
    .page-188bet-game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
      padding: 0 1rem;
    }

    .page-188bet-game-card {
      background-color: var(--page-188bet-background-color);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 180px; /* Ensure cards have a minimum height */
    }

    .page-188bet-game-card:hover {
      transform: translateY(-5px);
    }

    .page-188bet-game-card img {
      width: 100%;
      height: 100px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
    }

    .page-188bet-game-card h3 {
      font-size: 1.1rem;
      margin: 0.8rem 0.5rem;
      color: var(--page-188bet-primary-color);
      flex-grow: 1;
    }

    .page-188bet-game-card a {
      text-decoration: none;
      color: var(--page-188bet-primary-color);
      display: block;
      padding: 0.5rem;
      background-color: var(--page-188bet-card-background);
      font-weight: bold;
      border-top: 1px solid var(--page-188bet-border-color);
    }

    .page-188bet-game-card a:hover {
      color: var(--page-188bet-accent-color);
    }

    /* Game Providers & Payment Methods */
    .page-188bet-logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 1rem;
      padding: 0 1rem;
      justify-items: center;
    }

    .page-188bet-logo-item {
      background-color: var(--page-188bet-card-background);
      border-radius: 8px;
      padding: 0.5rem;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 60px;
      width: 100%;
      max-width: 120px;
    }

    .page-188bet-logo-item img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-188bet-container {
        padding: 2rem;
      }

      .page-188bet-hero {
        padding: 4rem 0;
      }

      .page-188bet-hero h1 {
        font-size: 3rem;
      }

      .page-188bet-section {
        padding: 3rem 0;
      }

      .page-188bet-section h2 {
        font-size: 2.5rem;
      }

      .page-188bet-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      }

      .page-188bet-logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      }
    }
  