 html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow: hidden;
      background: linear-gradient(to right, #bbb, #eee, #bbb);
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      position: relative;
    }

    h6 {
      font-size: 14px;
      font-family: monospace;
      position: absolute;
      font-weight: 400;
      left: 20px;
      right: 20px;
      color: #555;
      letter-spacing: 0.2px;
    }

    .shine {
      position: absolute;
      top: 0;
      width: 80px;
      height: 100%;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
      pointer-events: none;
      mix-blend-mode: screen;
      transition: left 0.05s linear;
      z-index: 1;
    }

    .container {
      position: absolute;
      top: 64px;
      left: 20px;
      right: 20px;
      bottom: 20px;
      display: flex;
      flex-wrap: wrap;
      align-content: flex-start;
      gap: 12px;
      overflow-y: auto;
      z-index: 2;
    }

    .word {
      font-size: 40px;
      color: #555;
      background-color: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border-radius: 12px;
      padding: 6px 14px;
      transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, box-shadow 0.3s ease;
      cursor: default;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      opacity: 0;
      transform: translateY(-30px);
      animation: dropIn 0.6s forwards;
    }

    .word:hover {
      transform: scale(1.4);
      background: linear-gradient(90deg, #fffcb2 0%, #ffe600 50%, #fffcb2 100%);
      background-size: 200% auto;
      animation: scan 1s linear infinite;
      color: #111;
      box-shadow: 0 6px 30px rgba(255, 255, 100, 0.5);
      transition: transform 0.4s ease, background-position 0.4s ease;
    }


    @keyframes dropIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    #search {
      position: fixed;
      top: 20px;
      left: 20px;
      padding: 8px;
      font-size: 16px;
      z-index: 10;
      border: none;
      border-radius: 12px;
    }
      
   





