    body {
      margin: 0;
      background: linear-gradient(135deg, #1e3c72, #2a5298);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(100px, 100px));
      justify-content: center;
      gap: 17px;
      padding-top: 20px;
    }

    .game-card {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
    }

    .game-card:hover {
      transform: scale(1.05);
    }

    .game-card img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      border-radius: 16px;
      display: block;
    }

    footer {
      text-align: center;
      padding: 20px;
      background: rgba(0, 0, 0, 0.7);
      color: #ccc;
      font-size: 0.9em;
      margin-top: 20px;
    }

    .poki-widget {
      position: fixed;
      top: 22px;
      left: 15px;
      background: white;
      width: 100px;
      height: 99px;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      z-index: 1000;
      margin-left: 15px;
      overflow: hidden;
    }

    .logo-part img {
      width: 180px;
      height: auto;
      margin-bottom: 5px;
      margin-left: 10px;
    }

    .horizontal-line {
      width: 80%;
      height: 1px;
      background: #ccc;
      margin: 0 auto 4px auto;
    }

    .icon-part {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      gap: 10px;
      margin-top: 0;
      margin-bottom: 8px;
    }

    .icon-box {
      display: flex;
      justify-content: center;
      align-items: center;
      flex: 1;
    }

    .icon-box i {
      font-size: 26px;
      color: #4facfe;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .icon-box i:hover {
      transform: scale(1.2);
    }

    .vertical-line {
      width: 1px;
      height: 30px;
      background: #ccc;
    }

    /* Search Overlay */
    .search-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(135deg, #1e3c72, #2a5298);
      z-index: 2000;
    }

    .search-bar {
      display: flex;
      align-items: center;
      padding: 10px 15px;
      background: white;
      border-radius: 12px;
      margin: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .back-btn {
      background: white;
      color: #00bfff;
      font-size: 20px;
      padding: 6px;
      border-radius: 50%;
      cursor: pointer;
      margin-right: 10px;
    }

.search-logo {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  object-fit: contain;
  display: flex;
  align-items: center;
}
    .vertical-line-bar {
      width: 1px;
      height: 20px;
      background: #ccc;
      margin: 0 10px;
    }

    .search-input {
      flex-grow: 1;
      border: none;
      outline: none;
      font-size: 16px;
      color: #333;
    }

    .search-icon {
      color: #4facfe;
      font-size: 20px;
      margin-left: 10px;
    }
/*
 @media screen and (max-width: 767px) {
  .search-bar {
    flex-wrap: nowrap;
    padding: 10px 10px;
  }*/

.search-logo {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  object-fit: contain;
  display: flex;
  align-items: center;
}

  .vertical-line-bar {
    display: block;
    margin: 0 8px;
    background: #ccc;
    width: 1px;
    height: 25px;
  }

  .search-input {
    flex-grow: 1;
    min-width: 0;
  }

  .search-icon {
    margin-left: 10px;
    font-size: 20px;
    color: #4facfe;
  }
  
  
  
  /* Horizontal scroll containers for search overlay sections */
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 8px 4px 16px 4px;
  -webkit-overflow-scrolling: touch;
}
.scroll-container::-webkit-scrollbar { height: 8px; }
.scroll-container::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25);
border-radius: 4px; }

.scroll-container .game-card-inline { flex: 0 0 auto; 
width: 110px; 
text-align: center; }

.scroll-container img { width: 110px; 
height: 110px; 
border-radius: 14px; 
object-fit: cover; display: block;
 
  
}
h3 { color: #fff; }