body {
    margin: 0;
    background: #0e1116;
    font-family: Arial;
    color: white;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
    padding: 20px;
}

.card {
    background: #171b22;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-3px);
}

.top {
    padding: 10px;
    border-bottom: 1px solid #222;
}

.title {
    font-weight: bold;
    font-size: 14px;
}

.sub {
    font-size: 12px;
    color: #8aa0ff;
}

.image-box {
    position: relative;
    height: 160px;
    background: #0b0d12;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-img {
    max-height: 140px;
    max-width: 100%;
}

.icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(0,0,0,0.5);
    border-radius: 6px;
    padding: 4px;
}

.info {
    padding: 10px;
    font-size: 13px;
    color: #ccc;
}