.plugin-bar {
  display: flex;
  justify-content: center; /*ex: space-between;*/
  align-items: center;
  background: none; /*ex: linear-gradient(135deg, #1f1f2e, #2c2c3e); */
  border-radius: 2px; /*ex: 50px*/
  padding: 15px 20px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5); /*ex: 0 4px 20px rgba(0, 0, 0, 0.5); */
  color: #ffffff;
  gap: 10px;
  overflow: hidden;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
}

.plugin-text {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Courier New', Courier, monospace;
  color: #ffffff;
  flex: 1 1 auto;
  padding-right: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulseText 2s ease-in-out infinite;
}

.plugin-text::before {
  content: "👉";
  animation: pointerBounce 1.4s infinite ease-in-out;
}

@keyframes pulseText {
  0%, 100% {
    text-shadow: 0 0 10px #00e0ff;
  }
  50% {
    text-shadow: 0 0 20px #00e0ff;
  }
}

@keyframes pointerBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.explore-btn {
  background: linear-gradient(135deg, #00e0ff, #0075ff);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  white-space: nowrap;
  box-shadow: 0 0 10px rgba(0, 224, 255, 0.2);
}

.explore-btn:hover {
  background: linear-gradient(135deg, #0075ff, #00e0ff);
  transform: scale(1.01);
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.5);
}

.explore-btn::after {
  content: "👇";
  font-size: 1.2rem;
  color: #666;
  transition: transform 0.3s ease;
}

.explore-btn:hover::after {
  transform: translateY(5px);
}

@media (max-width: 580px) {
  .plugin-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    border-radius: 20px;
    padding: 20px 15px;
  }
}
