body {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
    background: #f5f5f5;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

nav a {
    margin-right: 1rem;
    text-decoration: none;
    color: #007bff;
}

nav a:hover {
    text-decoration: underline;
}

.skins-list {
    list-style: none;
    padding: 0;
}

.skin-item {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.author-info img.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author-info h2 {
    margin: 0;
    font-size: 1.5rem;
}

.skin-description {
    margin-bottom: 0.5rem;
    font-style: italic;
}

.skin-image img {
    max-width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.pagination {
    margin-top: 1rem;
}
.pagination a {
    margin: 0 0.5rem;
    text-decoration: none;
    color: #007bff;
}
.pagination a:hover {
    text-decoration: underline;
}
