body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0f0f12;
    color: #fff;
}

.header {
    position: sticky;
    top: 0;
    background: #15151c;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.title {
    font-size: 16px;
    opacity: 0.8;
}

.total {
    font-size: 22px;
    font-weight: 600;
}

.feed {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto;
}

.card {
    background: #1a1a22;
    border-radius: 14px;
    display: flex;
    gap: 12px;
    padding: 10px 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.photo {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.info {
    flex: 1;
}

.name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.2;
}

.meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    opacity: 0.9;
}

.time {
    font-size: 11px;
    opacity: 0.5;
    margin-top: 4px;
}
