*{box-sizing:border-box;margin:0;padding:0}

body{
    background:#0b0b0b;
    color:#eee;
    font-family:system-ui, -apple-system, sans-serif;
}

.top{
    padding:15px;
    border-bottom:1px solid #222;
    text-align:center;
}

.top h1{
    font-size:20px;
    font-weight:600;
}

.container{
    padding:16px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
    gap:16px;
}

.card{
    background:#121212;
    border-radius:10px;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    transition:transform .2s, box-shadow .2s;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(0,0,0,.4);
}

.thumb{
    aspect-ratio:3/4;
    background:#000;
}

.thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.info{
    padding:10px;
}

.info h3{
    font-size:14px;
    font-weight:600;
    margin-bottom:4px;
}

.info span{
    font-size:11px;
    color:#aaa;
}
.top {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(135deg, #0f0f0f, #1b1b1b);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-inner {
    max-width: 1200px;
    margin: auto;
    padding: 18px 16px;
    text-align: center;
}

.top h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    color: #f5f5f5;
}

.subtitle {
    margin-top: 6px;
    font-size: 13px;
    color: #b3b3b3;
    font-weight: 400;
}


