body {
    margin: 0;
    font-family: sans-serif;
    background: #1c1c1c;
    color: white;
}

header, footer {
    background: #2b2b2b;
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 1.5em;
}

nav a {
    margin: 0 1em;
    color: #ccc;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 4em 2em;
}

.btn {
    background: #36a336;
    padding: 0.5em 1em;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin: 0.5em 0;
}

.btn.active {
    background: #3cc43c;
}

.plugin-list, .reviews {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
}

.plugin, .review {
    background: #2a2a2a;
    padding: 1em;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

.plugin img {
    float: left;
    width: 48px;
    height: 48px;
    margin-right: 1em;
}

.features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 1em;
    justify-content: center;
}

.features li {
    background: #333;
    padding: 0.5em 1em;
    border-radius: 6px;
}

.filter, .pagination {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-bottom: 1em;
}

@media (max-width: 600px) {
    .plugin, .review {
        flex-direction: column;
        align-items: flex-start;
    }

    .plugin img {
        float: none;
        margin-bottom: 0.5em;
    }
}
