@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');


#content {
  font-family: 'Poppins', sans-serif;
  background: #fafcff;
  color: #333;
  min-height: calc(100vh - 185px);
  padding-top: 120px;
  padding-bottom: 65px;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
}

#plugins {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.plugin {
  background: #fff;
  user-select: none;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  overflow: hidden;
}

.plugin {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plugin:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.plugin img {
  width: 90px;
  margin-bottom: 15px;
  border-radius: 15px;
}

.plugin p {
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word; 
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.tag {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.9rem;
  margin-top: auto;
  color: #555;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f5f7fb;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb {
    background: #66aaff; 
    border-radius: 2px;
    transition: background 0.3s ease;
} 

::-webkit-scrollbar-thumb:hover {
    background: #66aaff;
}

.download-btn {
    display: inline-block;
    width: 234px; 
    text-align: center;
    padding: 5px 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: #222; 
    text-decoration: none;
    border-radius: 12px;
    background-color: #f5f5f5; 
    transition: all 0.2s ease;
    margin-top: auto; 
    margin-bottom: 5px;
}

.download-btn:hover {
    background-color: #e0e0e0; 
}

.download-btn:active {
    background-color: #c0c0c0; 
}

.plugin-bottom {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

