*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background:#111;
    color:#eee;
}

header{
    max-width:1280px;
    margin:auto;
    padding:30px 20px 12px;
}

h1{
    margin:0 0 6px;
}

#count{
    margin:0;
    color:#888;
}

#search{
    width:100%;
    max-width:520px;
    margin-top:18px;
    padding:12px 14px;
    border:1px solid #383838;
    border-radius:8px;
    background:#1a1a1a;
    color:white;
    font-size:15px;
}

main{
    max-width:1280px;
    margin:auto;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(210px,1fr));
    gap:16px;
}

.card{
    overflow:hidden;
    background:#191919;
    border:1px solid #2d2d2d;
    border-radius:10px;
    cursor:pointer;
    transition:.15s;
}

.card:hover{
    transform:translateY(-2px);
    border-color:#666;
}

.preview-image-wrap{
    height:145px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:radial-gradient(circle,#292929,#171717);
    color:#555;
    font-size:28px;
    font-weight:700;
}

.preview-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.card-info{
    padding:13px 14px 15px;
}

.id{
    color:#777;
    font-size:12px;
}

.name{
    margin-top:4px;
    font-size:16px;
    font-weight:600;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.size{
    margin-top:7px;
    color:#888;
    font-size:12px;
}
