body {
    margin: 0;
    font-family: "MS PGothic", "Osaka", sans-serif;
    background-color: #fefefe;
    color: #222;
    font-size: 14px;
    padding: 0 20px;
}

header {
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #ccc;
    padding: 10px 0;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 15%;
    margin-right: 15px;
    border: 1px solid #ccc;
}

.header-text h1 {
    margin: 0;
    font-size: 20px;
}

.header-text p {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #555;
}

main {
    padding: 20px 0;
}

.anime {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 4px;
    flex-wrap: wrap;
}

.cover {
    width: 70px;
    height: auto;
    margin-right: 15px;
    border: 1px solid #ccc;
}

.anime-info {
    flex: 1;
}

.anime-info .title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 4px;
}

.anime-info .progress {
    font-size: 13px;
    color: #444;
}

footer {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: #888;
}

@media (max-width: 600px) {
    .anime {
        flex-direction: column;
        align-items: flex-start;
    }

    .cover {
        margin-bottom: 10px;
    }
}
