* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    color: #333;
    font-size: 2em;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 1.5rem;
}

.plugin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.plugin-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plugin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.plugin-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.plugin-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem 0.5rem;
}

.plugin-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.plugin-content {
    padding: 1rem 1.2rem 1.2rem;
}

h2 {
    color: #007BFF;
    font-size: 1.2em;
    margin-bottom: 0.5rem;
}

.description {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
    height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}

footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    color: #666;
    font-size: 0.9em;
}

footer a {
    color: #007BFF;
    text-decoration: none;
    margin: 0 0.5rem;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }

    .plugin-grid {
        grid-template-columns: 1fr;
    }

    .description {
        height: auto;
    }
}